2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 12:42:11 +00:00

Remove Debian packaging.

It was not updated in years, and likely useless for anything.
This commit is contained in:
Vladimir Prus
2014-08-25 19:42:19 +04:00
parent fa46e4a700
commit 3f0283131d
8 changed files with 0 additions and 95 deletions

View File

@@ -1,4 +0,0 @@
boost_build_v2.html
index_v2.html
boost.png
doc

View File

@@ -1 +0,0 @@
example/*

6
debian/changelog vendored
View File

@@ -1,6 +0,0 @@
boost-build (2.0.m10-1) unstable; urgency=low
* Initial Release.
-- Vladimir Prus <ghost@cs.msu.su> Wed, 14 Aug 2002 14:08:00 +0400

1
debian/conffiles vendored
View File

@@ -1 +0,0 @@
/etc/site-config.jam

13
debian/control vendored
View File

@@ -1,13 +0,0 @@
Source: boost-build
Section: devel
Priority: optional
Maintainer: Vladimir Prus <ghost@cs.msu.su>
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.

0
debian/copyright vendored
View File

14
debian/excludes vendored
View File

@@ -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

56
debian/rules vendored
View File

@@ -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/<packagename>
(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