Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Remove dependency on icedtea and old leftovers of topgit.
· 268313ef
Giovanni Mascellani
authored
Mar 21, 2019
268313ef
Fix jh_build options.
· ef8abc58
Giovanni Mascellani
authored
Mar 21, 2019
ef8abc58
Release to unstable.
· a14df6a5
Giovanni Mascellani
authored
Mar 21, 2019
a14df6a5
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
a14df6a5
geogebra (4.0.34.0+dfsg1-7) unstable; urgency=medium
* Remove dependency on icedtea, which is going to be removed.
* Fix jh_build options that used to randomly fail the compilation.
-- Giovanni Mascellani <gio@debian.org> Thu, 21 Mar 2019 19:16:43 +0100
geogebra (4.0.34.0+dfsg1-6) unstable; urgency=medium
* Team upload.
...
...
debian/control
View file @
a14df6a5
...
...
@@ -8,7 +8,6 @@ Build-Depends:
javahelper (>= 0.38),
javacc,
default-jdk,
icedtea-netx-common,
xsltproc,
docbook-xsl,
mathpiper (>= 0.81f+svn4469+dfsg3),
...
...
debian/rules
View file @
a14df6a5
...
...
@@ -3,17 +3,8 @@
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# TopGit patches
TG_BRANCHES := patch/ScientificFormat.java
TG_BRANCHES += patch/applet_export
TG_BRANCHES += patch/no_mac
TG_BRANCHES += patch/version
TG_BRANCHES += patch/use_apache_commons_collections
-include /usr/share/topgit/tg2quilt.mk
export JAVA_HOME=/usr/lib/jvm/default-java
export CLASSPATH=/usr/share/java/mathpiper.jar:/usr/share/java/commons-math.jar:/usr/share/java/freehep-xml.jar:/usr/share/java/freehep-util.jar:/usr/share/java/freehep-graphics2d.jar:/usr/share/java/freehep-io.jar:/usr/share/java/freehep-graphicsio.jar:/usr/share/java/freehep-graphicsio-svg.jar:/usr/share/java/freehep-graphicsio-pdf.jar:/usr/share/java/freehep-graphicsio-emf.jar:/usr/share/
icedtea-web/plugin.jar:/usr/share/
java/jlatexmath.jar:/usr/share/java/commons-collections3.jar:/usr/share/java/jfugue.jar:/usr/share/java/js.jar
export CLASSPATH=/usr/share/java/mathpiper.jar:/usr/share/java/commons-math.jar:/usr/share/java/freehep-xml.jar:/usr/share/java/freehep-util.jar:/usr/share/java/freehep-graphics2d.jar:/usr/share/java/freehep-io.jar:/usr/share/java/freehep-graphicsio.jar:/usr/share/java/freehep-graphicsio-svg.jar:/usr/share/java/freehep-graphicsio-pdf.jar:/usr/share/java/freehep-graphicsio-emf.jar:/usr/share/java/jlatexmath.jar:/usr/share/java/commons-collections3.jar:/usr/share/java/jfugue.jar:/usr/share/java/js.jar
%:
dh $@ --with javahelper
...
...
@@ -36,7 +27,7 @@ override_dh_auto_build:
javacc -STATIC=false -OUTPUT_DIRECTORY=src/geogebra/kernel/parser/ src/geogebra/kernel/parser/Parser.jj
override_jh_build: geogebra.1 ggthumb.1
jh_build
-N
-mgeogebra.GeoGebra
jh_build -mgeogebra.GeoGebra
# Add resource files to JAR archive
( cd src/ ; find ! -name *.java -type f -print0 ) | xargs -0 jar uf geogebra.jar -C src/
...
...