| 1 |
# Copyright 1999-2011 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/media-libs/liblrdf/liblrdf-0.5.0.ebuild,v 1.1 2011/10/23 22:10:46 ssuominen Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
inherit autotools
|
| 7 |
|
| 8 |
DESCRIPTION="A library for the manipulation of RDF file in LADSPA plugins"
|
| 9 |
HOMEPAGE="http://github.com/swh/LRDF"
|
| 10 |
SRC_URI="http://github.com/swh/LRDF/tarball/${PV} -> ${P}.tar.gz"
|
| 11 |
|
| 12 |
LICENSE="GPL-2"
|
| 13 |
SLOT="0"
|
| 14 |
KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
| 15 |
IUSE="static-libs"
|
| 16 |
|
| 17 |
RDEPEND=">=dev-libs/openssl-1
|
| 18 |
media-libs/raptor:2
|
| 19 |
>=media-libs/ladspa-sdk-1.12"
|
| 20 |
DEPEND="${RDEPEND}
|
| 21 |
dev-util/pkgconfig"
|
| 22 |
|
| 23 |
DOCS=( AUTHORS ChangeLog README )
|
| 24 |
|
| 25 |
src_unpack() {
|
| 26 |
unpack ${A}
|
| 27 |
mv *-LRDF-* "${S}"
|
| 28 |
}
|
| 29 |
|
| 30 |
src_prepare() {
|
| 31 |
eautoreconf
|
| 32 |
}
|
| 33 |
|
| 34 |
src_configure() {
|
| 35 |
econf $(use_enable static-libs static)
|
| 36 |
}
|
| 37 |
|
| 38 |
src_install() {
|
| 39 |
default
|
| 40 |
rm -f "${ED}"usr/lib*/liblrdf.la
|
| 41 |
}
|