diff options
Diffstat (limited to 'app-crypt/sign/sign-1.0.7.ebuild')
-rw-r--r-- | app-crypt/sign/sign-1.0.7.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app-crypt/sign/sign-1.0.7.ebuild b/app-crypt/sign/sign-1.0.7.ebuild new file mode 100644 index 000000000000..03b9a6fc504c --- /dev/null +++ b/app-crypt/sign/sign-1.0.7.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/sign/sign-1.0.7.ebuild,v 1.1 2004/08/08 11:43:15 swegener Exp $ + +DESCRIPTION="File signing and signature verification utility" +HOMEPAGE="http://swapped.cc/sign/" +SRC_URI="http://swapped.cc/${PN}/files/${P}.tar.gz" +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="" + +DEPEND=">=dev-libs/openssl-0.9.6" + +src_compile() { + emake || die "emake failed" +} + +src_install() { + dobin sign || die "dobin failed" + doman man/sign.1 || die "doman failed" + dodoc README || die "dodoc failed" +} |