summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2010-05-20 10:30:28 +0000
committerPeter Volkov <pva@gentoo.org>2010-05-20 10:30:28 +0000
commitbf29c3aa5ae9c2bb3cf0cba62cf272db4d609365 (patch)
tree699f05783bd3c4e0974f4b0177abc142ef9c9a13 /media-gfx/dcraw
parentamd64 stable, bug 299574. (diff)
downloadgentoo-2-bf29c3aa5ae9c2bb3cf0cba62cf272db4d609365.tar.gz
gentoo-2-bf29c3aa5ae9c2bb3cf0cba62cf272db4d609365.tar.bz2
gentoo-2-bf29c3aa5ae9c2bb3cf0cba62cf272db4d609365.zip
Drop old.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/dcraw')
-rw-r--r--media-gfx/dcraw/ChangeLog5
-rw-r--r--media-gfx/dcraw/dcraw-8.73.ebuild80
2 files changed, 4 insertions, 81 deletions
diff --git a/media-gfx/dcraw/ChangeLog b/media-gfx/dcraw/ChangeLog
index c6e2e1e3a244..82769f199d14 100644
--- a/media-gfx/dcraw/ChangeLog
+++ b/media-gfx/dcraw/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-gfx/dcraw
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/dcraw/ChangeLog,v 1.57 2010/04/21 14:47:06 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/dcraw/ChangeLog,v 1.58 2010/05/20 10:30:28 pva Exp $
+
+ 20 May 2010; Peter Volkov <pva@gentoo.org> -dcraw-8.73.ebuild:
+ Drop old.
21 Apr 2010; Jeremy Olexa <darkside@gentoo.org> dcraw-8.99.ebuild:
Add ~amd64-linux ~x86-linux ~x86-solaris keywords
diff --git a/media-gfx/dcraw/dcraw-8.73.ebuild b/media-gfx/dcraw/dcraw-8.73.ebuild
deleted file mode 100644
index c20623a08c05..000000000000
--- a/media-gfx/dcraw/dcraw-8.73.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2009 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.10 2009/09/23 15:11:57 ssuominen 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="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="freedist GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
-IUSE="gimp"
-
-DEPEND=">=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 ""
-}