summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom William Payne <twp@gentoo.org>2003-04-23 16:06:28 +0000
committerTom William Payne <twp@gentoo.org>2003-04-23 16:06:28 +0000
commit6bf1906fbe562a6f3ca2e60fa970fd8093750b0e (patch)
tree8e5bdca18f35e355b12c9e661f88ca65904456ff /media-fonts
parentMissed by repoman. (diff)
downloadhistorical-6bf1906fbe562a6f3ca2e60fa970fd8093750b0e.tar.gz
historical-6bf1906fbe562a6f3ca2e60fa970fd8093750b0e.tar.bz2
historical-6bf1906fbe562a6f3ca2e60fa970fd8093750b0e.zip
Broken ebuild.
Diffstat (limited to 'media-fonts')
-rw-r--r--media-fonts/terminus-font/terminus-font-4.00.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/media-fonts/terminus-font/terminus-font-4.00.ebuild b/media-fonts/terminus-font/terminus-font-4.00.ebuild
deleted file mode 100644
index cefb9045c0dd..000000000000
--- a/media-fonts/terminus-font/terminus-font-4.00.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-fonts/terminus-font/terminus-font-4.00.ebuild,v 1.1 2003/04/23 09:59:04 twp Exp $
-
-DESCRIPTION="A clean fixed font for the console and X11"
-HOMEPAGE="http://www.is-vn.bg/hamster/jimmy-en.htm"
-SRC_URI="http://www.is-vn.bg/hamster/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="X"
-
-DEPEND="X? ( virtual/x11 ) dev-lang/perl"
-RDEPEND="X? ( virtual/x11 )"
-
-src_compile() {
- make psf || die
-
- # If user wants fonts for X11
- if [ -n "`use X`" ]; then
- make pcf || die
- fi
-}
-
-src_install() {
- ( cd vga && ../configure --prefix=${D}/usr )
- make -f vga/Makefile install || die
-
- # If user wants fonts for X11
- if [ -n "`use X`" ]; then
- ( cd x11 && ../configure --prefix=${D}/usr )
- perl -pi -e 's/local/misc/;' x11/Makefile
- make -f x11/Makefile install || die
- fi
-
- dodoc README*
-}
-
-pkg_postinst() {
- mkfontdir ${ROOT}usr/X11R6/fonts/X11/misc
-}