2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 00:52:16 +00:00

Add files needed for Debian package.

[SVN r21304]
This commit is contained in:
Vladimir Prus
2003-12-17 14:32:14 +00:00
parent 567344e3eb
commit 03363af75e
8 changed files with 95 additions and 0 deletions

View File

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

View File

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

6
v2/debian/changelog Normal file
View File

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

1
v2/debian/conffiles Normal file
View File

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

13
v2/debian/control Normal file
View File

@@ -0,0 +1,13 @@
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
v2/debian/copyright Normal file
View File

14
v2/debian/excludes Normal file
View File

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

56
v2/debian/rules Executable file
View File

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