24 lines
670 B
Bash
24 lines
670 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-2.0.3.ebuild,v 1.3 2012/05/05 02:54:25 jdhore 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="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="app-text/htmltidy
|
|
dev-libs/libpcre
|
|
dev-libs/openssl
|
|
net-misc/curl"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "emake install failed."
|
|
dodoc AUTHORS NEWS
|
|
}
|