diff options
author | Max Miorim <miorimmax@gmail.com> | 2010-08-14 13:36:12 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-08-14 19:04:51 -0500 |
commit | 1d255a2e6464b23b04f01f104383b13853c792b2 (patch) | |
tree | 8ea6c72db89561a3e02c01a06166f7ac2d0c6379 /network/nginx | |
parent | 49d1cc42e237f318b192cdc26c1074124cc92150 (diff) |
network/nginx: Updated for version 0.7.67.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'network/nginx')
-rw-r--r-- | network/nginx/0.7.67-fix_perl_man_path.patch (renamed from network/nginx/0.7.65-fix_perl_man_path.patch) | 0 | ||||
-rw-r--r-- | network/nginx/nginx.SlackBuild | 19 | ||||
-rw-r--r-- | network/nginx/nginx.info | 6 |
3 files changed, 16 insertions, 9 deletions
diff --git a/network/nginx/0.7.65-fix_perl_man_path.patch b/network/nginx/0.7.67-fix_perl_man_path.patch index de546273634b..de546273634b 100644 --- a/network/nginx/0.7.65-fix_perl_man_path.patch +++ b/network/nginx/0.7.67-fix_perl_man_path.patch diff --git a/network/nginx/nginx.SlackBuild b/network/nginx/nginx.SlackBuild index 397a0d2bc20c..3b0a99250fad 100644 --- a/network/nginx/nginx.SlackBuild +++ b/network/nginx/nginx.SlackBuild @@ -25,16 +25,14 @@ # Modified by Max Miorim <miorimmax@gmail.com> PRGNAM=nginx -VERSION=${VERSION:-0.7.65} +VERSION=${VERSION:-0.7.67} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; -# Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -76,7 +74,7 @@ find . \ -exec chmod 644 {} \; # patch to install the perl man pages in /usr/man/man3 -patch -p1 --verbose < $CWD/0.7.65-fix_perl_man_path.patch +patch -p1 --verbose < $CWD/0.7.67-fix_perl_man_path.patch CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -111,9 +109,9 @@ CXXFLAGS="$SLKCFLAGS" \ --http-fastcgi-temp-path=/dev/shm \ --without-mail_pop3_module \ --without-mail_imap_module \ - --without-mail_smtp_module + --without-mail_smtp_module -make +make make install DESTDIR=$PKG find $PKG | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ @@ -145,6 +143,15 @@ cat $CWD/nginx.SlackBuild > $PKG/usr/doc/nginx-$VERSION/nginx.SlackBuild mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/doinst.sh > $PKG/install/doinst.sh +cat << EOF >> $PKG/install/doinst.sh + +# Create the log dir and set the permissions +if [ ! -d /var/log/nginx ]; then + mkdir -p /var/log/nginx + chown $NGINXUSER:$NGINXGROUP /var/log/nginx + chmod 750 /var/log/nginx +fi +EOF # Let's not clobber config files on upgrade ( cd $PKG/etc/nginx diff --git a/network/nginx/nginx.info b/network/nginx/nginx.info index 5e3175ac5e0c..0795f21eefd6 100644 --- a/network/nginx/nginx.info +++ b/network/nginx/nginx.info @@ -1,10 +1,10 @@ PRGNAM="nginx" -VERSION="0.7.65" +VERSION="0.7.67" HOMEPAGE="http://nginx.org/" -DOWNLOAD="http://nginx.org/download/nginx-0.7.65.tar.gz" +DOWNLOAD="http://nginx.org/download/nginx-0.7.67.tar.gz" MD5SUM="abc4f76af450eedeb063158bd963feaa" DOWNLOAD_x86_64="" MD5SUM_x86_64="" MAINTAINER="Max Miorim" EMAIL="miorimmax@gmail.com" -APPROVED="rworkman" +APPROVED="Erik Hanson" |