Codebase list kunststoff / 65f7109
Import Debian changes 2.0.2-4 kunststoff (2.0.2-4) unstable; urgency=low . * Move the package to pkg-java svn. * debian/control: + Set Priority to optional from extra + Set Maintainer to Debian Java Maintainers and add myself to Uploaders * Move the build scripts to debian dir. * Remove the hard coded version from ant.properties and install the versioned jar from debian/rules. * Bump up Standards-Version to 3.7.3 Varun Hiremath authored 16 years ago tony mancill committed 2 years ago
7 changed file(s) with 58 addition(s) and 44 deletion(s). Raw diff Collapse all Expand all
+0
-3
build.properties less more
0 class.dir=class
1 source.dir=src
2 jar.name=kunststoff2.0.2.jar
+0
-27
build.xml less more
0 <?xml version="1.0" encoding="UTF-8"?>
1
2 <project default="jar" name="kunststoff" basedir=".">
3 <property file="./build.properties"/>
4
5 <target name="clean">
6 <delete dir="${class.dir}" quiet="true"/>
7 <delete file="${jar.name}" quiet="true"/>
8 </target>
9
10 <target name="compile">
11 <mkdir dir="${class.dir}"/>
12 <javac srcdir="${source.dir}" destdir="${class.dir}"
13 deprecation="true" debug="true" optimize="false"/>
14 </target>
15
16 <target name="jar" description="o Create the jar" depends="compile">
17 <jar jarfile="${jar.name}" basedir="${class.dir}"/>
18 </target>
19
20 <target name="install" depends="jar">
21 <mkdir dir="${destdir}/usr/share/java/" />
22 <copy todir="${destdir}/usr/share/java/">
23 <fileset file="${jar.name}" />
24 </copy>
25 </target>
26 </project>
0 class.dir=class
1 source.dir=src
2 jar.name=kunststoff.jar
0 <?xml version="1.0" encoding="UTF-8"?>
1
2 <project default="jar" name="kunststoff" basedir="..">
3 <property file="./build.properties"/>
4
5 <target name="clean">
6 <delete dir="${class.dir}" quiet="true"/>
7 <delete file="${jar.name}" quiet="true"/>
8 </target>
9
10 <target name="compile">
11 <mkdir dir="${class.dir}"/>
12 <javac srcdir="${source.dir}" destdir="${class.dir}"
13 deprecation="true" debug="true" optimize="false"/>
14 </target>
15
16 <target name="jar" description="o Create the jar" depends="compile">
17 <jar jarfile="${jar.name}" basedir="${class.dir}"/>
18 </target>
19
20 <target name="install" depends="jar">
21 <mkdir dir="${destdir}/usr/share/java/" />
22 <copy todir="${destdir}/usr/share/java/">
23 <fileset file="${jar.name}" />
24 </copy>
25 </target>
26 </project>
0 kunststoff (2.0.2-4) unstable; urgency=low
1
2 * Move the package to pkg-java svn.
3 * debian/control:
4 + Set Priority to optional from extra
5 + Set Maintainer to Debian Java Maintainers and add myself to Uploaders
6 * Move the build scripts to debian dir.
7 * Remove the hard coded version from ant.properties and install the
8 versioned jar from debian/rules.
9 * Bump up Standards-Version to 3.7.3
10
11 -- Varun Hiremath <varun@debian.org> Sun, 13 Jan 2008 00:44:26 +0530
12
013 kunststoff (2.0.2-3) unstable; urgency=low
114
215 [ Varun Hiremath ]
1932 * Initial release (Closes: #422337)
2033
2134 -- Varun Hiremath <varunhiremath@gmail.com> Fri, 4 May 2007 18:57:24 +0530
22
00 Source: kunststoff
11 Section: utils
2 Priority: extra
3 Maintainer: Varun Hiremath <varunhiremath@gmail.com>
4 Uploaders: Torsten Werner <twerner@debian.org>
5 Build-Depends: ant, cdbs, debhelper (>= 5), java-gcj-compat-dev
6 Standards-Version: 3.7.2
7 XS-Vcs-Svn: https://bollin.googlecode.com/svn/kunststoff/
8 XS-Vcs-Browser: http://bollin.googlecode.com/svn/kunststoff/
2 Priority: optional
3 Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
4 Uploaders: Varun Hiremath <varun@debian.org>, Torsten Werner <twerner@debian.org>
5 Build-Depends: cdbs, debhelper (>= 5)
6 Build-Depends-Indep: ant, java-gcj-compat-dev
7 Standards-Version: 3.7.3
8 Homepage: http://www.incors.org/archive/
9 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/kunststoff
10 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/kunststoff
911
1012 Package: kunststoff
1113 Architecture: all
12 Depends: ${shlibs:Depends}, ${misc:Depends}
14 Depends: ${shlibs:Depends}, ${misc:Depends}, java-gcj-compat | java1-runtime | java2-runtime
1315 Description: suite of skins for different applications
1416 The Kunststoff Look & Feel is a completely free Look & Feel for Java
1517 Swing applications. It supports many widgets (e.g JInnerFrame,
1618 JProgressBar, JToolBar) and provides customizable gradient colors.
17 .
18 Homepage: http://www.incors.org/archive/
22 include /usr/share/cdbs/1/class/ant.mk
33 include /usr/share/cdbs/1/rules/debhelper.mk
44
5 JAVA_HOME := /usr/lib/jvm/java-gcj
6 DEB_ANT_INSTALL_TARGET := install -Ddestdir=$(DEB_DESTDIR)
5 JAVA_HOME := /usr/lib/jvm/java-gcj
6 DEB_ANT_INSTALL_TARGET := jar
7 DEB_ANT_BUILDFILE := debian/build.xml
78
89 install/kunststoff::
9 dh_link /usr/share/java/kunststoff$(DEB_UPSTREAM_VERSION).jar \
10 install -m 644 -D kunststoff.jar $(DEB_DESTDIR)/usr/share/java/kunststoff-$(DEB_UPSTREAM_VERSION).jar
11 dh_link /usr/share/java/kunststoff-$(DEB_UPSTREAM_VERSION).jar \
1012 /usr/share/java/kunststoff.jar
1113
1214 get-orig-source: