diff options
author | Tom William Payne <twp@gentoo.org> | 2003-04-23 09:59:04 +0000 |
---|---|---|
committer | Tom William Payne <twp@gentoo.org> | 2003-04-23 09:59:04 +0000 |
commit | 6bec53c1778c93b813db5f0789fa2366a5314f9e (patch) | |
tree | dbf9ff5383e85e28c58d50b5e40f8cb73fb1597f /media-fonts | |
parent | Added media-fonts (bug # 18639). (diff) | |
download | historical-6bec53c1778c93b813db5f0789fa2366a5314f9e.tar.gz historical-6bec53c1778c93b813db5f0789fa2366a5314f9e.tar.bz2 historical-6bec53c1778c93b813db5f0789fa2366a5314f9e.zip |
Initial commit.
Diffstat (limited to 'media-fonts')
-rw-r--r-- | media-fonts/terminus-font/ChangeLog | 9 | ||||
-rw-r--r-- | media-fonts/terminus-font/terminus-font-4.00.ebuild | 41 |
2 files changed, 50 insertions, 0 deletions
diff --git a/media-fonts/terminus-font/ChangeLog b/media-fonts/terminus-font/ChangeLog new file mode 100644 index 000000000000..7d2de3793c0e --- /dev/null +++ b/media-fonts/terminus-font/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for media-fonts/terminus-fonts +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-fonts/terminus-font/ChangeLog,v 1.1 2003/04/23 09:59:04 twp Exp $ + +*terminus-fonts-4.00 (23 Apr 2003) + + 23 Apr 2003; Tom Payne <twp@gentoo.org> terminus-fonts-4.00.ebuild : + + Initial version. Ebuild submitted by Paul Totterman. Bug # 18639. diff --git a/media-fonts/terminus-font/terminus-font-4.00.ebuild b/media-fonts/terminus-font/terminus-font-4.00.ebuild new file mode 100644 index 000000000000..cefb9045c0dd --- /dev/null +++ b/media-fonts/terminus-font/terminus-font-4.00.ebuild @@ -0,0 +1,41 @@ +# 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 +} |