blob: 1e2c36b71153387547dab976ddc86273af55eecb (
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
|
SECTION = "apps"
DESCRIPTION = "The Gallery v1 web image gallery"
LICENSE = "GPL"
#
RDEPENDS = "apache2 modphp imagemagick jhead"
PR = "r1"
S = "${WORKDIR}/gallery"
HTTPCONF=/etc/apache2/httpd.conf
DEST_DIR=/usr/share/apache2/htdocs/
#
# don't list the albums as a file - it might get auto-deleted
#
FILES_${PN} = "${DEST_DIR}/gallery /etc/apache2/modules.d"
SRC_URI = "http://easynews.dl.sourceforge.net/sourceforge/gallery/gallery-${PV}-pl1.tar.gz"
inherit autotools
# No configure step for gallery
do_configure() {
:
}
# No compile step either
do_compile() {
:
}
#
do_install() {
mkdir -p ${D}/${DEST_DIR} ${D}/etc/apache2/modules.d
cp -a ${S} ${D}/${DEST_DIR}
cp ${FILESDIR}/gallery.conf ${D}/etc/apache2/modules.d/95_gallery.conf
}
# remove the gallery code, but not the albums!
pkg_postrm_${PN}() {
rm -rf ${DEST_DIR}/gallery /etc/apache2/modules.d/95_gallery.conf
}
|