# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit toolchain-funcs DESCRIPTION="A secure password generator utility that utilizes /dev/random" HOMEPAGE="http://www.guyrutenberg.com/category/projects/spass/" SRC_URI="http://www.guyrutenberg.com/wp-content/uploads/2007/10/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="" RDEPEND="" S="${WORKDIR}/${PN}" src_compile() { emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" || die "emake failed" } src_install() { dodir /usr/bin emake DESTDIR="${D}" install || die "install failed" }