diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-08-16 09:52:07 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-08-16 09:52:07 +0000 |
commit | 1078b08c2256d45fccdf927ee08e867a918c6eaf (patch) | |
tree | 287c21cc22dbf44ad0e52b56c09992919d565271 /sys-apps/quota | |
parent | beautifying (diff) | |
download | historical-1078b08c2256d45fccdf927ee08e867a918c6eaf.tar.gz historical-1078b08c2256d45fccdf927ee08e867a918c6eaf.tar.bz2 historical-1078b08c2256d45fccdf927ee08e867a918c6eaf.zip |
modernised
Diffstat (limited to 'sys-apps/quota')
-rw-r--r-- | sys-apps/quota/quota-3.03.ebuild | 13 | ||||
-rw-r--r-- | sys-apps/quota/quota-3.04.ebuild | 13 |
2 files changed, 10 insertions, 16 deletions
diff --git a/sys-apps/quota/quota-3.03.ebuild b/sys-apps/quota/quota-3.03.ebuild index 39233f5d512c..aed4dd88d9b9 100644 --- a/sys-apps/quota/quota-3.03.ebuild +++ b/sys-apps/quota/quota-3.03.ebuild @@ -1,28 +1,25 @@ # 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.03.ebuild,v 1.6 2002/08/01 11:40:16 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/quota/quota-3.03.ebuild,v 1.7 2002/08/16 09:52:07 seemant Exp $ S=${WORKDIR}/quota-tools DESCRIPTION="Linux quota tools" SRC_URI="mirror://sourceforge/linuxquota/${P}.tar.gz" HOMEPAGE="http://sourceforge.net/projects/linuxquota/" -KEYWORDS="x86" + SLOT="0" +KEYWORDS="x86" LICENSE="GPL-2" DEPEND="virtual/glibc" src_compile() { - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man || die "./configure failed" + econf || die "./configure failed" emake || die } src_install () { - mkdir -p ${D}/{sbin,etc,usr/sbin,usr/bin,usr/share/man/man{1,2,3,8}} + 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 dodoc doc/* diff --git a/sys-apps/quota/quota-3.04.ebuild b/sys-apps/quota/quota-3.04.ebuild index 1cbd0d48baea..72475fa27e5d 100644 --- a/sys-apps/quota/quota-3.04.ebuild +++ b/sys-apps/quota/quota-3.04.ebuild @@ -1,28 +1,25 @@ # 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.04.ebuild,v 1.8 2002/08/14 04:40:34 murphy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/quota/quota-3.04.ebuild,v 1.9 2002/08/16 09:52:07 seemant Exp $ S=${WORKDIR}/quota-tools DESCRIPTION="Linux quota tools" SRC_URI="mirror://sourceforge/linuxquota/${P}.tar.gz" HOMEPAGE="http://sourceforge.net/projects/linuxquota/" -KEYWORDS="x86 ppc sparc sparc64" + SLOT="0" LICENSE="GPL-2" +KEYWORDS="x86 ppc sparc sparc64" DEPEND="virtual/glibc" src_compile() { - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man || die "./configure failed" + econf || die "./configure failed" emake || die } src_install () { - mkdir -p ${D}/{sbin,etc,usr/sbin,usr/bin,usr/share/man/man{1,2,3,8}} + 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 dodoc doc/* |