diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-03-06 04:46:45 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-03-06 04:46:45 +0000 |
commit | 406880a5ecfcf929855302076e3ee58732bf77f8 (patch) | |
tree | f825142bea8960f674c74c9c965b435eb3a5212b /app-crypt/bcwipe | |
parent | ver bumpage (diff) | |
download | gentoo-2-406880a5ecfcf929855302076e3ee58732bf77f8.tar.gz gentoo-2-406880a5ecfcf929855302076e3ee58732bf77f8.tar.bz2 gentoo-2-406880a5ecfcf929855302076e3ee58732bf77f8.zip |
Changed src_install () to src_install()
Diffstat (limited to 'app-crypt/bcwipe')
-rw-r--r-- | app-crypt/bcwipe/bcwipe-1.2_p3.ebuild | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/app-crypt/bcwipe/bcwipe-1.2_p3.ebuild b/app-crypt/bcwipe/bcwipe-1.2_p3.ebuild index 1f0e61138929..3c5008631ec1 100644 --- a/app-crypt/bcwipe/bcwipe-1.2_p3.ebuild +++ b/app-crypt/bcwipe/bcwipe-1.2_p3.ebuild @@ -1,22 +1,25 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/bcwipe-1.2_p3.ebuild,v 1.3 2003/06/29 22:18:38 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/bcwipe-1.2_p3.ebuild,v 1.4 2004/03/06 04:46:45 vapier Exp $ -S=${WORKDIR}/${PN} DESCRIPTION="BCWipe secure file removal utility" +HOMEPAGE="http://www.jetico.com/" SRC_URI="http://www.jetico.com/linux/BCWipe-${PV/_p/-}.tar.gz" -HOMEPAGE="http://www.jetico.com" -SLOT="0" + LICENSE="bestcrypt" +SLOT="0" +KEYWORDS="x86" + DEPEND="virtual/glibc" RDEPEND="" -KEYWORDS="x86" + +S=${WORKDIR}/${PN} src_compile() { emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" || die "Make failed" } -src_install () { +src_install() { + dobin bcwipe || die doman bcwipe.1 - exeinto /bin ; doexe bcwipe } |