blob: b0e4ca47153c94dbd8d5941b351a947a0c540e7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# 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.4.ebuild,v 1.1 2003/03/16 05:53:46 absinthe 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.png
doins igal.css
into /usr
dobin igal
doman igal.1
dodoc ChangeLog COPYING README THANKS
}
|