summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Carlson <absinthe@gentoo.org>2003-04-06 08:38:51 +0000
committerDylan Carlson <absinthe@gentoo.org>2003-04-06 08:38:51 +0000
commit363fe73f3b5271dd027f3250d10785fb500f87a7 (patch)
treee28ff1c03ab714ea34a1a2dc1fb92088d41f7ae6 /media-gfx
parentppc sparc alpha moved to stable. (diff)
downloadgentoo-2-363fe73f3b5271dd027f3250d10785fb500f87a7.tar.gz
gentoo-2-363fe73f3b5271dd027f3250d10785fb500f87a7.tar.bz2
gentoo-2-363fe73f3b5271dd027f3250d10785fb500f87a7.zip
housekeeping.
Diffstat (limited to 'media-gfx')
-rw-r--r--media-gfx/igal/files/digest-igal-1.31
-rw-r--r--media-gfx/igal/files/igal-1.3-gentoo.diff49
-rw-r--r--media-gfx/igal/igal-1.3.ebuild37
3 files changed, 0 insertions, 87 deletions
diff --git a/media-gfx/igal/files/digest-igal-1.3 b/media-gfx/igal/files/digest-igal-1.3
deleted file mode 100644
index 7cd821e55258..000000000000
--- a/media-gfx/igal/files/digest-igal-1.3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 dceec90c328e76889b3b741fbeeb1309 igal-1.3.tar.gz 19453
diff --git a/media-gfx/igal/files/igal-1.3-gentoo.diff b/media-gfx/igal/files/igal-1.3-gentoo.diff
deleted file mode 100644
index 58f78687cd43..000000000000
--- a/media-gfx/igal/files/igal-1.3-gentoo.diff
+++ /dev/null
@@ -1,49 +0,0 @@
---- igal-1.3/indextemplate.html.orig 2001-09-03 19:26:32.000000000 -0400
-+++ igal-1.3/indextemplate.html 2002-10-23 20:09:40.000000000 -0400
-@@ -17,7 +17,7 @@
- </center>
-
- <p><font size="-1">created with
--<a href="http://www.stanford.edu/~epop/igal">igal</a></font>
-+<a href="http://www.stanford.edu/~epop/igal">igal</a> on <a href="http://www.gentoo.org">gentoo linux</a></font>
- </font>
-
- </body>
---- igal-1.3/Makefile.orig 2002-10-23 20:23:18.000000000 -0400
-+++ igal-1.3/Makefile 2002-10-23 20:42:33.000000000 -0400
-@@ -1,11 +1,14 @@
- ############################################################################
- # if you change this, please also modify the value on the 8th line of igal
--DESTDIR=/usr/local
-+DESTDIR=/usr
- ############################################################################
-
- BINDIR=$(DESTDIR)/bin
--MANDIR=$(DESTDIR)/man/man1
--LIBDIR=$(DESTDIR)/lib/igal
-+MANDIR=$(DESTDIR)/share/man/man1
-+LIBDIR=$(DESTDIR)/share/igal/lib
-+
-+default::
-+
-
- clean::
- rm -rf $(LIBDIR)
---- igal-1.3/igal.orig 2002-10-23 20:19:53.000000000 -0400
-+++ igal-1.3/igal 2002-10-23 20:35:19.000000000 -0400
-@@ -5,13 +5,13 @@
- ############################################################################
- # please change this accordingly if you change the DESTDIR in the tarball
- # distribution Makefile or the --prefix of the RPM installation
--$LIBDIR = "/usr/local/lib/igal";
-+$LIBDIR = "/usr/share/igal/lib";
- # for example if you make DESTDIR=/usr then $LIBDIR="/usr/lib/igal"
- ############################################################################
- # if you KNOW you have the ImageMagick package installed (e.g commands like
- # identify and mogrify) then setting this equal to 1 may speed up the code a
- # bit (igal will stop checking for these commands every time it runs)
--$haveim = 0;
-+$haveim = 1;
- ############################################################################
- # if you KNOW you have the libjpeg stuff installed (e.g commands like cjpeg,
- # djpeg and pnmscale) then setting this equal to 1 may speed up the code a
diff --git a/media-gfx/igal/igal-1.3.ebuild b/media-gfx/igal/igal-1.3.ebuild
deleted file mode 100644
index e38648c2fd3e..000000000000
--- a/media-gfx/igal/igal-1.3.ebuild
+++ /dev/null
@@ -1,37 +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-gfx/igal/igal-1.3.ebuild,v 1.5 2003/03/11 21:11:46 seemant Exp $
-
-S="${WORKDIR}/${P}"
-DESCRIPTION="Static HTML image gallery generator"
-HOMEPAGE="http://www.stanford.edu/~epop/igal/"
-SRC_URI="http://www.stanford.edu/~epop/igal/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 ~ppc ~sparc ~alpha"
-
-RDEPEND="dev-lang/perl
- media-gfx/imagemagick"
-
-src_unpack(){
- unpack ${P}.tar.gz
- patch -p0 < ${FILESDIR}/${P}-gentoo.diff
-}
-
-src_compile(){
- make || die
-}
-
-src_install(){
- dodir /usr/share/igal/lib
- insinto /usr/share/igal/lib
- doins indextemplate.html
- doins slidetemplate.html
- doins tile.gif
- into /usr
- dobin igal
- doman igal.1
- dodoc ChangeLog COPYING README
-}
-