summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcelo Góes <vanquirius@gentoo.org>2007-01-25 16:52:23 +0000
committerMarcelo Góes <vanquirius@gentoo.org>2007-01-25 16:52:23 +0000
commit93449da418a5e50879c988065374a6c0484c9bff (patch)
treefaaaab869b4f3a1965eb9ad48372c16482b3fb4d /media-gfx/jhead
parentUpdated external plugin names to gst-plugins-bad-0.10.4 and gst-plugins-good-... (diff)
downloadgentoo-2-93449da418a5e50879c988065374a6c0484c9bff.tar.gz
gentoo-2-93449da418a5e50879c988065374a6c0484c9bff.tar.bz2
gentoo-2-93449da418a5e50879c988065374a6c0484c9bff.zip
2.7 version bump.
(Portage version: 2.1.1-r2)
Diffstat (limited to 'media-gfx/jhead')
-rw-r--r--media-gfx/jhead/ChangeLog9
-rw-r--r--media-gfx/jhead/files/digest-jhead-2.73
-rw-r--r--media-gfx/jhead/jhead-2.7.ebuild34
3 files changed, 44 insertions, 2 deletions
diff --git a/media-gfx/jhead/ChangeLog b/media-gfx/jhead/ChangeLog
index 8a329c1fc6b6..755d2581d1e2 100644
--- a/media-gfx/jhead/ChangeLog
+++ b/media-gfx/jhead/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-gfx/jhead
-# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/jhead/ChangeLog,v 1.50 2006/12/11 13:42:03 gustavoz Exp $
+# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/jhead/ChangeLog,v 1.51 2007/01/25 16:52:23 vanquirius Exp $
+
+*jhead-2.7 (25 Jan 2007)
+
+ 25 Jan 2007; Marcelo Goes <vanquirius@gentoo.org> +jhead-2.7.ebuild:
+ 2.7 version bump.
11 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> jhead-2.6.ebuild:
Stable on sparc
diff --git a/media-gfx/jhead/files/digest-jhead-2.7 b/media-gfx/jhead/files/digest-jhead-2.7
new file mode 100644
index 000000000000..1ee92e7eb451
--- /dev/null
+++ b/media-gfx/jhead/files/digest-jhead-2.7
@@ -0,0 +1,3 @@
+MD5 be10a197a8858de5d86ae89219e806fb jhead-2.7.tar.gz 58957
+RMD160 fa7ba376e9443dd1d8d3bddce0ed2c67af31f36a jhead-2.7.tar.gz 58957
+SHA256 899f8957514669492e98e192994f4300c4503617c6a00a257d5dffe7864e79e4 jhead-2.7.tar.gz 58957
diff --git a/media-gfx/jhead/jhead-2.7.ebuild b/media-gfx/jhead/jhead-2.7.ebuild
new file mode 100644
index 000000000000..899c7a27ce88
--- /dev/null
+++ b/media-gfx/jhead/jhead-2.7.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/jhead/jhead-2.7.ebuild,v 1.1 2007/01/25 16:52:23 vanquirius Exp $
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="Exif Jpeg camera setting parser and thumbnail remover"
+HOMEPAGE="http://www.sentex.net/~mwandel/jhead/"
+SRC_URI="http://www.sentex.net/~mwandel/jhead/${P}.tar.gz"
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc-macos ~ppc64 ~sparc ~x86"
+IUSE=""
+
+DEPEND="virtual/libc"
+RDEPEND="virtual/libc
+ media-libs/jpeg"
+
+src_unpack() {
+ unpack ${A}; cd "${S}"
+ sed -i "s:-O3 -Wall:${CFLAGS}:" makefile || die "sed failed"
+}
+
+src_compile() {
+ export CC="$(tc-getCC)"
+ emake || die
+}
+
+src_install() {
+ dobin jhead || die
+ dodoc {readme,changes}.txt
+ dohtml usage.html
+ doman jhead.1.gz
+}