diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-09-27 10:21:44 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-09-27 10:21:44 +0000 |
commit | c7476c99cf218f058d18b73dfaa4bac40d7883f4 (patch) | |
tree | 1319105ede0f69378e27777c8185ed44c5e6ebaf /sys-apps | |
parent | bugfix version bump (diff) | |
download | gentoo-2-c7476c99cf218f058d18b73dfaa4bac40d7883f4.tar.gz gentoo-2-c7476c99cf218f058d18b73dfaa4bac40d7883f4.tar.bz2 gentoo-2-c7476c99cf218f058d18b73dfaa4bac40d7883f4.zip |
nls fixes
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/man/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/man/man-1.5k.ebuild | 11 |
2 files changed, 14 insertions, 4 deletions
diff --git a/sys-apps/man/ChangeLog b/sys-apps/man/ChangeLog index ab21ea815185..b6cd77beb843 100644 --- a/sys-apps/man/ChangeLog +++ b/sys-apps/man/ChangeLog @@ -1,9 +1,14 @@ # ChangeLog for sys-apps/man # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/ChangeLog,v 1.5 2002/07/29 14:58:58 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/ChangeLog,v 1.6 2002/09/27 10:21:44 seemant Exp $ *man-1.5k (29 Jul 2002) + 27 Sep 2002; Seemant Kulleen <seemant@gentoo.org> man-1.5k.ebuild : + + Fixed compilation of gencat (when "nls" in USE). Thanks to: + chrb@dcs.ed.ac.uk (Chris Bainbridge) in bug #8020. + 29 Jul 2002; Martin Schlemmer <azarah@gentoo.org> : Update version; cleanups. diff --git a/sys-apps/man/man-1.5k.ebuild b/sys-apps/man/man-1.5k.ebuild index 161264b68015..10342260d00a 100644 --- a/sys-apps/man/man-1.5k.ebuild +++ b/sys-apps/man/man-1.5k.ebuild @@ -1,16 +1,16 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/man-1.5k.ebuild,v 1.4 2002/09/21 03:28:51 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/man-1.5k.ebuild,v 1.5 2002/09/27 10:21:44 seemant Exp $ NV=1.5k S=${WORKDIR}/${PN}-${NV} DESCRIPTION="Standard commands to read man pages" SRC_URI="http://www.kernel.org/pub/linux/utils/man/man-${NV}.tar.gz" HOMEPAGE="http://freshmeat.net/projects/man/" + DEPEND="virtual/glibc" -RDEPEND="virtual/glibc - sys-apps/cronbase +RDEPEND="sys-apps/cronbase sys-apps/groff" SLOT="0" @@ -36,6 +36,11 @@ src_unpack() { -e "CFLAGS = $CFLAGS" \ Makefile.in.orig > Makefile.in done + + cd ${S}/gencat + cp Makefile Makefile.orig + sed -e "s:cc -o:gcc -o:" Makefile.orig > Makefile + } src_compile() { |