diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-05-22 00:26:05 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-05-22 00:26:05 +0000 |
commit | 1374f66b530b12b51c49548ecc32583024d3cdd3 (patch) | |
tree | c20150362c811a3bd99c4699984a4de6ad345a12 /app-crypt | |
parent | Fixing BUG #50541. (diff) | |
download | historical-1374f66b530b12b51c49548ecc32583024d3cdd3.tar.gz historical-1374f66b530b12b51c49548ecc32583024d3cdd3.tar.bz2 historical-1374f66b530b12b51c49548ecc32583024d3cdd3.zip |
fix stupid things
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/bsign/bsign-0.4.5.ebuild | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/app-crypt/bsign/bsign-0.4.5.ebuild b/app-crypt/bsign/bsign-0.4.5.ebuild index b68666fef296..c62187702898 100644 --- a/app-crypt/bsign/bsign-0.4.5.ebuild +++ b/app-crypt/bsign/bsign-0.4.5.ebuild @@ -1,31 +1,20 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/bsign/bsign-0.4.5.ebuild,v 1.4 2004/05/07 20:22:11 tseng Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/bsign/bsign-0.4.5.ebuild,v 1.5 2004/05/22 00:26:05 vapier Exp $ -DESCRIPTION="This package embeds secure hashes (SHA1) and digital signatures (GNU Privacy Guard) into files for verification and authentication" +DESCRIPTION="embed secure hashes (SHA1) and digital signatures (GNU Privacy Guard) into files" HOMEPAGE="http://packages.debian.org/unstable/admin/bsign.html" SRC_URI="mirror://debian/pool/main/b/bsign/${PN}_${PV}.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc" IUSE="" + DEPEND="" RDEPEND="" -src_compile() { - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man || die "./configure failed" - emake || die "emake failed" -} - src_install() { - dobin bsign - dobin bsign_sign - dobin bsign_verify - dobin bsign_hash - dobin bsign_check + dobin bsign bsign_sign bsign_verify bsign_hash bsign_check || die doman bsign.1 } |