# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/libexif-0.6.18.ebuild,v 1.1 2009/10/11 16:47:50 ssuominen Exp $ EAPI=2 inherit eutils libtool DESCRIPTION="Library for parsing, editing, and saving EXIF data" HOMEPAGE="http://libexif.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" IUSE="doc nls" RDEPEND="nls? ( virtual/libintl )" DEPEND="${RDEPEND} dev-util/pkgconfig doc? ( app-doc/doxygen ) nls? ( sys-devel/gettext )" src_prepare() { epatch "${FILESDIR}"/${PN}-0.6.13-pkgconfig.patch elibtoolize # FreeBSD .so version } src_configure() { econf \ --disable-dependency-tracking \ $(use_enable nls) \ $(use_enable doc docs) \ --with-doc-dir=/usr/share/doc/${PF} } src_install() { emake DESTDIR="${D}" install || die rm -f "${D}"usr/share/doc/${PF}/{ABOUT-NLS,COPYING} prepalldocs }