Added a indexdata-build Debian package
authorAdam Dickmeiss <adam@indexdata.dk>
Wed, 3 Sep 2008 13:04:54 +0000 (15:04 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Wed, 3 Sep 2008 13:04:54 +0000 (15:04 +0200)
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 [new file with mode: 0644]
indexdata-build/debian/.gitignore [new file with mode: 0644]
indexdata-build/debian/README [new file with mode: 0644]
indexdata-build/debian/changelog [new file with mode: 0644]
indexdata-build/debian/compat [new file with mode: 0644]
indexdata-build/debian/control [new file with mode: 0644]
indexdata-build/debian/copyright [new file with mode: 0644]
indexdata-build/debian/rules [new file with mode: 0755]

diff --git a/indexdata-build/.gitignore b/indexdata-build/.gitignore
new file mode 100644 (file)
index 0000000..99ee691
--- /dev/null
@@ -0,0 +1,2 @@
+build-stamp
+configure-stamp
diff --git a/indexdata-build/debian/.gitignore b/indexdata-build/debian/.gitignore
new file mode 100644 (file)
index 0000000..59f2b16
--- /dev/null
@@ -0,0 +1,2 @@
+files
+indexdata-build
diff --git a/indexdata-build/debian/README b/indexdata-build/debian/README
new file mode 100644 (file)
index 0000000..b4b64e0
--- /dev/null
@@ -0,0 +1,6 @@
+The Debian Package indexdata-build
+----------------------------------
+
+Comments regarding the Package
+
+ -- Adam Dickmeiss <adam@indexdata.dk>  Wed, 03 Sep 2008 14:35:38 +0200
diff --git a/indexdata-build/debian/changelog b/indexdata-build/debian/changelog
new file mode 100644 (file)
index 0000000..c0c86f0
--- /dev/null
@@ -0,0 +1,5 @@
+indexdata-build (1.0) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Adam Dickmeiss <adam@indexdata.dk>  Wed, 03 Sep 2008 14:35:38 +0200
diff --git a/indexdata-build/debian/compat b/indexdata-build/debian/compat
new file mode 100644 (file)
index 0000000..7ed6ff8
--- /dev/null
@@ -0,0 +1 @@
+5
diff --git a/indexdata-build/debian/control b/indexdata-build/debian/control
new file mode 100644 (file)
index 0000000..bac9573
--- /dev/null
@@ -0,0 +1,15 @@
+Source: indexdata-build
+Priority: extra
+Maintainer: Adam Dickmeiss <adam@indexdata.dk>
+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
+ <insert long description, indented with spaces>
+ 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 (file)
index 0000000..603113e
--- /dev/null
@@ -0,0 +1,35 @@
+This package was debianized by Adam Dickmeiss <adam@indexdata.dk> 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 <adam@indexdata.dk>
+
+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 (executable)
index 0000000..0673aa7
--- /dev/null
@@ -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