36 lines
937 B
Bash
36 lines
937 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/gexiv2/gexiv2-0.3.1.ebuild,v 1.2 2012/05/05 08:02:25 jdhore 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="~amd64 ~x86"
|
|
IUSE="static-libs"
|
|
|
|
RDEPEND=">=media-gfx/exiv2-0.21
|
|
dev-libs/glib:2"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
S=${WORKDIR}/lib${P}
|
|
|
|
src_configure() {
|
|
tc-export CXX
|
|
./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
|
|
}
|