blob: e815511b6ea2caaca942952a16adeb602a483127 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/flickcurl/flickcurl-1.21.ebuild,v 1.2 2011/07/25 10:28:48 angelos Exp $
EAPI="4"
inherit autotools eutils
DESCRIPTION="C library for the Flickr API"
HOMEPAGE="http://librdf.org/flickcurl/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
# Regular tarball is missing a header file breaking non-raptor support
#SRC_URI="http://download.dajobe.org/flickcurl/${P}.tar.gz"
LICENSE="|| ( LGPL-2.1 GPL-2 Apache-2.0 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc raptor static-libs"
RDEPEND=">=net-misc/curl-7.10.0
>=dev-libs/libxml2-2.6.8:2
raptor? ( media-libs/raptor:2 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_prepare() {
if ! use doc ; then
# Only install html documentation when the use flag is enabled
sed -i -e '/gtk-doc.make/d' \
-e 's:+=:=:' docs/Makefile.am || die
else
# Install html docs in the correct directory
sed -i -e '/^TARGET_DIR/s:/$(DOC_MODULE)::' gtk-doc.make || die
fi
epatch "${FILESDIR}"/${P}-curl-headers.patch
eautoreconf
}
src_configure() {
local myconf
if use raptor ; then
myconf="--with-raptor=2"
else
myconf="--with-raptor=no"
fi
econf \
--with-html-dir=/usr/share/doc/${PF}/html \
$(use_enable static-libs static) \
${myconf}
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f '{}' +
}
|