| 1 |
# Copyright 1999-2008 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiftags/exiftags-1.01.ebuild,v 1.4 2007/12/17 18:52:20 dertobi123 Exp $
|
| 4 |
|
| 5 |
inherit toolchain-funcs
|
| 6 |
|
| 7 |
DESCRIPTION="Extracts JPEG EXIF headers from digital camera photos"
|
| 8 |
HOMEPAGE="http://johnst.org/sw/exiftags/"
|
| 9 |
SRC_URI="http://johnst.org/sw/${PN}/${P}.tar.gz"
|
| 10 |
|
| 11 |
LICENSE="BSD"
|
| 12 |
SLOT="0"
|
| 13 |
KEYWORDS="amd64 ppc x86"
|
| 14 |
IUSE=""
|
| 15 |
|
| 16 |
DEPEND=""
|
| 17 |
|
| 18 |
src_compile() {
|
| 19 |
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "emake failed."
|
| 20 |
}
|
| 21 |
|
| 22 |
src_install() {
|
| 23 |
dobin exiftags exifcom exiftime || die "dobin failed."
|
| 24 |
doman exiftags.1 exifcom.1 exiftime.1
|
| 25 |
dodoc README CHANGES
|
| 26 |
}
|