diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-09-29 00:09:31 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-09-29 00:09:31 +0000 |
commit | a0aba6abd15aaf85080577e79304b5afa82c59b0 (patch) | |
tree | ca8c131f3c32e37b052ed34bfcc1cce6645957a3 /media-libs/giflib | |
parent | m68k love (diff) | |
download | gentoo-2-a0aba6abd15aaf85080577e79304b5afa82c59b0.tar.gz gentoo-2-a0aba6abd15aaf85080577e79304b5afa82c59b0.tar.bz2 gentoo-2-a0aba6abd15aaf85080577e79304b5afa82c59b0.zip |
old
Diffstat (limited to 'media-libs/giflib')
-rw-r--r-- | media-libs/giflib/files/digest-giflib-4.1.0-r3 | 1 | ||||
-rw-r--r-- | media-libs/giflib/giflib-4.1.0-r3.ebuild | 74 |
2 files changed, 0 insertions, 75 deletions
diff --git a/media-libs/giflib/files/digest-giflib-4.1.0-r3 b/media-libs/giflib/files/digest-giflib-4.1.0-r3 deleted file mode 100644 index 9095db7c5c28..000000000000 --- a/media-libs/giflib/files/digest-giflib-4.1.0-r3 +++ /dev/null @@ -1 +0,0 @@ -MD5 f70e8fe2dd57815bd2740aa88aa32f2c giflib-4.1.0.tar.gz 301883 diff --git a/media-libs/giflib/giflib-4.1.0-r3.ebuild b/media-libs/giflib/giflib-4.1.0-r3.ebuild deleted file mode 100644 index 61d6038bc440..000000000000 --- a/media-libs/giflib/giflib-4.1.0-r3.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/giflib/giflib-4.1.0-r3.ebuild,v 1.33 2005/02/03 21:21:03 tgall Exp $ - -inherit gnuconfig eutils - -DESCRIPTION="Library to handle, display and manipulate GIF images" -HOMEPAGE="http://prtr-13.ucsc.edu/~badger/software/libungif/index.shtml" -SRC_URI="ftp://metalab.unc.edu/pub/Linux/libs/giflib/${P}.tar.gz - ftp://prtr-13.ucsc.edu/pub/libungif/${P}.tar.gz" - -LICENSE="|| ( as-is BSD )" -SLOT="0" -KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64" -IUSE="X gif" - -DEPEND="X? ( virtual/x11 ) - >=sys-devel/autoconf-2.58" - -src_unpack() { - unpack ${A} - cd ${S} - gnuconfig_update -} - -src_compile() { - export WANT_AUTOCONF=2.5 - econf `use_with X x` || die - emake || die "emake failed" -} - -src_install() { - make DESTDIR=${D} install || die "make install failed" - - # if gif is not in USE, then ungif is preferred - use gif || rm -rf "${D}/usr/bin" - - dodoc AUTHORS BUGS ChangeLog NEWS ONEWS PATENT_PROBLEMS \ - README TODO doc/*.txt || die "dodoc failed" - dohtml -r doc || die "dohtml failed" -} - -pkg_postinst() { - if use gif ; then - einfo "You had the gif USE flag set, so the binary from this library" - einfo "is your gif binary. If you would prefer to use the binary from" - einfo "the ungif library, please unset the gif USE toggle, and remerge" - einfo "both this and libungif" - else - einfo "You did not have the gif USE toggle set, so the binary from" - einfo "the libungif package is assumed to be your gif binary. Please" - einfo "make sure that you have libungif emerged." - fi -} - -src_test() { - if has_version 'media-gfx/xv' ; then - if [ -z "$DISPLAY" ] || ! (/usr/X11R6/bin/xhost &>/dev/null) ; then - ewarn - ewarn "You are not authorised to conntect to X server to make check." - ewarn "Disabling make check." - ewarn - epause; ebeep; epause - else - make check || die "make check failed" - fi - else - ewarn - ewarn "You need media-gfx/xv to run the tests for this package." - ewarn "Disabling make check." - ewarn - epause; ebeep; epause - fi -} |