forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added makerpm by Samuel Liddicott <[email protected]>
- Loading branch information
Showing
1 changed file
with
173 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
#! /bin/sh | ||
|
||
# Based slightly on an original by John H Terpstra but not much left of his. | ||
# S Liddicott 1999 [email protected] | ||
|
||
PREFIX="php" | ||
TARDIR="`basename \`pwd\``" | ||
RELEASE=${1:-1} | ||
VERSION=${2:-`echo $TARDIR | sed "s/$PREFIX//g"`} | ||
|
||
if [ "$VERSION" = "" ] | ||
then cat <<"EOH" | ||
$PREFIX source needs to be installed in a folder that contains the version | ||
number, e.g. ${PREFIX}4 or ${PREFIX}4b2 | ||
EOH | ||
fi | ||
|
||
echo "Usage:" | ||
echo "$0 <release>" | ||
echo | ||
echo "e.g.:" | ||
echo "$0 2" | ||
echo -n "Building RPM version $VERSION, release: $RELEASE " | ||
sleep 1 ; echo -n . ; sleep 1 ; echo -n . ; sleep 1 ; echo -n . | ||
echo | ||
|
||
TAR=php$VERSION.tar.gz | ||
SPEC=php$VERSION.spec | ||
|
||
# write out the .spec file | ||
sed -e "s/PVERSION/$VERSION/g" \ | ||
-e "s/PRELEASE/$RELEASE/g" \ | ||
-e "s/TARDIR/$TARDIR/g" \ | ||
> $SPEC <<'EOF' | ||
Summary: PHP4b1 - a powerful scripting language for HTML | ||
Name: mod_php4 | ||
Version: PVERSION | ||
Release: PRELEASE | ||
Group: Networking/Daemons | ||
Source0: http://www.php.net/distributions/php%{PACKAGE_VERSION}.tar.gz | ||
#Source1: php3-manual.tar.gz | ||
Copyright: GPL | ||
BuildRoot: /tmp/php3-root | ||
Requires: webserver | ||
%description | ||
PHP3 is a powerful apache module that adds scripting and database connection | ||
capabilities to the apache server. This version includes the "php" binary | ||
for suExec and stand alone php scripts too. | ||
%prep | ||
%setup -q -n TARDIR | ||
#mkdir manual; cd manual && tar xzf $RPM_SOURCE_DIR/php3-manual.tar.gz | ||
chown -R root.root . | ||
./buildconf | ||
%build | ||
# first the standalone (why can't you build both at once?) | ||
# need to run this under sh or it breaks | ||
cd ext/wddx | ||
ln -s /usr/src/redhat/BUILD/apache_1.3.9/src/lib/expat-lite ./xml | ||
cd ../.. | ||
sh ./configure --prefix=/usr \ | ||
--without-gd \ | ||
--with-config-file-path=/usr/lib \ | ||
--enable-force-cgi-redirect \ | ||
--enable-debugger=yes \ | ||
--enable-safe-mode \ | ||
--with-exec-dir=/usr/bin \ | ||
--with-mysql=/usr \ | ||
--with-imap=/usr \ | ||
--with-pdflib=/usr \ | ||
--with-system-regex \ | ||
--enable-track-vars \ | ||
--with-ttf \ | ||
--with-zlib \ | ||
--with-xml=/usr/src/redhat/BUILD/apache_1.3.9/src/lib/expat-lite \ | ||
--with-wddx \ | ||
# ldap don't work | ||
# --with-ldap=/usr \ | ||
# system regex conflicts with apache_ssl for some reason | ||
make | ||
mv php php.keepme | ||
# then the apache module | ||
rm config.cache | ||
sh ./configure --prefix=/usr \ | ||
--without-gd \ | ||
--with-apxs=/usr/sbin/apxs \ | ||
--enable-versioning \ | ||
--with-config-file-path=/usr/lib \ | ||
--enable-debugger=yes \ | ||
--enable-safe-mode \ | ||
--with-exec-dir=/usr/bin \ | ||
--with-mysql=/usr \ | ||
--with-imap=/usr \ | ||
--with-pdflib=/usr \ | ||
--with-system-regex \ | ||
--enable-track-vars \ | ||
--with-ttf \ | ||
--with-zlib \ | ||
--with-xml=/usr/src/redhat/BUILD/apache_1.3.9/src/lib/expat-lite \ | ||
--with-wddx \ | ||
# ldap don't work | ||
# --with-ldap=/usr \ | ||
# system regex conflicts with apache_ssl for some reason | ||
make clean | ||
make | ||
# restore cgi version | ||
mv php.keepme php | ||
%install | ||
rm -rf $RPM_BUILD_ROOT | ||
mkdir -p $RPM_BUILD_ROOT/usr/lib/apache | ||
install -m 755 libphp4.so $RPM_BUILD_ROOT/usr/lib/apache | ||
mkdir -p $RPM_BUILD_ROOT/usr/bin | ||
install -m 755 php $RPM_BUILD_ROOT/usr/bin | ||
%clean | ||
rm -rf $RPM_BUILD_ROOT | ||
%changelog | ||
* Wed Jul 21 1999 Sam Liddicott <[email protected]> | ||
- added php4b1 and modified cgi building rules so it doesn't break module | ||
* Wed Mar 17 1999 Sam Liddicott <[email protected]> | ||
- Stuffed in 3.0.7 source tar and added "php" as a build destination | ||
* Mon Oct 12 1998 Cristian Gafton <[email protected]> | ||
- rebuild for apache 1.3.3 | ||
* Thu Oct 08 1998 Preston Brown <[email protected]> | ||
- updated to 3.0.5, fixes nasty bugs in 3.0.4. | ||
* Sun Sep 27 1998 Cristian Gafton <[email protected]> | ||
- updated to 3.0.4 and recompiled for apache 1.3.2 | ||
* Thu Sep 03 1998 Preston Brown <[email protected]> | ||
- improvements; builds with apache-devel package installed. | ||
* Tue Sep 01 1998 Preston Brown <[email protected]> | ||
- Made initial cut for PHP3. | ||
%files | ||
/usr/lib/apache/libphp4.so | ||
/usr/bin/php | ||
%doc TODO CODING_STANDARDS CREDITS ChangeLog LICENSE BUGS examples | ||
%doc manual/* | ||
EOF | ||
|
||
RPMDIR=/usr/src/redhat/RPMS | ||
SPECDIR=/usr/src/redhat/SPECS | ||
SRCDIR=/usr/src/redhat/SOURCES | ||
|
||
( | ||
make clean | ||
find . -name config.cache -exec rm -f '{}' | ||
cd .. | ||
tar czvf ${SRCDIR}/${TAR} $TARDIR ) | ||
|
||
cp -a $SPEC $SPECDIR/${SPEC} | ||
#cp -a *.patch $SRCDIR | ||
cd $SRCDIR | ||
chown -R root.root ${TAR} | ||
cd $SPECDIR | ||
rpm -ba -v ${SPEC} |