diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-05-28 21:40:32 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-05-28 21:40:32 +0000 |
commit | c9e69ccad5a672907b1ccca29a6ee028a5cfb151 (patch) | |
tree | 31f18562ea2185addb2aa8d5800c6947893ac576 /sys-apps/rlocate | |
parent | Update the lseek patch to fix mkraid issues on amd64 #93694 by Radek "rush" S... (diff) | |
download | historical-c9e69ccad5a672907b1ccca29a6ee028a5cfb151.tar.gz historical-c9e69ccad5a672907b1ccca29a6ee028a5cfb151.tar.bz2 historical-c9e69ccad5a672907b1ccca29a6ee028a5cfb151.zip |
dont let the ebuild run groupadd
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'sys-apps/rlocate')
-rw-r--r-- | sys-apps/rlocate/Manifest | 2 | ||||
-rw-r--r-- | sys-apps/rlocate/rlocate-0.3.0.ebuild | 11 |
2 files changed, 11 insertions, 2 deletions
diff --git a/sys-apps/rlocate/Manifest b/sys-apps/rlocate/Manifest index 9980796f1f0f..3c32f65d0e6b 100644 --- a/sys-apps/rlocate/Manifest +++ b/sys-apps/rlocate/Manifest @@ -1,4 +1,4 @@ -MD5 9e72128cf1367a61291571f78edad755 rlocate-0.3.0.ebuild 686 +MD5 084aeb4b895f8ce00873f7097ef27e35 rlocate-0.3.0.ebuild 821 MD5 41d21f481265d1ad225425aed51a77e5 ChangeLog 337 MD5 dffd46174e78b327c834fc3e4b1cf848 metadata.xml 160 MD5 3df7d026a132a54c32b590868c901eee files/digest-rlocate-0.3.0 65 diff --git a/sys-apps/rlocate/rlocate-0.3.0.ebuild b/sys-apps/rlocate/rlocate-0.3.0.ebuild index a6aa3ab117c8..da1ecd9302f7 100644 --- a/sys-apps/rlocate/rlocate-0.3.0.ebuild +++ b/sys-apps/rlocate/rlocate-0.3.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/rlocate/rlocate-0.3.0.ebuild,v 1.1 2005/05/27 22:56:33 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/rlocate/rlocate-0.3.0.ebuild,v 1.2 2005/05/28 21:40:32 vapier Exp $ inherit toolchain-funcs @@ -16,6 +16,15 @@ IUSE="" DEPEND="virtual/kernel" RDEPEND="!sys-apps/slocate" +src_unpack() { + unpack ${A} + cd "${S}" + rm -f rlocate-scripts/Makefile + sed -i \ + -e '/groupadd/d' \ + rlocate-scripts/Makefile.in +} + src_compile() { econf --enable-sandboxed || die ARCH=$(tc-arch-kernel) emake || die |