mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
development/mod_perl: Added to 12.0 repository
This commit is contained in:
parent
2eebab9920
commit
def24fc089
6 changed files with 154 additions and 0 deletions
10
development/mod_perl/README
Normal file
10
development/mod_perl/README
Normal file
|
@ -0,0 +1,10 @@
|
|||
Mod_perl incorporates a Perl interpreter into the Apache web server,
|
||||
so that the Apache web server can directly execute Perl code.
|
||||
Mod_perl links the Perl runtime library into the Apache web server and
|
||||
provides an object-oriented Perl interface for Apache's C language
|
||||
API. The end result is a quicker CGI script turnaround process, since
|
||||
no external Perl interpreter has to be started.
|
||||
|
||||
To tell Apache to load it, you'll have to put the following line
|
||||
somewhere into /etc/httpd/httpd.conf:
|
||||
Include /etc/httpd/mod_perl.conf
|
5
development/mod_perl/doinst.sh
Normal file
5
development/mod_perl/doinst.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
if [ ! -r etc/httpd/mod_perl.conf ]; then
|
||||
cat etc/httpd/mod_perl.conf.example > etc/httpd/mod_perl.conf
|
||||
elif [ "$(cat etc/httpd/mod_perl.conf 2> /dev/null)" = "" ]; then
|
||||
cat etc/httpd/mod_perl.conf.example > etc/httpd/mod_perl.conf
|
||||
fi
|
80
development/mod_perl/mod_perl.SlackBuild
Normal file
80
development/mod_perl/mod_perl.SlackBuild
Normal file
|
@ -0,0 +1,80 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for mod_perl
|
||||
# Written by ppr:kut <hmwiesinger@gmx.at>
|
||||
|
||||
# Copyright 2007 Heinz Wiesinger
|
||||
# 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=mod_perl
|
||||
VERSION=2.0.3
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xzf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
perl Makefile.PL MP_APXS=/usr/sbin/apxs
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
mkdir -p $PKG/etc/httpd
|
||||
cat $CWD/mod_perl.conf > $PKG/etc/httpd/mod_perl.conf.example
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a Changes INSTALL LICENSE README* RELEASE STATUS \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mv $PKG/usr/share/man $PKG/usr/man
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
rm -rf $PKG/usr/share
|
||||
( cd $PKG
|
||||
# Remove 'special' files
|
||||
find . -name perllocal.pod \
|
||||
-o -name ".packlist" \
|
||||
-o -name "*.bs" \
|
||||
| xargs rm -f
|
||||
# Remove empty directory
|
||||
rm -rf $PKG/usr/lib/perl5/5.8.8/
|
||||
)
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
32
development/mod_perl/mod_perl.conf
Normal file
32
development/mod_perl/mod_perl.conf
Normal file
|
@ -0,0 +1,32 @@
|
|||
#
|
||||
# mod_perl - Perl Interpreter for Apache2
|
||||
#
|
||||
|
||||
# Load the Perl module:
|
||||
LoadModule perl_module lib/httpd/modules/mod_perl.so
|
||||
|
||||
# Define the files mod-perl's responsible for
|
||||
AddHandler perl-script pl
|
||||
|
||||
# Set this if you want perl-scripts to be
|
||||
# executed from only one directory
|
||||
#Alias /perl/ /var/www/htdocs/perl/
|
||||
#<Location /perl/>
|
||||
# SetHandler perl-script
|
||||
# PerlResponseHandler ModPerl::Registry
|
||||
# PerlOptions +ParseHeaders
|
||||
# Options +ExecCGI
|
||||
# Order allow,deny
|
||||
# Allow from all
|
||||
#</Location>
|
||||
|
||||
# Set this if you want perl-scripts to be
|
||||
# executed from everywhere in the htdocs directory
|
||||
# (default)
|
||||
<Files *.pl>
|
||||
# mod_perl mode
|
||||
SetHandler perl-script
|
||||
PerlResponseHandler ModPerl::Registry
|
||||
PerlOptions +ParseHeaders
|
||||
Options +ExecCGI
|
||||
</Files>
|
8
development/mod_perl/mod_perl.info
Normal file
8
development/mod_perl/mod_perl.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="mod_perl"
|
||||
VERSION="2.0.3"
|
||||
HOMEPAGE="http://perl.apache.org/"
|
||||
DOWNLOAD="http://perl.apache.org/dist/mod_perl-2.0.3.tar.gz"
|
||||
MD5SUM="b40e2adf67c6be15a0041af1c67b6997"
|
||||
MAINTAINER="ppr:kut"
|
||||
EMAIL="HMWiesinger@gmx.at"
|
||||
APPROVED="rworkman"
|
19
development/mod_perl/slack-desc
Normal file
19
development/mod_perl/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
mod_perl: mod_perl (Perl Interpreter for Apache)
|
||||
mod_perl:
|
||||
mod_perl: Mod_perl incorporates a Perl interpreter into the Apache web server
|
||||
mod_perl: so that the Apache web server can directly execute Perl code.
|
||||
mod_perl: Mod_perl links the Perl runtime library into the Apache web server
|
||||
mod_perl: and provides an object-oriented Perl interface for Apache's C
|
||||
mod_perl: language API. The end result is a quicker CGI script turnaround
|
||||
mod_perl: process, since no external Perl interpreter has to be started.
|
||||
mod_perl:
|
||||
mod_perl: Homepage: http://perl.apache.org/
|
||||
mod_perl:
|
Loading…
Reference in a new issue