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 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# GNU copyright 1997 to 1999 by Joey Hess.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export QUILT_PATCHES := debian/patches
# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
version = 2.1.4
#cvsdate = 20071113
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
CFLAGS += -O2
endif
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
INSTALL_PROGRAM += -s
endif
TMPDIR=$(CURDIR)/debian/tmp
unpatch:
dh_testdir
quilt pop -a || test $$? = 2
rm -rf generic/haval-1.1
rm -rf patch-stamp .pc
clean: clean-patched unpatch
dh_testdir
dh_testroot
dh_clean
clean-patched: patch-stamp
dh_testdir
dh_testroot
rm -f build-stamp
# Add here commands to clean up after the build process.
[ ! -f Makefile ] || $(MAKE) distclean
rm -f test.setup
patch: patch-stamp
patch-stamp:
dh_testdir
quilt push -a || test $$? = 2
touch patch-stamp
config.status: configure patch-stamp
dh_testdir
# Add here commands to configure the package.
CFLAGS="$(CFLAGS) -DSSL_STATIC_BUILD=1 -D_XOPEN_SOURCE" \
SHLIB_SUFFIX=.so \
no_zlibtcl=true \
./configure \
--host=$(DEB_HOST_GNU_TYPE) \
--build=$(DEB_BUILD_GNU_TYPE) \
--prefix=/usr \
--mandir=\$${prefix}/share/man \
--infodir=\$${prefix}/share/info \
--with-tcl=/usr/lib \
--with-tclinclude=/usr/include/tcl \
--enable-static-zlib \
--enable-static-bzlib \
--enable-static-md5 \
--enable-threads
build: build-arch build-indep
build-arch: build-stamp
build-indep: build-stamp
build-stamp: config.status
dh_testdir
# Add here commands to compile the package.
$(MAKE) LIBS="-lz -lbz2 -lcrypt -lcrypto"
touch build-stamp
install: build-stamp
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs -a
# Add here commands to install the package into $(TMPDIR)
$(MAKE) install DESTDIR=$(TMPDIR)
install -m 755 -d $(TMPDIR)/usr/lib/tcltk
mv $(TMPDIR)/usr/lib/Trf* $(TMPDIR)/usr/lib/tcltk
mkdir -p $(TMPDIR)/usr/share/doc/html $(TMPDIR)/usr/share/doc/man
# Cleanup manpages
cd doc/man && \
for f in *.n ; do \
sed -e'/^\.so man.macros/ d' \
-e'/^\.BS/ d' \
-e'/^\.BE/ d' \
-e's/^\.TH \([^ ]\+\) n/.TH \1 3trf/' \
$$f >$(TMPDIR)/usr/share/doc/man/`basename $$f .n`.3trf || exit 1; \
done
# Cleanup docs
cd doc/html && \
for f in *.html ; do \
sed -e's/(n)/(3trf)/g' $$f >$(TMPDIR)/usr/share/doc/html/$$f || exit 1; \
done
# c2man is outdated and removed from Debian. So, a pregenerated manpages
# and HTML docs are used.
# A liitle hack to make c2man working
#cd generic && c2man -D__builtin_va_list=int -DBUFSIZ -I/usr/include/tcl -o../doc/capi/man -Tn transform.h
#cd generic && c2man -D__builtin_va_list=int -DBUFSIZ -I/usr/include/tcl -o../doc/capi/html -Th transform.h
# Generate documentation indices
tclsh debian/gen_index.tcl $(TMPDIR)/usr/share/doc/html doc/capi/html \
>$(TMPDIR)/usr/share/doc/html/index.html
# Build architecture-independent files here.
binary-indep: build install
dh_testdir -i
dh_testroot -i
dh_installchangelogs -i ChangeLog
dh_installdocs -i
dh_installexamples -i
dh_install -i
dh_installman -i
dh_link -i
dh_strip -i
dh_compress -i
dh_fixperms -i
dh_installdeb -i
dh_shlibdeps -i
tcltk-depends -i
dh_gencontrol -i
dh_md5sums -i
dh_builddeb -i
# Build architecture-dependent files here.
binary-arch: build install
dh_testdir -a
dh_testroot -a
dh_installchangelogs -a ChangeLog
dh_installdocs -a
dh_installexamples -a
dh_install -a
dh_installman -a
dh_link -a
dh_strip -a
dh_compress -a
dh_fixperms -a
dh_installdeb -a
dh_shlibdeps -a
tcltk-depends -a
dh_gencontrol -a
dh_md5sums -a
dh_builddeb -a
binary: binary-indep binary-arch
get-orig-source: get-orig-source-release
get-orig-source-release:
CURDIR=`pwd` && TMPDIR=`mktemp -d /tmp/tcltrf.XXXXXX` && \
cd $$TMPDIR && \
wget -O - http://heanet.dl.sourceforge.net/sourceforge/tcltrf/trf$(version).tar.gz | tar zx && \
rm -rfv trf$(version)/generic/haval \
trf$(version)/generic/haval.1996 \
trf$(version)/win/msvcrt.dll && \
tar -zcf $$CURDIR/tcltrf_$(version)-dfsg1.orig.tar.gz trf$(version) && \
rm -rf $$TMPDIR
get-orig-source-cvs:
CURDIR=`pwd` && \
TMPDIR=`mktemp -d /tmp/tcltrf.XXXXXX` && \
SCRDIR=`dirname $(MAKEFILE_LIST)` && \
expect $$SCRDIR/checkout \
:pserver:anonymous@tcltrf.cvs.sourceforge.net:/cvsroot/tcltrf \
trf \
$$TMPDIR "$(cvsdate)T23:59:59" && \
echo "Removing CVS stuff and non-free files" && \
find $$TMPDIR -name '*.orig' \
-o -name CVS \
-o -name msvcrt.dll \
-o -name mpexpand \
-o -name patches \
-o -name zlib.vc \
-o -name painless-guide-to-crc.txt \
-o -name haval \
-o -name haval.1996 \
-o -name mails | xargs rm -rvf && \
cd $$TMPDIR && \
tar -zcf $$CURDIR/tcltrf_$(version)$(cvsdate).orig.tar.gz . && \
rm -rf $$TMPDIR
.PHONY: patch unpatch clean-patched build build-arch build-indep clean binary-indep binary-arch binary install get-orig-source
|