diff options
| author | Stephane Bortzmeyer <bortz@debian.org> | 2000-07-12 13:58:36 +0000 |
|---|---|---|
| committer | Stephane Bortzmeyer <bortz@debian.org> | 2000-07-12 13:58:36 +0000 |
| commit | 48a11ace528fb15a0ea871bae71bae2a05dcfc46 (patch) | |
| tree | ace76803bf64ba0b68a5fe5d89f649cc4d2c4f52 /debian | |
| download | java-common-48a11ace528fb15a0ea871bae71bae2a05dcfc46.tar.gz | |
Initial revisiondebian/debian_version_0_2@4
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/README.debian | 21 | ||||
| -rw-r--r-- | debian/changelog | 22 | ||||
| -rw-r--r-- | debian/control | 13 | ||||
| -rw-r--r-- | debian/copyright | 8 | ||||
| -rw-r--r-- | debian/dirs | 5 | ||||
| -rw-r--r-- | debian/docs | 1 | ||||
| -rwxr-xr-x | debian/rules | 71 |
7 files changed, 141 insertions, 0 deletions
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 <bortzmeyer@debian.org>, 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 <bortzmeyer@debian.org> Thu, 2 Sep 1999 17:10:15 +0200 + +java-common (0.1) unstable; urgency=low + + * Proper versioning for a Debian-only package + + -- Stephane Bortzmeyer <bortzmeyer@debian.org> Mon, 28 Jun 1999 15:00:52 +0200 + +java-common (0.0-1) unstable; urgency=low + + * Initial Release. + + -- Stephane Bortzmeyer <bortzmeyer@debian.org> 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 <bortzmeyer@debian.org> +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 <bortzmeyer@debian.org> + +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 |
