summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2003-10-10 07:35:47 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2003-10-10 07:35:47 +0000
commit8e0729087f5ad219283262307598aaf7b39a49c1 (patch)
tree20e811fc1c12e81bf40b253dc206b0be2bc43e7f /media-gfx/gifsicle
parentinitial commit (bug 23853) (diff)
downloadgentoo-2-8e0729087f5ad219283262307598aaf7b39a49c1.tar.gz
gentoo-2-8e0729087f5ad219283262307598aaf7b39a49c1.tar.bz2
gentoo-2-8e0729087f5ad219283262307598aaf7b39a49c1.zip
initial commit (bug 23853)
Diffstat (limited to 'media-gfx/gifsicle')
-rw-r--r--media-gfx/gifsicle/ChangeLog9
-rw-r--r--media-gfx/gifsicle/Manifest3
-rw-r--r--media-gfx/gifsicle/files/digest-gifsicle-1.401
-rw-r--r--media-gfx/gifsicle/gifsicle-1.40.ebuild27
4 files changed, 39 insertions, 1 deletions
diff --git a/media-gfx/gifsicle/ChangeLog b/media-gfx/gifsicle/ChangeLog
new file mode 100644
index 000000000000..c2c56fa89085
--- /dev/null
+++ b/media-gfx/gifsicle/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for media-gfx/gifsicle
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gifsicle/ChangeLog,v 1.1 2003/10/10 07:35:45 mr_bones_ Exp $
+
+*gifsicle-1.40 (10 Oct 2003)
+
+ 10 Oct 2003; Michael Sterrett <mr_bones_@gentoo.org> gifsicle-1.40.ebuild:
+ initial commit (bug 23853)
+
diff --git a/media-gfx/gifsicle/Manifest b/media-gfx/gifsicle/Manifest
index 4d71d49b2c5a..817f83c27532 100644
--- a/media-gfx/gifsicle/Manifest
+++ b/media-gfx/gifsicle/Manifest
@@ -1,2 +1,3 @@
-MD5 9fdd5810d8780d421e74ab5a3737a065 gifsicle-1.40.ebuild 649
+MD5 5ff65f40d005872e3d325d86d8e8b569 gifsicle-1.40.ebuild 827
+MD5 85017ccec753de0aba195d6b80cea237 ChangeLog 358
MD5 54496137da5e5b09b0581c45f84406fe files/digest-gifsicle-1.40 65
diff --git a/media-gfx/gifsicle/files/digest-gifsicle-1.40 b/media-gfx/gifsicle/files/digest-gifsicle-1.40
new file mode 100644
index 000000000000..40347b9217a2
--- /dev/null
+++ b/media-gfx/gifsicle/files/digest-gifsicle-1.40
@@ -0,0 +1 @@
+MD5 2503cecaf678d17244dba965ce2a544b gifsicle-1.40.tar.gz 212021
diff --git a/media-gfx/gifsicle/gifsicle-1.40.ebuild b/media-gfx/gifsicle/gifsicle-1.40.ebuild
new file mode 100644
index 000000000000..f38e8c2dd979
--- /dev/null
+++ b/media-gfx/gifsicle/gifsicle-1.40.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gifsicle/gifsicle-1.40.ebuild,v 1.1 2003/10/10 07:35:45 mr_bones_ Exp $
+
+DESCRIPTION="A UNIX command-line tool for creating, editing, and getting information about GIF images and animations"
+HOMEPAGE="http://www.lcdf.org/~eddietwo/gifsicle/"
+SRC_URI="http://www.lcdf.org/~eddietwo/gifsicle/${P}.tar.gz"
+
+KEYWORDS="~x86"
+LICENSE="GPL-2"
+SLOT="0"
+
+IUSE="X"
+
+DEPEND="X? ( virtual/x11 )"
+
+src_compile() {
+ local myconf
+ use X || myconf="${myconf} --disable-gifview"
+ econf ${myconf} || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR=${D} install || die "make install failed"
+ dodoc NEWS README || die "dodoc failed"
+}