diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-01-06 04:52:07 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-01-06 04:52:07 +0000 |
commit | 12b71d933130a556964d7212036c992ffd6f1a01 (patch) | |
tree | 1bc65f94790151923865fe396970b8a72cb84134 /sys-apps/quota | |
parent | new package - a suite of programs that operate on netCDF files. (diff) | |
download | historical-12b71d933130a556964d7212036c992ffd6f1a01.tar.gz historical-12b71d933130a556964d7212036c992ffd6f1a01.tar.bz2 historical-12b71d933130a556964d7212036c992ffd6f1a01.zip |
nls fix
Diffstat (limited to 'sys-apps/quota')
-rw-r--r-- | sys-apps/quota/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/quota/quota-3.06-r1.ebuild | 12 |
2 files changed, 12 insertions, 7 deletions
diff --git a/sys-apps/quota/ChangeLog b/sys-apps/quota/ChangeLog index 6449759d784a..d5729711387d 100644 --- a/sys-apps/quota/ChangeLog +++ b/sys-apps/quota/ChangeLog @@ -1,9 +1,14 @@ # ChangeLog for sys-apps/quota # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-apps/quota/ChangeLog,v 1.10 2002/12/13 11:00:33 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/quota/ChangeLog,v 1.11 2003/01/06 04:52:07 seemant Exp $ *quota-3.06 (9 Dec 2002) + 05 Jan 2003; Seemant Kulleen <seemant@gentoo.org> quota-3.06-r1.ebuild : + + NLS bloat reduction. The upstream configure script needs to take care of + that, though :/ + 9 Dec 2002; Joachim Blaabjerg <styx@gentoo.org> quota-3.06-r1.ebuild : Added rc script from gregg@unix.net to -r1, and masked it for testing. diff --git a/sys-apps/quota/quota-3.06-r1.ebuild b/sys-apps/quota/quota-3.06-r1.ebuild index 2982027f1756..381d830c98ad 100644 --- a/sys-apps/quota/quota-3.06-r1.ebuild +++ b/sys-apps/quota/quota-3.06-r1.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/quota/quota-3.06-r1.ebuild,v 1.1 2002/12/10 17:49:41 styx Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/quota/quota-3.06-r1.ebuild,v 1.2 2003/01/06 04:52:07 seemant Exp $ + +IUSE="nls" S=${WORKDIR}/quota-tools DESCRIPTION="Linux quota tools" @@ -13,11 +15,6 @@ KEYWORDS="~x86 ~ppc ~sparc " DEPEND="virtual/glibc" -src_compile() { - econf || die "./configure failed" - emake || die -} - src_install() { dodir {sbin,etc,usr/sbin,usr/bin,usr/share/man/man{1,2,3,8}} make ROOTDIR=${D} install || die @@ -29,4 +26,7 @@ src_install() { exeinto /etc/init.d newexe ${FILESDIR}/quota.rc quota + + # NLS bloat reduction + use nls || rm -rf ${D}/usr/share/locale } |