blob: 8df70ee0b9a9b05aa24b4d7fc438d62a65c1ec8b (
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
49
50
51
52
53
54
55
56
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/ids/ids-0.83_beta2.ebuild,v 1.3 2003/12/15 20:36:55 stuart Exp $
inherit webapp-apache
MY_P=${P/_beta/b}
DESCRIPTION="Web based (PHP Script) photo album viewer/creator."
HOMEPAGE="http://ids.sf.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="~x86"
RDEPEND=">=net-www/apache-1.3.27
dev-perl/Archive-Zip
>=dev-php/mod_php-4.1.3
dev-perl/ImageInfo
>=media-gfx/imagemagick-5.4.9.1-r1"
S=${WORKDIR}/${PN}
webapp-detect || NO_WEBSERVER=1
pkg_setup() {
webapp-pkg_setup "${NO_WEBSERVER}"
einfo "Installing into ${ROOT}${HTTPD_ROOT}."
}
src_install() {
webapp-mkdirs
local DocumentRoot=${HTTPD_ROOT}
local destdir=${DocumentRoot}/${PN}
dodir ${destdir}
#Do not remove docs as it will not work without
dodoc CREDITS ChangeLog PATCH.SUBMISSION README
cp -r . ${D}/${HTTPD_ROOT}/${PN}
cd ${D}/${HTTPD_ROOT}
chown -R ${HTTPD_USER}:${HTTPD_GROUP} ${PN}
# Fix permissions
find ${D}${destdir} -type d | xargs chmod 755
find ${D}${destdir} -type f | xargs chmod 644
}
pkg_postinst() {
einfo "to make this working you have to enable"
einfo "cgi in ${HTTPD_ROOT}/${PN}"
einfo
einfo "this could be done by a simple"
einfo " cd ${HTTPD_ROOT}/${PN}"
einfo " echo \"Options ExecCGI\" > .htaccess"
}
|