blob: a95e581ad69e164ae82a4218ef137910bca27a54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils autotools
DESCRIPTION="Open Source Security Assertion Markup Language implementation"
HOMEPAGE="http://www.opensaml.org/"
SRC_URI="http://shibboleth.internet2.edu/downloads/${PN}/cpp/${PV}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-libs/openssl
net-misc/curl
dev-libs/log4shib
dev-libs/xerces-c
>=dev-libs/xml-security-c-1.3.0"
RDEPEND=${DEPEND}
src_unpack() {
unpack ${A}
cd "${S}"
# make documentation location Gentoo like
epatch "${FILESDIR}"/opensaml_doc.diff
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc doc/{NEWS,NOTICE,README}.txt || die
}
|