# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="An implementation of Shamir's Secret Sharing Scheme" HOMEPAGE="http://point-at-infinity.org/ssss/" SRC_URI="http://point-at-infinity.org/ssss/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" #app-doc/xmltoman required to build the man page, but has been disabled DEPEND=">=dev-libs/gmp-4" RDEPEND="${DEPEND}" src_unpack() { unpack "${A}" cd "${S}" epatch "${FILESDIR}/ssss-makefile-gentoo.patch" } src_install() { dobin ssss-split ssss-combine || die 'executables cannot be installed' dohtml doc.html ssss.1.html dodoc HISTORY THANKS }