diff options
author | Joachim Blaabjerg <styx@gentoo.org> | 2002-08-23 06:18:23 +0000 |
---|---|---|
committer | Joachim Blaabjerg <styx@gentoo.org> | 2002-08-23 06:18:23 +0000 |
commit | 5c5878d5d74b0db2a5319666420ff4525aae180c (patch) | |
tree | a1969aa456476af21ef073aa24eff1cd85fd0034 /sys-apps/quota | |
parent | new ebuild. bug #3232 (diff) | |
download | historical-5c5878d5d74b0db2a5319666420ff4525aae180c.tar.gz historical-5c5878d5d74b0db2a5319666420ff4525aae180c.tar.bz2 historical-5c5878d5d74b0db2a5319666420ff4525aae180c.zip |
Partially fixed bug #6723, now installing quotatab to /etc
Diffstat (limited to 'sys-apps/quota')
-rw-r--r-- | sys-apps/quota/ChangeLog | 10 | ||||
-rw-r--r-- | sys-apps/quota/quota-3.06.ebuild | 7 |
2 files changed, 13 insertions, 4 deletions
diff --git a/sys-apps/quota/ChangeLog b/sys-apps/quota/ChangeLog index a127cbd80175..19bc1e66a63f 100644 --- a/sys-apps/quota/ChangeLog +++ b/sys-apps/quota/ChangeLog @@ -1,8 +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.5 2002/08/16 13:10:10 styx Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/quota/ChangeLog,v 1.6 2002/08/23 06:18:23 styx Exp $ -*quota-3.06 (16 Aug 2002( +*quota-3.06 (23 Aug 2002) + + 23 Aug 2002; Joachim Blaabjerg <styx@gentoo.org> quota-3.06.ebuild : + + Partially fixed bug #6723, now installing quotatab to /etc + +*quota-3.06 (16 Aug 2002) 16 Apr 2002; Joachim Blaabjerg <styx@gentoo.org> quota-3.06.ebuild : diff --git a/sys-apps/quota/quota-3.06.ebuild b/sys-apps/quota/quota-3.06.ebuild index 4bf964a9670f..bec3a537b557 100644 --- a/sys-apps/quota/quota-3.06.ebuild +++ b/sys-apps/quota/quota-3.06.ebuild @@ -1,6 +1,6 @@ # 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/quota/quota-3.06.ebuild,v 1.1 2002/08/16 13:10:10 styx Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/quota/quota-3.06.ebuild,v 1.2 2002/08/23 06:18:23 styx Exp $ S=${WORKDIR}/quota-tools DESCRIPTION="Linux quota tools" @@ -21,6 +21,9 @@ src_compile() { src_install () { dodir {sbin,etc,usr/sbin,usr/bin,usr/share/man/man{1,2,3,8}} make ROOTDIR=${D} install || die - install -m 644 warnquota.conf ${D}/etc +# install -m 644 warnquota.conf ${D}/etc + insinto /etc + insopts -m0644 + doins warnquota.conf quotatab dodoc doc/* } |