diff --git a/v2/debian/boost-build.docs b/v2/debian/boost-build.docs new file mode 100644 index 000000000..f35cf8017 --- /dev/null +++ b/v2/debian/boost-build.docs @@ -0,0 +1,4 @@ +boost_build_v2.html +index_v2.html +c++boost.gif +doc \ No newline at end of file diff --git a/v2/debian/boost-build.examples b/v2/debian/boost-build.examples new file mode 100644 index 000000000..e5a7b8d3b --- /dev/null +++ b/v2/debian/boost-build.examples @@ -0,0 +1 @@ +example/* \ No newline at end of file diff --git a/v2/debian/changelog b/v2/debian/changelog new file mode 100644 index 000000000..c60d790ad --- /dev/null +++ b/v2/debian/changelog @@ -0,0 +1,6 @@ +boost-build (2.0.m11-1) unstable; urgency=low + + * Initial Release. + + -- Vladimir Prus Wed, 14 Aug 2002 14:08:00 +0400 + diff --git a/v2/debian/conffiles b/v2/debian/conffiles new file mode 100644 index 000000000..291d688ed --- /dev/null +++ b/v2/debian/conffiles @@ -0,0 +1 @@ +/etc/site-config.jam diff --git a/v2/debian/control b/v2/debian/control new file mode 100644 index 000000000..7d1733e78 --- /dev/null +++ b/v2/debian/control @@ -0,0 +1,13 @@ +Source: boost-build +Section: devel +Priority: optional +Maintainer: Vladimir Prus +Build-Depends: debhelper (>> 3.0.0), docbook-to-man, bison +Standards-Version: 3.5.2 + +Package: boost-build +Architecture: all +Depends: ${shlibs:Depends}, bjam (>> 3.1.9-1) +Description: Build system + Boost.Build is a build system with a simple and high-level language. + It supports build variants, and several different compilers and tools. diff --git a/v2/debian/copyright b/v2/debian/copyright new file mode 100644 index 000000000..e69de29bb diff --git a/v2/debian/excludes b/v2/debian/excludes new file mode 100644 index 000000000..39fe890ad --- /dev/null +++ b/v2/debian/excludes @@ -0,0 +1,14 @@ +boost.css +boost_build_v2.html +index_v2.html +c++boost.gif +generators_prototype.py +hacking.txt +release_procedure.txt +site-config.jam +roll.sh +debian +doc +example +test +CVS \ No newline at end of file diff --git a/v2/debian/rules b/v2/debian/rules new file mode 100755 index 000000000..3cb74b175 --- /dev/null +++ b/v2/debian/rules @@ -0,0 +1,56 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# This file is public domain software, originally written by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: +clean: +binary-arch: + +binary-indep: + dh_testdir + dh_testroot + + dh_clean -k + dh_installdirs usr/share/boost-build etc + + # Add here commands to install the package into debian/ + (tar --exclude-from debian/excludes -cpf - * ) | (cd `pwd`/debian/tmp/usr/share/boost-build && tar xpf - ) + chmod a-x -R `pwd`/debian/tmp/usr/share/boost-build + + dh_installchangelogs + dh_installdocs -XCVS + mv `pwd`/debian/tmp/usr/share/doc/boost-build/index_v2.html `pwd`/debian/tmp/usr/share/doc/boost-build/index.html + + (tar --exclude make --exclude CVS -cpf - example/* ) | ( cd `pwd`/debian/tmp/usr/share/doc/boost-build && tar xpf - ) + + sed 's/# using gcc/using gcc/' user-config.jam > `pwd`/debian/tmp/etc/site-config.jam + +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installcatalogs +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo +# dh_undocumented + dh_installman + dh_link + dh_compress + dh_fixperms +# dh_perl +# dh_python +# dh_makeshlibs + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install