From 48a11ace528fb15a0ea871bae71bae2a05dcfc46 Mon Sep 17 00:00:00 2001 From: Stephane Bortzmeyer Date: Wed, 12 Jul 2000 13:58:36 +0000 Subject: Initial revision --- debian/README.debian | 21 ++++++++++++++++ debian/changelog | 22 ++++++++++++++++ debian/control | 13 ++++++++++ debian/copyright | 8 ++++++ debian/dirs | 5 ++++ debian/docs | 1 + debian/rules | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 141 insertions(+) create mode 100644 debian/README.debian create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/dirs create mode 100644 debian/docs create mode 100755 debian/rules (limited to 'debian') diff --git a/debian/README.debian b/debian/README.debian new file mode 100644 index 0000000..e7538c7 --- /dev/null +++ b/debian/README.debian @@ -0,0 +1,21 @@ +java-common for DEBIAN +---------------------- + +To build this package, you will need the DocBook apparatus: + +jade +jadetex +docbook-xml +docbook-stylesheets +sp +lynx + +and the packages they depend on, like tetex-*. + + +Another layout of the Policy is there: + +http://www.debian.org/~bortz/Java/policy.html + + +Stephane Bortzmeyer , Wed, 23 Jun 1999 15:03:43 +0200 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..fafecd7 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,22 @@ +java-common (0.2) unstable; urgency=low + + * The policy is now included, and in XML form. Closes #42114 + + -- Stephane Bortzmeyer Thu, 2 Sep 1999 17:10:15 +0200 + +java-common (0.1) unstable; urgency=low + + * Proper versioning for a Debian-only package + + -- Stephane Bortzmeyer Mon, 28 Jun 1999 15:00:52 +0200 + +java-common (0.0-1) unstable; urgency=low + + * Initial Release. + + -- Stephane Bortzmeyer Wed, 23 Jun 1999 15:03:43 +0200 + +Local variables: +mode: debian-changelog +add-log-mailing-address: "bortzmeyer@debian.org" +End: diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..e246bdc --- /dev/null +++ b/debian/control @@ -0,0 +1,13 @@ +Source: java-common +Section: misc +Priority: optional +Maintainer: Stephane Bortzmeyer +Standards-Version: 2.4.0.0 + +Package: java-common +Architecture: all +Depends: +Description: Base of all Java packages + This package is mandatory for any Java package. It + includes the Java policy. + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..af3c0e9 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,8 @@ +It is a Debian original work. + +Upstream Author(s): Stephane Bortzmeyer + +Copyright: + +GPL. See /usr/doc/copyright/GPL. + diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..700a193 --- /dev/null +++ b/debian/dirs @@ -0,0 +1,5 @@ +usr/bin +usr/sbin +usr/share/java +usr/share/java/repository +usr/doc/java-common diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..6945508 --- /dev/null +++ b/debian/rules @@ -0,0 +1,71 @@ +#!/usr/bin/make -f +# MAde with the aid of dh_make, by Craig Small +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. +# Some lines taken from debmake, by Cristoph Lameter. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: build-stamp +build-stamp: + dh_testdir + + $(MAKE) policy + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp install-stamp + + # Add here commands to clean up after the build process. + $(MAKE) clean + -rm -f *~ + + dh_clean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tmp. + $(MAKE) install DESTDIR=`pwd`/debian/tmp + + touch install-stamp + +# Build architecture-independent files here. +binary-indep: build install + +# Build architecture-dependent files here. +binary-arch: build install +# dh_testversion + dh_testdir + dh_testroot + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installemacsen +# dh_installinit + dh_installcron +# dh_installmanpages +# dh_undocumented + dh_installchangelogs +# dh_strip + dh_compress + dh_fixperms + dh_suidregister + dh_installdeb +# dh_shlibdeps + dh_gencontrol +# dh_makeshlibs + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary -- cgit v1.2.3