summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-gfx/dcraw/dcraw-6.08.ebuild')
-rw-r--r--media-gfx/dcraw/dcraw-6.08.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/media-gfx/dcraw/dcraw-6.08.ebuild b/media-gfx/dcraw/dcraw-6.08.ebuild
deleted file mode 100644
index 0e3a7215f5ca..000000000000
--- a/media-gfx/dcraw/dcraw-6.08.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/dcraw/dcraw-6.08.ebuild,v 1.3 2005/03/12 23:40:02 wschlich Exp $
-
-inherit eutils flag-o-matic
-
-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/dcraw-6.08.tar.bz2"
-LICENSE="freedist"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="debug"
-DEPEND="virtual/libc >=media-libs/jpeg-6b"
-RDEPEND="media-libs/netpbm"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-}
-
-src_compile() {
- use debug && {
- append-flags -O -ggdb -DDEBUG
- RESTRICT="${RESTRICT} nostrip"
- }
- emake || die "make failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "make install failed"
- dodoc doc/conversion-examples.txt doc/fujiturn-usage.txt
-}
-
-pkg_postinst() {
- einfo ""
- einfo "See conversion-examples.txt.gz on how to convert"
- einfo "the PPM files produced by dcraw to other image formats."
- einfo ""
- einfo "If you have a Fuji camera and your pictures are rotated"
- einfo "45 degrees, see fujiturn-usage.txt.gz on how to fix that."
- einfo ""
-}