# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit flag-o-matic IUSE="nls" S=${WORKDIR}/${P} DESCRIPTION="Small CLI util to show EXIF infos hidden in JPEG files" SRC_URI="mirror://sourceforge/libexif/${P}.tar.gz" HOMEPAGE="http://libexif.sf.net" LICENSE="GPL-2" KEYWORDS="x86 ppc sparc alpha" SLOT="0" DEPEND="dev-util/pkgconfig dev-libs/popt >=media-libs/libexif-0.6.9" src_compile() { local myconf use nls || myconf="${myconf} --disable-nls" econf ${myconf} emake || die } src_install () { #dodir /usr/bin #dodir /usr/man/man1 #dodir /usr/share/locale emake DESTDIR=${D} install || die dodoc AUTHORS ChangeLog README }