32 lines
774 B
Bash
32 lines
774 B
Bash
# Copyright 1999-2012 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.4 2012/05/05 02:54:25 jdhore Exp $
|
|
|
|
inherit autotools eutils
|
|
|
|
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="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-libs/libpcre
|
|
dev-libs/openssl
|
|
net-misc/curl"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
epatch "${FILESDIR}"/${P}-asneeded.patch
|
|
eautoreconf
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "emake install failed."
|
|
dodoc AUTHORS NEWS
|
|
}
|