From 78a1b40496486cfe94fada65767259a19f0ac467 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 3 Sep 2008 15:04:54 +0200 Subject: [PATCH] Added a indexdata-build Debian package Added sub directory indexdata-build which includes files for a new Debian package 'indexdata-build' which installs all the tools needed to work with our C/C++ based software straight from SCM (Git/SCM). --- indexdata-build/.gitignore | 2 + indexdata-build/debian/.gitignore | 2 + indexdata-build/debian/README | 6 +++ indexdata-build/debian/changelog | 5 +++ indexdata-build/debian/compat | 1 + indexdata-build/debian/control | 15 +++++++ indexdata-build/debian/copyright | 35 +++++++++++++++ indexdata-build/debian/rules | 90 +++++++++++++++++++++++++++++++++++++ 8 files changed, 156 insertions(+) create mode 100644 indexdata-build/.gitignore create mode 100644 indexdata-build/debian/.gitignore create mode 100644 indexdata-build/debian/README create mode 100644 indexdata-build/debian/changelog create mode 100644 indexdata-build/debian/compat create mode 100644 indexdata-build/debian/control create mode 100644 indexdata-build/debian/copyright create mode 100755 indexdata-build/debian/rules diff --git a/indexdata-build/.gitignore b/indexdata-build/.gitignore new file mode 100644 index 0000000..99ee691 --- /dev/null +++ b/indexdata-build/.gitignore @@ -0,0 +1,2 @@ +build-stamp +configure-stamp diff --git a/indexdata-build/debian/.gitignore b/indexdata-build/debian/.gitignore new file mode 100644 index 0000000..59f2b16 --- /dev/null +++ b/indexdata-build/debian/.gitignore @@ -0,0 +1,2 @@ +files +indexdata-build diff --git a/indexdata-build/debian/README b/indexdata-build/debian/README new file mode 100644 index 0000000..b4b64e0 --- /dev/null +++ b/indexdata-build/debian/README @@ -0,0 +1,6 @@ +The Debian Package indexdata-build +---------------------------------- + +Comments regarding the Package + + -- Adam Dickmeiss Wed, 03 Sep 2008 14:35:38 +0200 diff --git a/indexdata-build/debian/changelog b/indexdata-build/debian/changelog new file mode 100644 index 0000000..c0c86f0 --- /dev/null +++ b/indexdata-build/debian/changelog @@ -0,0 +1,5 @@ +indexdata-build (1.0) unstable; urgency=low + + * Initial Release. + + -- Adam Dickmeiss Wed, 03 Sep 2008 14:35:38 +0200 diff --git a/indexdata-build/debian/compat b/indexdata-build/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/indexdata-build/debian/compat @@ -0,0 +1 @@ +5 diff --git a/indexdata-build/debian/control b/indexdata-build/debian/control new file mode 100644 index 0000000..bac9573 --- /dev/null +++ b/indexdata-build/debian/control @@ -0,0 +1,15 @@ +Source: indexdata-build +Priority: extra +Maintainer: Adam Dickmeiss +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: indexdata-build +Architecture: all +Depends: build-essential, libtool, automake, bison, tclsh, git-core, + libxslt1-dev, libxml2-utils, xsltproc, libicu36-dev|libicu-dev, + libgnutls-dev, docbook-xml, docbook-xsl, libreadline5-dev, pkg-config +Description: building tools for Index Data software + + This package includes packages necessary for building Index Data + software from SCM such as Git or CVS. diff --git a/indexdata-build/debian/copyright b/indexdata-build/debian/copyright new file mode 100644 index 0000000..603113e --- /dev/null +++ b/indexdata-build/debian/copyright @@ -0,0 +1,35 @@ +This package was debianized by Adam Dickmeiss on +Wed, 03 Sep 2008 14:35:38 +0200. + +It was downloaded from http://ftp.indexdata.com/pub/indexdata-build/ + +Upstream Author(s): + + Adam Dickmeiss + +Copyright: + + Copyright (C) 2008, Index Data + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2008, Index Data and +is licensed under the GPL, see above. + diff --git a/indexdata-build/debian/rules b/indexdata-build/debian/rules new file mode 100755 index 0000000..0673aa7 --- /dev/null +++ b/indexdata-build/debian/rules @@ -0,0 +1,90 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + + + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + # $(MAKE) + #docbook-to-man debian/indexdata-build.sgml > indexdata-build.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + # -$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/indexdata-build. + # $(MAKE) DESTDIR=$(CURDIR)/debian/indexdata-essential install + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo +# dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure -- 1.7.10.4