diff options
author | Michael Sterrett <msterret@gentoo.org> | 2003-06-20 23:08:34 +0000 |
---|---|---|
committer | Michael Sterrett <msterret@gentoo.org> | 2003-06-20 23:08:34 +0000 |
commit | f9218f4d0aaf18770ab0f8a7db365075306fb839 (patch) | |
tree | 810036fb08026314877a06eea02690fdc24013ae /app-misc/wipe/wipe-2.1.0.ebuild | |
parent | some mask cleanups. clarified gnumeric/gimp masks (diff) | |
download | gentoo-2-f9218f4d0aaf18770ab0f8a7db365075306fb839.tar.gz gentoo-2-f9218f4d0aaf18770ab0f8a7db365075306fb839.tar.bz2 gentoo-2-f9218f4d0aaf18770ab0f8a7db365075306fb839.zip |
fix gcc 3.2.3 breakage (bug 23165)
Diffstat (limited to 'app-misc/wipe/wipe-2.1.0.ebuild')
-rw-r--r-- | app-misc/wipe/wipe-2.1.0.ebuild | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app-misc/wipe/wipe-2.1.0.ebuild b/app-misc/wipe/wipe-2.1.0.ebuild index 804fbc304404..80ab148b4490 100644 --- a/app-misc/wipe/wipe-2.1.0.ebuild +++ b/app-misc/wipe/wipe-2.1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/wipe/wipe-2.1.0.ebuild,v 1.3 2003/02/13 09:12:52 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/wipe/wipe-2.1.0.ebuild,v 1.4 2003/06/20 23:08:30 msterret Exp $ DESCRIPTION="Secure file wiping utility based on Peter Gutman's patterns" SRC_URI="mirror://sourceforge/wipe/${P}.tar.bz2" @@ -10,8 +10,16 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" +DEPEND="virtual/glibc + >=sys-apps/sed-4" + +src_unpack() { + unpack ${A} + sed -i -e '28 i\#include <errno.h>' ${S}/rand.c || die "sed rand.c failed" +} + src_compile() { - econf + econf || die "econf failed" emake || die "compile problem" } |