diff --git a/debian/boost-build.docs b/debian/boost-build.docs deleted file mode 100644 index 70af14954..000000000 --- a/debian/boost-build.docs +++ /dev/null @@ -1,4 +0,0 @@ -boost_build_v2.html -index_v2.html -boost.png -doc \ No newline at end of file diff --git a/debian/boost-build.examples b/debian/boost-build.examples deleted file mode 100644 index e5a7b8d3b..000000000 --- a/debian/boost-build.examples +++ /dev/null @@ -1 +0,0 @@ -example/* \ No newline at end of file diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index bfc1f139c..000000000 --- a/debian/changelog +++ /dev/null @@ -1,6 +0,0 @@ -boost-build (2.0.m10-1) unstable; urgency=low - - * Initial Release. - - -- Vladimir Prus Wed, 14 Aug 2002 14:08:00 +0400 - diff --git a/debian/conffiles b/debian/conffiles deleted file mode 100644 index 291d688ed..000000000 --- a/debian/conffiles +++ /dev/null @@ -1 +0,0 @@ -/etc/site-config.jam diff --git a/debian/control b/debian/control deleted file mode 100644 index 7d1733e78..000000000 --- a/debian/control +++ /dev/null @@ -1,13 +0,0 @@ -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/debian/copyright b/debian/copyright deleted file mode 100644 index e69de29bb..000000000 diff --git a/debian/excludes b/debian/excludes deleted file mode 100644 index 59882930d..000000000 --- a/debian/excludes +++ /dev/null @@ -1,14 +0,0 @@ -boost.css -boost_build_v2.html -index_v2.html -boost.png -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/debian/rules b/debian/rules deleted file mode 100755 index 96ccc418b..000000000 --- a/debian/rules +++ /dev/null @@ -1,56 +0,0 @@ -#!/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