# Copyright 1999-2005 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.6 2005/09/20 19:15:35 grobian Exp $ inherit toolchain-funcs 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="ppc ~ppc-macos x86" IUSE="" DEPEND=">=dev-libs/openssl-0.9.6" src_compile() { emake CC="$(tc-getCC)" || die "emake failed" } src_install() { dobin sign || die "dobin failed" doman man/sign.1 || die "doman failed" dodoc README || die "dodoc failed" dosym sign /usr/bin/unsign || die "dosym failed" }