1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
#!/usr/bin/make -f
# Sample debian.rules file - for GNU Hello (1.3).
# Copyright 1994,1995 by Ian Jackson.
# I hereby give you perpetual unlimited permission to copy,
# modify and relicense this file, provided that you do not remove
# my name from the file itself. (I assert my moral right of
# paternity under the Copyright, Designs and Patents Act 1988.)
# This file may have to be extensively modified
#
# Modified to be a prototype for debmake by Christoph Lameter <clameter@debian.org>
SHELL=/bin/bash
export DH_COMPAT=3
package=openssl
# For generating the manpages
export VERSION=$(shell dpkg-parsechangelog | grep '^Version:' | sed -e 's/^.*://' -e 's/-.*//')
# The binary architeture
DEB_HOST_ARCH = $(shell dpkg-architecture -qDEB_HOST_ARCH)
CONFARGS = --prefix=/usr --openssldir=/usr/lib/ssl no-idea no-mdc2 no-rc5 zlib
OPT_alpha = ev4 ev5
OPT_i386 = i486 i586 i686/cmov
OPT_sparc = v8 v9
ARCHOPTS = OPT_$(DEB_HOST_ARCH)
OPTS = $($(ARCHOPTS))
WANTED_LIBC_VERSION = 2.3.1-10
build:
dh_testdir
perl util/perlpath.pl /usr/bin
# perl util/ssldir.pl /usr/lib/ssl
# chmod +x debian/libtool
./Configure no-shared $(CONFARGS) debian-$(DEB_HOST_ARCH)
make -f Makefile all
make test
mv libcrypto.a libcrypto.static
mv libssl.a libssl.static
make -f Makefile clean
test -z "$(OPTS)" || for opt in $(OPTS); \
do \
set -xe; \
./Configure shared $(CONFARGS) debian-$(DEB_HOST_ARCH)-$$opt; \
make -f Makefile all; \
make test; \
mkdir -p $$opt; \
mv libcrypto.so* libssl.so* $$opt/; \
make -f Makefile clean; \
done
./Configure shared $(CONFARGS) debian-$(DEB_HOST_ARCH)
#make -f Makefile depend
ln -sf apps/openssl.pod crypto/crypto.pod ssl/ssl.pod doc/
# make -f Makefile linux-shared
make -f Makefile all
make test
# strip apps/openssl
# make -f Makefile clean
# ./Configure --prefix=/usr --openssldir=/usr/lib/ssl no-idea no-mdc2 no-rc5 debian-$(DEB_HOST_ARCH)
# make -f Makefile all
touch build
clean:
dh_testdir
dh_testroot
-rm -f build
-perl util/perlpath.pl /usr/bin
-./Configure $(CONFARGS) debian-$(DEB_HOST_ARCH)
-make -f Makefile clean clean-shared
#-make -f Makefile dclean
-perl util/perlpath.pl /usr/local/bin/perl
# perl util/ssldir.pl /usr/local/ssl
-rm -f test/.rnd test/testkey.pem test/testreq.pem test/certCA.srl
-rm -f util/mk1mf.bak Makefile.bak `find . -name Makefile.save`
-rm -f crypto/pem/ctx_size
-rm -f `find . -name "*~"`
-rm -f `find . -name "*.orig" -o -name "*.rej"`
-rm -f certs/*.0 certs/*.1
# -rm -rf debian/tmp debian/files* core `find debian/* -type d`
-rm -rf core $(OPTS)
-rm doc/*.pod
-rm -f libcrypto.* libssl.*
-cd test && rm -f .rnd tmp.bntest tmp.bctest *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bntest ectest ecdsatest ecdhtest ideatest md2test md4test md5test hmactest rc2test rc4test rc5test destest shatest sha1test sha256t sha512t mdc2test rmdtest randtest dhtest enginetest bftest casttest ssltest exptest dsatest rsa_test evp_test *.ss *.srl log dummytest newkey.pem
dh_clean
binary-indep: build
dh_testdir
dh_testroot
# There are no architecture-independent files to be uploaded
# generated by this package. If there were any they would be
# made here.
binary-arch: build
dh_testdir
dh_testroot
dh_clean
# -rm -rf debian/tmp `find debian/* -type d`
install -d debian/tmp debian/libssl0.9.8 debian/libssl-dev
# cd debian/tmp && install -d `cat ../dirs`
# cd debian/libssl09 && install -d `cat ../libssl09.dirs`
# cd debian/libssl09-dev && install -d `cat ../libssl09-dev.dirs`
dh_installdirs
#openssl install
make -f Makefile install INSTALL_PREFIX=`pwd`/debian/tmp
# rm debian/tmp/usr/share/man/man1/openssl.1
# rm debian/tmp/usr/share/man/man3/crypto.3
# rm debian/tmp/usr/share/man/man3/ssl.3
# rm debian/tmp/usr/lib/libcrypto.a
# rm debian/tmp/usr/lib/libssl.a
# pic static libraries, nobody should need them
# mv debian/tmp/usr/lib/libcrypto.a debian/tmp/usr/lib/libcrypto_pic.a
# mv debian/tmp/usr/lib/libssl.a debian/tmp/usr/lib/libssl_pic.a
cp -pf libcrypto.static debian/tmp/usr/lib/libcrypto.a
cp -pf libssl.static debian/tmp/usr/lib/libssl.a
# mv debian/tmp/usr/lib/ssl/bin debian/tmp/usr/bin/ssl
# (cd debian/tmp/usr/lib/ssl; ln -s /usr/bin/ssl bin)
# mv debian/tmp/usr/lib/ssl/include debian/tmp/usr/include/ssl
# (cd debian/tmp/usr/lib/ssl; ln -s /usr/include/ssl include)
# chmod -x debian/tmp/usr/lib/*.so.*
# mv debian/tmp/usr/lib/*.a debian/libssl09-dev/usr/lib/
# mv debian/tmp/usr/lib/*.so debian/libssl09-dev/usr/lib/
# mv debian/tmp/usr/lib/*.so.*.*.* debian/libssl09/usr/lib/
# mv debian/tmp/usr/lib/*.la debian/libssl09-dev/usr/lib/
# mv debian/tmp/usr/include debian/libssl09-dev/usr/
mkdir -p debian/tmp/etc/ssl
mv debian/tmp/usr/lib/ssl/{certs,openssl.cnf,private} debian/tmp/etc/ssl/
ln -s /etc/ssl/{certs,openssl.cnf,private} debian/tmp/usr/lib/ssl/
cp -pf debian/tmp/usr/lib/libcrypto.so.* debian/libcrypto0.9.8-udeb/usr/lib/
cp -auv lib*.so* debian/tmp/usr/lib/
# cp -auv lib*.a debian/tmp/usr/lib/
for opt in $(OPTS); do set -xe; mkdir -p debian/tmp/usr/lib/$$opt; cp -auv $$opt/lib*.so* debian/tmp/usr/lib/$$opt/; done
install debian/copyright debian/libssl0.9.8/usr/share/doc/libssl0.9.8/
install debian/changelog debian/libssl0.9.8/usr/share/doc/libssl0.9.8/changelog.Debian
install debian/copyright debian/libssl-dev/usr/share/doc/libssl-dev/
install debian/changelog debian/libssl-dev/usr/share/doc/libssl-dev/changelog.Debian
# (cd debian/tmp/usr/doc/openssl/doc; for f in *.doc*; do mv "$$f" "$$(echo $$f | sed -e 's/doc/txt/')";done)
# (cd doc; for f in *; do install "$$f" ../debian/tmp/usr/share/doc/openssl/doc/"$$(echo $$f | sed -e 's/doc/txt/')";done)
# debstd -u CHANGES* LICENSE README NEWS
dh_installdocs CHANGES.SSLeay README NEWS debian/README.optimization
dh_installexamples
dh_installchangelogs CHANGES
# dh_installmenu
# dh_installcron
dh_installman -popenssl
dh_installdebconf
# dh_undocumented c_rehash.1
dh_movefiles
# rmdir debian/tmp/usr/lib/ssl/lib
# rmdir debian/tmp/usr/include/openssl
# rmdir debian/tmp/usr/include
# for opt in $(OPTS); do set -xe; rm -fr debian/tmp/usr/lib/$$opt; done
dh_compress
chmod 700 debian/openssl/etc/ssl/private
dh_fixperms -X etc/ssl/private
dh_strip --dbg-package=libssl0.9.8
dh_perl -d
# dh_suidregister
dh_makeshlibs -V "libssl0.9.8 (>= 0.9.8c-1)" --add-udeb="libcrypto0.9.8-udeb"
dh_shlibdeps -L libssl0.9.8 -l debian/libssl0.9.8/usr/lib
dh_gencontrol
dh_installdeb
dh_md5sums
dh_builddeb
echo -en "\a"
# Below here is fairly generic really
binary: binary-indep binary-arch
source diff:
@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
.PHONY: binary binary-arch binary-indep clean
|