# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Samir's secret sharing scheme utility" HOMEPAGE="http://www.point-at-infinity.org/ssss/" SRC_URI="http://www.point-at-infinity.org/ssss/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="doc" DEPEND="dev-libs/gmp app-doc/xmltoman" RDEPEND="dev-libs/gmp" S=${WORKDIR}/${PN} src_unpack() { unpack ${A} # Add CFLAGS support to the makefile epatch ${FILESDIR}/cflags.patch } src_compile() { emake || die "make failed" # gzip ${S}/ssss.1 } src_install() { dobin ssss-* doman *.1 if useq doc; then dodoc ssss.1.html fi }