blob: 66f605d7c1a78f092544562224ee4070dc821b87 (
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
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-1.4.4_p2.ebuild,v 1.1 2004/08/27 16:53:53 mholzer Exp $
inherit webapp eutils
MY_P=${P/_p/-pl}
DESCRIPTION="Web based (PHP Script) photo album viewer/creator."
HOMEPAGE="http://gallery.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
IUSE=""
KEYWORDS="x86 ppc sparc alpha hppa ~amd64"
DEPEND="$DEPEND"
RDEPEND=">=net-www/apache-1.3.24-r1
>=dev-php/mod_php-4.1.2-r5
>=media-gfx/jhead-1.6
>=media-libs/netpbm-9.12
>=media-gfx/imagemagick-5.4.9.1-r1"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd ${S}
}
src_compile() {
:;
}
src_install() {
webapp_src_preinst
for file in AUTHORS ChangeLog README ChangeLog.archive.gz; do
dodoc ${file}
rm -f ${file}
done
cp -R . ${D}/${MY_HTDOCSDIR}
dodir ${MY_HTDOCSDIR}/albums
webapp_serverowned ${MY_HTDOCSDIR}/albums
dohtml docs/*
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
webapp_src_install
}
|