diff options
author | 2007-12-17 16:39:39 +0000 | |
---|---|---|
committer | 2007-12-17 16:39:39 +0000 | |
commit | e43eaf1db370d53155b07cf5a5ff84eadd43ba42 (patch) | |
tree | 2f194e2e6dc8380e5fb78bd015a15c5997b2cbba /media-gfx | |
parent | Version bumb (diff) | |
download | gentoo-2-e43eaf1db370d53155b07cf5a5ff84eadd43ba42.tar.gz gentoo-2-e43eaf1db370d53155b07cf5a5ff84eadd43ba42.tar.bz2 gentoo-2-e43eaf1db370d53155b07cf5a5ff84eadd43ba42.zip |
amd64 stable wrt #202354, respect CC and CFLAGS.
(Portage version: 2.1.4_rc10)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/exiftags/ChangeLog | 5 | ||||
-rw-r--r-- | media-gfx/exiftags/exiftags-1.01.ebuild | 12 |
2 files changed, 13 insertions, 4 deletions
diff --git a/media-gfx/exiftags/ChangeLog b/media-gfx/exiftags/ChangeLog index bcc02e559f0a..4876bbc7f810 100644 --- a/media-gfx/exiftags/ChangeLog +++ b/media-gfx/exiftags/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-gfx/exiftags # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiftags/ChangeLog,v 1.18 2007/12/17 07:21:08 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiftags/ChangeLog,v 1.19 2007/12/17 16:39:39 drac Exp $ + + 17 Dec 2007; Samuli Suominen <drac@gentoo.org> exiftags-1.01.ebuild: + amd64 stable wrt #202354, respect CC and CFLAGS. 17 Dec 2007; Christian Faulhammer <opfer@gentoo.org> exiftags-1.01.ebuild: stable x86, security bug 202354 diff --git a/media-gfx/exiftags/exiftags-1.01.ebuild b/media-gfx/exiftags/exiftags-1.01.ebuild index 41eb1b8f59de..2fe740739b27 100644 --- a/media-gfx/exiftags/exiftags-1.01.ebuild +++ b/media-gfx/exiftags/exiftags-1.01.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiftags/exiftags-1.01.ebuild,v 1.2 2007/12/17 07:21:08 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiftags/exiftags-1.01.ebuild,v 1.3 2007/12/17 16:39:39 drac Exp $ + +inherit toolchain-funcs DESCRIPTION="Extracts JPEG EXIF headers from digital camera photos" HOMEPAGE="http://johnst.org/sw/exiftags/" @@ -8,13 +10,17 @@ SRC_URI="http://johnst.org/sw/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc-macos x86" +KEYWORDS="amd64 ~ppc ~ppc-macos x86" IUSE="" DEPEND="" +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "emake failed." +} + src_install() { - dobin exiftags exifcom exiftime || die + dobin exiftags exifcom exiftime || die "dobin failed." doman exiftags.1 exifcom.1 exiftime.1 dodoc README CHANGES } |