wok view apache/receipt @ rev 1473

Up mpfr (2.3.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 04 12:48:27 2008 +0000 (2008-10-04)
parents
children 295bc93ddcc2
line source
1 # SliTaz package receipt.
3 PACKAGE="apache"
4 VERSION="2.2.9"
5 CATEGORY="network"
6 SHORT_DESC="Secure, efficient and extensible HTTP server."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="httpd"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.apache.org/"
11 WGET_URL="${WEB_SITE}dist/$SOURCE/$TARBALL"
12 DEPENDS="apr-util apr"
13 BUILD_DEPENDS="apr-util-dev apr-dev"
14 CONFIG_FILES="/etc/apache /var/www"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ln -s $SOURCE-$VERSION $PACKAGE-$VERSION
20 cd $src
21 grep -q Slitaz config.layout || \
22 cat ../stuff/slitaz.layout >> config.layout
23 ./configure --mandir=/usr/share/man --enable-mods-shared=all \
24 --enable-layout=Slitaz $CONFIGURE_ARGS && \
25 make && make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share/apache $fs/etc/init.d $fs/etc/apache/conf.d
32 cp -a $_pkg/usr/share/apache/icons $fs/usr/share/apache
33 cp -a $_pkg/usr/share/apache/error $fs/usr/share/apache
34 cp -a $_pkg/usr/share/apache/modules $fs/usr/share/apache
35 cp -a $_pkg/usr/bin $fs/usr
36 rm -r $fs/usr/bin/apxs
37 cp -a $_pkg/etc $fs
38 cp -a $_pkg/var $fs
39 ln -s /usr/bin/apachectl $fs/etc/init.d/apache
40 sed -i -e 's|User daemon|User www|' -e 's|Group daemon|Group www|' \
41 -e 's|ServerAdmin you@example.com|ServerAdmin root@localhost|' \
42 $fs/etc/apache/httpd.conf
43 echo "Include /etc/apache/conf.d" >> $fs/etc/apache/httpd.conf
44 # Cook all packages based on apache
45 for i in $(cd $WOK; ls -d apache-*)
46 do
47 tazwok genpkg $i
48 done
49 }
51 # Pre and post install commands for Tazpkg.
52 # We stop the server by default in case of upgarde.
53 pre_install()
54 {
55 echo "Processing pre-install commands..."
56 [ -f /etc/init.d/$PACKAGE ] && /etc/init.d/$PACKAGE stop
57 }
59 post_install()
60 {
61 echo "Processing post-install commands..."
62 # Just in case.
63 chown www.www $1/var/log/$PACKAGE
64 /etc/init.d/$PACKAGE start
65 }
67 # Rules to clean extras dirs or files
68 clean_wok()
69 {
70 rm -rf $WOK/$PACKAGE/${PACKAGE}.${VERSION}
71 }