diff options
author | 2002-08-23 11:04:48 +0000 | |
---|---|---|
committer | 2002-08-23 11:04:48 +0000 | |
commit | c793ed330938480efc29c9e2c06eaad1db42d5f1 (patch) | |
tree | 7d09b50530995ca4b1581aaf8b5a23de0122763b /net-misc | |
parent | fix for 3.1 beta1 (diff) | |
download | gentoo-2-c793ed330938480efc29c9e2c06eaad1db42d5f1.tar.gz gentoo-2-c793ed330938480efc29c9e2c06eaad1db42d5f1.tar.bz2 gentoo-2-c793ed330938480efc29c9e2c06eaad1db42d5f1.zip |
fonts fixed
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/x3270/ChangeLog | 11 | ||||
-rw-r--r-- | net-misc/x3270/files/digest-x3270-3.2.17-r1 (renamed from net-misc/x3270/files/digest-x3270-3.2.17) | 0 | ||||
-rw-r--r-- | net-misc/x3270/x3270-3.2.17-r1.ebuild | 30 |
3 files changed, 40 insertions, 1 deletions
diff --git a/net-misc/x3270/ChangeLog b/net-misc/x3270/ChangeLog index 88afd94c5fc6..8700eea49e35 100644 --- a/net-misc/x3270/ChangeLog +++ b/net-misc/x3270/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for net-misc/x3270 # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-misc/x3270/ChangeLog,v 1.2 2002/07/09 11:44:21 phoenix Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/x3270/ChangeLog,v 1.3 2002/08/23 11:04:48 seemant Exp $ + +*x3270-3.2.17-r1 (23 Aug 2002) + + 23 Aug 2002; Seemant Kulleen <seemant@gentoo.org> x3270-3.2.17-r1.ebuild + files/digest/x3270-3.2.17-r1 : + + Removed the fonts.dir from the installation of this, and run a mkfontdir + on the misc fonts path for X11. Thanks to: wdreinhart@tamu.edu (Will + Reinhart) in bug #6726. *x3270-3.2.17 (1 Feb 2002) diff --git a/net-misc/x3270/files/digest-x3270-3.2.17 b/net-misc/x3270/files/digest-x3270-3.2.17-r1 index 14b76bb55b46..14b76bb55b46 100644 --- a/net-misc/x3270/files/digest-x3270-3.2.17 +++ b/net-misc/x3270/files/digest-x3270-3.2.17-r1 diff --git a/net-misc/x3270/x3270-3.2.17-r1.ebuild b/net-misc/x3270/x3270-3.2.17-r1.ebuild new file mode 100644 index 000000000000..e765e7d90f00 --- /dev/null +++ b/net-misc/x3270/x3270-3.2.17-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-misc/x3270/x3270-3.2.17-r1.ebuild,v 1.1 2002/08/23 11:04:48 seemant Exp $ + +S="${WORKDIR}/${PN}-3.2" +DESCRIPTION="Telnet 3270 client for X" +SRC_URI="http://x3270.bgp.nu/download/${PN}-3217.tgz" +HOMEPAGE="http://www.geocities.com/SiliconValley/Peaks/7814/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 sparc sparc64" + +DEPEND="virtual/x11" + +src_compile() { + econf --with-x || die + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + + rm ${D}/usr/X11R6/lib/X11/fonts/misc/fonts.dir +} + +pkg_postinst() { + einfo ">>> Running mkfontdir on /usr/X11R6/lib/X11/fonts/misc" + mkfontdir /usr/lib/X11/fonts/misc +} |