summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-02-06 22:21:57 +0000
committerMike Frysinger <vapier@gentoo.org>2004-02-06 22:21:57 +0000
commit5c8f46727646e624d4534d326d4558a3e573dab3 (patch)
tree379869afb0993c511c3315a442d9157179816c47 /media-libs/libungif
parentStable on x86, sparc; Fixed bug #40596; DESCRIPTION cleanup. (Manifest recommit) (diff)
downloadgentoo-2-5c8f46727646e624d4534d326d4558a3e573dab3.tar.gz
gentoo-2-5c8f46727646e624d4534d326d4558a3e573dab3.tar.bz2
gentoo-2-5c8f46727646e624d4534d326d4558a3e573dab3.zip
old
Diffstat (limited to 'media-libs/libungif')
-rw-r--r--media-libs/libungif/files/digest-libungif-4.1.0-r11
-rw-r--r--media-libs/libungif/libungif-4.1.0-r1.ebuild58
2 files changed, 0 insertions, 59 deletions
diff --git a/media-libs/libungif/files/digest-libungif-4.1.0-r1 b/media-libs/libungif/files/digest-libungif-4.1.0-r1
deleted file mode 100644
index caa01f13b521..000000000000
--- a/media-libs/libungif/files/digest-libungif-4.1.0-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 35427da9b40e06faae0db531c41c7eb6 libungif-4.1.0.tar.gz 301291
diff --git a/media-libs/libungif/libungif-4.1.0-r1.ebuild b/media-libs/libungif/libungif-4.1.0-r1.ebuild
deleted file mode 100644
index caf74a907d03..000000000000
--- a/media-libs/libungif/libungif-4.1.0-r1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libungif/libungif-4.1.0-r1.ebuild,v 1.19 2003/09/11 01:17:47 msterret Exp $
-
-IUSE="X gif"
-
-S=${WORKDIR}/${P}
-DESCRIPTION="A library for reading and writing gif images without LZW compression"
-HOMEPAGE="http://prtr-13.ucsc.edu/~badger/software/libungif/index.shtml"
-SRC_URI="http://www.ibiblio.org/pub/Linux/libs/graphics/${P}.tar.gz"
-
-DEPEND="X? ( virtual/x11 )"
-
-SLOT="0"
-LICENSE="as-is"
-KEYWORDS="x86 ppc sparc alpha hppa amd64"
-
-src_compile() {
-
- local myconf
- use X \
- && myconf="--with-x" \
- || myconf="--without-x"
-
- use alpha \
- && myconf="${myconf} --host=alpha-unknown-linux-gnu"
-
- econf ${myconf} || die
- emake || die
-}
-
-src_install() {
-
- make \
- prefix=${D}/usr \
- install || die
-
- use gif && rm -rf ${D}/usr/bin
-
- dodoc AUTHORS BUGS COPYING ChangeLog NEWS ONEWS
- dodoc UNCOMPRESSED_GIF README TODO
- dodoc doc/*.txt
- dohtml -r doc
-}
-
-pkg_postinst() {
-
- use gif 2>/dev/null && (
- einfo "You had the gif USE flag set, so it is assumed that you want"
- einfo "the binary from giflib instead. Please make sure you have"
- einfo "giflib emerged. Otherwise, unset the gif flag and remerge this"
- ) || (
- einfo "You did not have the gif USE flag, so your gif binary is being"
- einfo "provided by this package. If you would rather use the binary"
- einfo "from giflib, please set the gif USE flag, and re-emerge both"
- einfo "this and giflib"
- )
-}