diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2008-03-22 19:19:10 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2008-03-22 19:19:10 +0000 |
commit | 39c3fdb788d63742a7e5d611e5b9145ed478b2cd (patch) | |
tree | f4c7bfe308d3b84652f65d1c7241396d5d279309 /net-libs/libopkele/libopkele-0.3.2.ebuild | |
parent | Post stabilization cleanup. (diff) | |
download | historical-39c3fdb788d63742a7e5d611e5b9145ed478b2cd.tar.gz historical-39c3fdb788d63742a7e5d611e5b9145ed478b2cd.tar.bz2 historical-39c3fdb788d63742a7e5d611e5b9145ed478b2cd.zip |
initial ebuild wrt #209573
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'net-libs/libopkele/libopkele-0.3.2.ebuild')
-rw-r--r-- | net-libs/libopkele/libopkele-0.3.2.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/net-libs/libopkele/libopkele-0.3.2.ebuild b/net-libs/libopkele/libopkele-0.3.2.ebuild new file mode 100644 index 000000000000..7f0a91e20126 --- /dev/null +++ b/net-libs/libopkele/libopkele-0.3.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libopkele/libopkele-0.3.2.ebuild,v 1.1 2008/03/22 19:19:10 hollow Exp $ + +DESCRIPTION="a c++ implementation of an OpenID decentralized identity system" +HOMEPAGE="http://kin.klever.net/libopkele/" +SRC_URI="http://kin.klever.net/dist/${P}.tar.bz2" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-libs/libpcre + dev-libs/openssl + dev-util/pkgconfig + net-misc/curl" +RDEPEND="${DEPEND}" + +src_compile() { + econf || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" +} |