2010-06-14 08:35:07 +02:00
|
|
|
#!/bin/sh
|
2011-07-28 06:53:55 +02:00
|
|
|
|
2010-06-14 08:35:07 +02:00
|
|
|
# Slackware build script for nginx
|
2011-07-28 06:53:55 +02:00
|
|
|
|
2010-06-14 08:35:07 +02:00
|
|
|
# Copyright 2008 Cherife Li <cherife-#-dotimes.com>
|
2012-07-10 15:37:56 +02:00
|
|
|
# Copyright 2011 Diogo Leal <diogo@diogoleal.com>
|
|
|
|
# Copyright 2012 Francisco Ambrozio <developer@franciscoambrozio.com>
|
2010-06-14 08:35:07 +02:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use of this script, with or without modification, is
|
|
|
|
# permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
PRGNAM=nginx
|
2012-07-10 15:37:56 +02:00
|
|
|
VERSION=${VERSION:-1.2.2}
|
2010-06-14 08:35:07 +02:00
|
|
|
BUILD=${BUILD:-1}
|
|
|
|
TAG=${TAG:-_SBo}
|
|
|
|
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
|
|
|
i?86) ARCH=i486 ;;
|
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
|
|
|
CWD=$(pwd)
|
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
|
|
|
eval $(perl '-V:installvendorlib')
|
|
|
|
|
|
|
|
if [ "$ARCH" = "i486" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
|
|
LIBDIRSUFFIX="64"
|
|
|
|
else
|
|
|
|
SLKCFLAGS=""
|
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
fi
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
|
|
|
rm -rf $PRGNAM-$VERSION
|
|
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
|
|
|
cd $PRGNAM-$VERSION
|
|
|
|
chown -R root:root .
|
|
|
|
find . \
|
|
|
|
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
|
|
|
-exec chmod 755 {} \; -o \
|
|
|
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
|
|
|
-exec chmod 644 {} \;
|
|
|
|
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
CXXFLAGS="$SLKCFLAGS" \
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sbin-path=/usr/sbin/nginx \
|
|
|
|
--conf-path=/etc/nginx/nginx.conf \
|
|
|
|
--pid-path=/var/run/nginx.pid \
|
|
|
|
--lock-path=/var/lock/nginx \
|
2011-11-12 20:37:31 +01:00
|
|
|
--user=${NGINXUSER:=nobody} \
|
|
|
|
--group=${NGINXGROUP:=nogroup} \
|
2010-06-14 08:35:07 +02:00
|
|
|
--error-log-path=/var/log/nginx/error.log \
|
|
|
|
--http-log-path=/var/log/nginx/access.log \
|
|
|
|
--with-rtsig_module \
|
|
|
|
--with-select_module \
|
|
|
|
--with-poll_module \
|
|
|
|
--with-http_ssl_module \
|
|
|
|
--with-http_realip_module \
|
|
|
|
--with-http_addition_module \
|
|
|
|
--with-http_xslt_module \
|
|
|
|
--with-http_sub_module \
|
|
|
|
--with-http_dav_module \
|
|
|
|
--with-http_flv_module \
|
|
|
|
--with-http_gzip_static_module \
|
|
|
|
--with-http_random_index_module \
|
|
|
|
--with-http_secure_link_module \
|
|
|
|
--with-http_stub_status_module \
|
|
|
|
--with-http_perl_module \
|
|
|
|
--with-perl_modules_path=$installvendorlib \
|
|
|
|
--http-client-body-temp-path=/var/tmp/nginx_client_body_temp \
|
|
|
|
--http-proxy-temp-path=/var/tmp/nginx_proxy_temp \
|
|
|
|
--http-fastcgi-temp-path=/dev/shm \
|
|
|
|
--without-mail_pop3_module \
|
|
|
|
--without-mail_imap_module \
|
2010-08-14 20:36:12 +02:00
|
|
|
--without-mail_smtp_module
|
2010-06-14 08:35:07 +02:00
|
|
|
|
2010-08-14 20:36:12 +02:00
|
|
|
make
|
2010-06-14 08:35:07 +02:00
|
|
|
make install DESTDIR=$PKG
|
|
|
|
|
2011-11-12 20:37:31 +01:00
|
|
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | \
|
|
|
|
grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
2010-06-14 08:35:07 +02:00
|
|
|
find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | \
|
|
|
|
xargs rm -f 2> /dev/null
|
|
|
|
find $PKG -perm 444 -exec chmod 0644 {} \;
|
|
|
|
find $PKG -perm 555 -exec chmod 0755 {} \;
|
|
|
|
|
|
|
|
# Remove some other empty and/or unnecessary directories from the package
|
|
|
|
eval $(perl '-V:archlib')
|
|
|
|
rm -rf $PKG/$archlib $PKG/usr/html $PKG/var
|
|
|
|
|
|
|
|
# Add an init script
|
|
|
|
mkdir -p $PKG/etc/rc.d
|
|
|
|
cat $CWD/rc.nginx > $PKG/etc/rc.d/rc.nginx.new
|
|
|
|
|
|
|
|
mkdir -p $PKG/etc/logrotate.d
|
|
|
|
cat $CWD/nginx.logrotate > $PKG/etc/logrotate.d/nginx.new
|
|
|
|
|
2011-11-12 20:37:31 +01:00
|
|
|
# Don't clobber config files
|
|
|
|
for file in fastcgi_params fastcgi.conf mime.types nginx.conf \
|
|
|
|
koi-utf koi-win scgi_params uwsgi_params win-utf ; do
|
|
|
|
mv $PKG/etc/nginx/$file $PKG/etc/nginx/$file.new ;
|
|
|
|
done
|
|
|
|
|
|
|
|
# Create the log dir and set the permissions
|
|
|
|
mkdir -p $PKG/var/log/nginx
|
2012-07-10 15:37:56 +02:00
|
|
|
chown $NGINXUSER $PKG/var/log/nginx
|
2011-11-12 20:37:31 +01:00
|
|
|
chmod 750 $PKG/var/log/nginx
|
|
|
|
|
2010-06-14 08:35:07 +02:00
|
|
|
mkdir -p $PKG/usr/doc/nginx-$VERSION
|
2011-11-12 20:37:31 +01:00
|
|
|
cp -a CHANGES* LICENSE README $PKG/usr/doc/nginx-$VERSION
|
2010-06-14 08:35:07 +02:00
|
|
|
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
|
|
|
|
|
|
|
|
cd $PKG
|
2011-06-24 02:52:56 +02:00
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|