diff options
author | 2003-12-10 10:18:58 +0000 | |
---|---|---|
committer | 2003-12-10 10:18:58 +0000 | |
commit | 9f2c54fdd63beef2ffd6897bb12e18f3e8d1610f (patch) | |
tree | 14bfd5195268e0e4f344dcc50c0aca6553b4a72b /sys-apps/quota/quota-3.06-r1.ebuild | |
parent | Bumped to stable (diff) | |
download | historical-9f2c54fdd63beef2ffd6897bb12e18f3e8d1610f.tar.gz historical-9f2c54fdd63beef2ffd6897bb12e18f3e8d1610f.tar.bz2 historical-9f2c54fdd63beef2ffd6897bb12e18f3e8d1610f.zip |
quotactl.2 manpage collision with sys-apps/manpages
Diffstat (limited to 'sys-apps/quota/quota-3.06-r1.ebuild')
-rw-r--r-- | sys-apps/quota/quota-3.06-r1.ebuild | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/sys-apps/quota/quota-3.06-r1.ebuild b/sys-apps/quota/quota-3.06-r1.ebuild index f2e29623da0f..b56ba6eccbb6 100644 --- a/sys-apps/quota/quota-3.06-r1.ebuild +++ b/sys-apps/quota/quota-3.06-r1.ebuild @@ -1,22 +1,31 @@ # Copyright 1999-2003 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.8 2003/12/10 10:06:45 trance Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/quota/quota-3.06-r1.ebuild,v 1.9 2003/12/10 10:18:57 seemant Exp $ IUSE="nls" S=${WORKDIR}/quota-tools DESCRIPTION="Linux quota tools" +HOMEPAGE="http://sourceforge.net/projects/linuxquota/" SRC_URI="mirror://sourceforge/linuxquota/${P}.tar.gz" RESTRICT="nomirror" -HOMEPAGE="http://sourceforge.net/projects/linuxquota/" SLOT="0" LICENSE="GPL-2" -KEYWORDS="x86 amd64 ppc sparc " +KEYWORDS="x86 ppc sparc ~alpha ~hppa ~mips amd64 ~ia64" DEPEND="virtual/glibc sys-apps/tcp-wrappers" +src_unpack() { + unpack ${A} + cd ${S} + + # patch to prevent quotactl.2 manpage from being installed + # that page is provided by man-pages instead + epatch ${FILESDIR}/${PN}-no-quotactl-manpage.patch +} + src_install() { dodir {sbin,etc,usr/sbin,usr/bin,usr/share/man/man{1,2,3,8}} make ROOTDIR=${D} install || die |