blob: e635d11cc5c0fd090c5a451409c580629ad9ee58 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/gexiv2/gexiv2-0.4.1.ebuild,v 1.11 2013/08/21 12:59:33 jlec Exp $
EAPI=4
inherit versionator multilib toolchain-funcs
MY_PV=$(get_version_component_range 1-2)
DESCRIPTION="gexiv2 is a GObject-based wrapper around the Exiv2 library"
HOMEPAGE="http://trac.yorba.org/wiki/gexiv2/"
SRC_URI="http://www.yorba.org/download/${PN}/${MY_PV}/lib${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
IUSE="static-libs"
RDEPEND="
dev-libs/glib:2
>=media-gfx/exiv2-0.21"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S=${WORKDIR}/lib${P}
src_prepare() {
tc-export CXX
sed -e 's:CFLAGS:CXXFLAGS:g' -i Makefile || die
}
src_configure() {
./configure --prefix=/usr || die
}
src_install() {
emake DESTDIR="${D}" LIB="$(get_libdir)" install
dodoc AUTHORS NEWS README THANKS
use static-libs || find "${D}" \( -name '*.a' -or -name '*.la' \) -delete
}
|