[stylebook] 05/34: Commit debian branch.
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Thu Mar 29 10:54:16 BST 2018
This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a commit to branch master
in repository stylebook.
commit de1a824f443d4770585b1c6bf4b04d28ccceefc5
Author: Marcus Better <marcus at better.se>
Date: Thu Nov 9 11:16:08 2006 +0000
Commit debian branch.
---
debian/changelog | 5 ++++
debian/compat | 1 +
debian/control | 16 ++++++++++
debian/copyright | 68 ++++++++++++++++++++++++++++++++++++++++++
debian/dirs | 2 ++
debian/install | 1 +
debian/rules | 64 +++++++++++++++++++++++++++++++++++++++
debian/svn-deblayout | 2 ++
styles/christmas/vineritc.ttf | Bin 100104 -> 0 bytes
9 files changed, 159 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..b867ec4
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+stylebook (1.0~b3~svn20061109-1) unstable; urgency=low
+
+ * Initial release. (Closes: #397764)
+
+ -- Marcus Better <marcus at better.se> Thu, 9 Nov 2006 12:15:23 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..9cd6512
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,16 @@
+Source: stylebook
+Section: libs
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Marcus Better <marcus at better.se>
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: java-gcj-compat-dev, ant, libxerces2-java
+Standards-Version: 3.7.2
+
+Package: libstylebook-java
+Architecture: all
+Section: libs
+Depends: classpath-common | java1-runtime | java2-runtime, libxerces2-java
+Description: XML application for authoring web site content
+ Stylebook is a way to convert a set of XML files into a proper web
+ site with consistent navigation and layout.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..7afbe3a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,68 @@
+This package was debianized by Marcus Better <marcus at better.se> on
+Thu, 09 Nov 2006 11:33:42 +0100.
+
+It was downloaded from
+<http://svn.apache.org/repos/asf/xml/stylebook/trunk/>.
+
+Upstream authors: Pierpaolo Fumagalil <pier at apache.org>, Donald Leslie
+<donald_leslie at lotus.com>.
+
+Stylebook is Copyright (C) 1999-2000 The Apache Software Foundation.
+
+ The Apache Software License, Version 1.1
+
+ Copyright (c) 1999 The Apache Software Foundation. All rights
+ reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in
+ the documentation and/or other materials provided with the
+ distribution.
+
+ 3. The end-user documentation included with the redistribution,
+ if any, must include the following acknowledgment:
+ "This product includes software developed by the
+ Apache Software Foundation (http://www.apache.org/)."
+ Alternately, this acknowledgment may appear in the software itself,
+ if and wherever such third-party acknowledgments normally appear.
+
+ 4. The names "Xerces" and "Apache Software Foundation" must
+ not be used to endorse or promote products derived from this
+ software without prior written permission. For written
+ permission, please contact apache at apache.org.
+
+ 5. Products derived from this software may not be called "Apache",
+ nor may "Apache" appear in their name, without prior written
+ permission of the Apache Software Foundation.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
+ ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+ USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
+ ====================================================================
+
+ This software consists of voluntary contributions made by many
+ individuals on behalf of the Apache Software Foundation and was
+ originally based on software copyright (c) 1999, International
+ Business Machines, Inc., http://www.apache.org. For more
+ information on the Apache Software Foundation, please see
+ <http://www.apache.org/>.
+
+The Debian packaging is Copyright (C) 2006 Marcus Better
+<marcus at better.se> and is licensed under the Apache License, Version
+1.1, as above.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..3e6c7ef
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,2 @@
+/usr/share/java
+/usr/share/stylebook
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..0114711
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+styles /usr/share/stylebook
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2cd4e41
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,64 @@
+#!/usr/bin/make -f
+
+JAVA_HOME := /usr/lib/jvm/java-gcj
+DEB_JARS_BASE := /usr/share/java
+JAVACMD := $(JAVA_HOME)/bin/java
+
+DEB_JARS := ant ant-launcher xercesImpl
+
+DEB_CLASSPATH = $(shell for jar in $(DEB_JARS); do \
+ if [ -f "$$jar" ]; then echo -n "$${jar}:"; fi; \
+ if [ -f "$$jar".jar ]; then echo -n "$${jar}.jar:"; fi; \
+ if [ -f $(DEB_JARS_BASE)/"$$jar" ]; then echo -n "$(DEB_JARS_BASE)/$${jar}:"; fi; \
+ if [ -f $(DEB_JARS_BASE)/"$$jar".jar ]; then echo -n "$(DEB_JARS_BASE)/$${jar}.jar:"; fi; \
+ done; \
+ if [ -f "$(JAVA_HOME)/lib/tools.jar" ]; then echo -n "$(JAVA_HOME)/lib/tools.jar"; fi)
+
+DEB_ANT_ARGS := -Dbin.dir=build
+ANT_INVOKE := $(JAVACMD) -classpath $(DEB_CLASSPATH) \
+ org.apache.tools.ant.Main $(DEB_ANT_ARGS)
+
+PKGNAME := stylebook
+INSTALLDIR := $(CURDIR)/debian/lib$(PKGNAME)-java
+JAVALIBDIR := $(INSTALLDIR)/usr/share/java
+
+VERSION := $(shell head -1 debian/changelog | cut -f2 -d\( | cut -f1 -d\) | cut -f1 -d\- | cut -f1 -d\+ | cut -f1-2 -d\~ | tr \~ \-)
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+ $(ANT_INVOKE)
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+ $(ANT_INVOKE) clean
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs
+ install -m 644 build/$(PKGNAME)-$(VERSION)_xalan-2.jar $(JAVALIBDIR)/$(PKGNAME)-$(VERSION).jar
+ ln -s $(PKGNAME)-$(VERSION).jar $(JAVALIBDIR)/$(PKGNAME).jar
+ dh_link
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary-arch: build install
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
diff --git a/debian/svn-deblayout b/debian/svn-deblayout
new file mode 100644
index 0000000..3dc8c9c
--- /dev/null
+++ b/debian/svn-deblayout
@@ -0,0 +1,2 @@
+buildArea=../../build-area
+origDir=..
diff --git a/styles/christmas/vineritc.ttf b/styles/christmas/vineritc.ttf
deleted file mode 100644
index f73fadb..0000000
Binary files a/styles/christmas/vineritc.ttf and /dev/null differ
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/stylebook.git
More information about the pkg-java-commits
mailing list