diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2007-06-05 10:48:38 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2007-06-05 10:48:38 +0000 |
commit | b808e853e719f1cab5b6f8d24d7d8e2b000c9288 (patch) | |
tree | 9eb9d992654a2a4b63a5b97b39184d540433d95a /media-gfx | |
parent | removed old versions (diff) | |
download | gentoo-2-b808e853e719f1cab5b6f8d24d7d8e2b000c9288.tar.gz gentoo-2-b808e853e719f1cab5b6f8d24d7d8e2b000c9288.tar.bz2 gentoo-2-b808e853e719f1cab5b6f8d24d7d8e2b000c9288.zip |
version bump
(Portage version: 2.1.2.7)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/dcraw/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/dcraw/dcraw-8.73.ebuild | 80 | ||||
-rw-r--r-- | media-gfx/dcraw/files/digest-dcraw-8.73 | 3 |
3 files changed, 89 insertions, 1 deletions
diff --git a/media-gfx/dcraw/ChangeLog b/media-gfx/dcraw/ChangeLog index 5d23c77ae740..b790f8322a98 100644 --- a/media-gfx/dcraw/ChangeLog +++ b/media-gfx/dcraw/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/dcraw # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/dcraw/ChangeLog,v 1.37 2007/05/31 01:55:17 dang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/dcraw/ChangeLog,v 1.38 2007/06/05 10:48:38 wschlich Exp $ + +*dcraw-8.73 (05 Jun 2007) + + 05 Jun 2007; Wolfram Schlich <wschlich@gentoo.org> +dcraw-8.73.ebuild: + version bump 31 May 2007; Daniel Gryniewicz <dang@gentoo.org> dcraw-8.45.ebuild: Marked stable on amd64 for bug #180250 diff --git a/media-gfx/dcraw/dcraw-8.73.ebuild b/media-gfx/dcraw/dcraw-8.73.ebuild new file mode 100644 index 000000000000..55877a30270f --- /dev/null +++ b/media-gfx/dcraw/dcraw-8.73.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/dcraw/dcraw-8.73.ebuild,v 1.1 2007/06/05 10:48:38 wschlich Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="Converts the native (RAW) format of various digital cameras into netpbm portable pixmap (.ppm) image" +HOMEPAGE="http://www.cybercom.net/~dcoffin/dcraw/" +SRC_URI="http://dev.gentoo.org/~wschlich/src/media-gfx/dcraw/${P}.tar.bz2" +LICENSE="freedist GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="gimp" + +DEPEND="virtual/libc + >=media-libs/jpeg-6b + media-libs/lcms + gimp? ( media-gfx/gimp )" + +RDEPEND="${DEPEND} + media-libs/netpbm" + +src_compile() { + emake CC=$(tc-getCC) || die "make failed" + + # rawphoto gimp plugin + if use gimp; then + + # find gimptool (ugly!) + local gimptool=/usr/bin/gimptool + if [ ! -x ${gimptool} ]; then + gimptool=${gimptool}-2.0 + if [ ! -x ${gimptool} ]; then + die "Couldn't find gimptool. Please reinstall gimp." + fi + fi + + # build plugin + ${gimptool} --build rawphoto.c || die "gimptool failed" + + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc doc/conversion-examples.txt doc/dcwrap + + # rawphoto gimp plugin + if use gimp; then + + # find gimptool (ugly!) + local gimptool=/usr/bin/gimptool + if [ ! -x ${gimptool} ]; then + gimptool=${gimptool}-2.0 + if [ ! -x ${gimptool} ]; then + die "Couldn't find gimptool. Please reinstall gimp." + fi + fi + + # install plugin + env DESTDIR="${D}" ${gimptool} --install-admin-bin rawphoto || die "gimptool failed" + + fi +} + +pkg_postinst() { + elog "" + elog "See conversion-examples.txt.gz on how to convert" + elog "the PPM files produced by dcraw to other image formats." + elog "" + ewarn "The functionality of the external program 'fujiturn' was" + ewarn "incoporated into dcraw and is automatically used now." + elog "" + elog "There's an example wrapper script included called 'dcwrap'." + elog "" + elog "This package also includes 'dcparse', which extracts" + elog "thumbnail images (preferably JPEGs) from any raw digital" + elog "camera formats that have them, and shows table contents." + elog "" +} diff --git a/media-gfx/dcraw/files/digest-dcraw-8.73 b/media-gfx/dcraw/files/digest-dcraw-8.73 new file mode 100644 index 000000000000..c92d3a628b78 --- /dev/null +++ b/media-gfx/dcraw/files/digest-dcraw-8.73 @@ -0,0 +1,3 @@ +MD5 2c6e8e104297297aa221490d6de19854 dcraw-8.73.tar.bz2 72272 +RMD160 3b188c52eccca2cf8f11a6f69ed827847985f9f1 dcraw-8.73.tar.bz2 72272 +SHA256 9c3ea2a1a6af81e513d10976c4606b3f71422cca9e2261f19b0c6e5e1909b0e0 dcraw-8.73.tar.bz2 72272 |