2015-04-09 09:14:12 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2013-08-21 22:56:58 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2013-08-21 22:56:58 +04:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
2015-04-09 09:14:12 +03:00
|
|
|
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
|
2013-08-21 22:56:58 +04:00
|
|
|
|
|
|
|
inherit eutils multilib python-r1 toolchain-funcs versionator
|
|
|
|
|
|
|
|
MY_PV=$(get_version_component_range 1-2)
|
|
|
|
|
|
|
|
DESCRIPTION="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${PN}_${PV}.tar.xz"
|
|
|
|
|
|
|
|
LICENSE="LGPL-2.1"
|
|
|
|
SLOT="0"
|
2013-09-09 02:52:03 +04:00
|
|
|
KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86"
|
2013-08-21 22:56:58 +04:00
|
|
|
IUSE="introspection static-libs"
|
|
|
|
|
|
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
|
|
|
|
RDEPEND="${PYTHON_DEPS}
|
|
|
|
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 \
|
|
|
|
$(use_enable introspection) \
|
|
|
|
|| die
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
emake DESTDIR="${D}" LIB="$(get_libdir)" install
|
|
|
|
dodoc AUTHORS NEWS README THANKS
|
|
|
|
|
|
|
|
python_moduleinto gi/overrides/
|
|
|
|
python_foreach_impl python_domodule GExiv2.py
|
|
|
|
|
|
|
|
use static-libs || find "${D}" \( -name '*.a' -or -name '*.la' \) -delete
|
|
|
|
}
|