debian/0000755000000000000000000000000011742325730007172 5ustar debian/mkgmapgui.sh0000755000000000000000000000247411742325730011521 0ustar #!/bin/sh # Simple wrapper script used to start mkgmapgui in Debian set -e # First, the alternative (if known to work) or users preference as defined by $JAVA_HOME. Next, use OpenJDK or Sun's proprietary JDK. # Override to a specific one using $JAVACMD ALTERNATIVE_JDK="`readlink -n -f /etc/alternatives/java`" # Let's get the current architecture -- needed for multiarchified Java ARCH="`dpkg --print-architecture`" # If OpenJDK is only available headless, do not try it if dpkg --get-selections 'openjdk-*-jre' | grep install$ > /dev/null ; then JAVA_CMDS="$JAVA_HOME/bin/java /usr/lib/jvm/java-7-openjdk-$ARCH/bin/java /usr/lib/jvm/java-6-openjdk/bin/java /usr/lib/jvm/java-6-openjdk-$ARCH/bin/java /usr/lib/jvm/java-6-sun/bin/java" else JAVA_CMDS="$JAVA_HOME/bin/java /usr/lib/jvm/java-6-sun/bin/java" fi JAVA_OPTS="$JAVA_OPTS -Xmx512M" for jcmd in $JAVA_CMDS; do if [ "z$ALTERNATIVE_JDK" = "z`readlink -n -f $jcmd`" ] && [ -z "${JAVACMD}" ]; then JAVACMD="$jcmd" fi done for jcmd in $JAVA_CMDS; do if [ -x "$jcmd" -a -z "${JAVACMD}" ]; then JAVACMD="$jcmd" fi done if [ "$JAVACMD" ]; then echo "Using $JAVACMD to execute mkgmapgui." exec $JAVACMD $JAVA_OPTS -jar /usr/share/mkgmapgui/mkgmapgui.jar /usr/share/mkgmap/mkgmap.jar else echo "No valid JVM found to run mkgmapgui." exit 1 fi debian/rules0000755000000000000000000000040011742325730010244 0ustar #!/usr/bin/make -f export DH_VERBOSE=1 JAVA_HOME=/usr/lib/jvm/default-java %: dh $@ --with javahelper override_dh_link: dh_link usr/share/mkgmapgui/mkgmapgui.sh usr/bin/mkgmapgui override_jh_build: jh_build -mtim.mkgmapgui.MkgmapGui mkgmapgui.jar . debian/mkgmapgui.manpages0000644000000000000000000000002311742325730012663 0ustar debian/mkgmapgui.1 debian/docs0000644000000000000000000000003111742325730010037 0ustar tim/mkgmapgui/readme.txt debian/watch0000644000000000000000000000026211742325730010223 0ustar # This package has not an useful watch file. # # Upstream has not the version number in the name of the program: # http://activityworkshop.net/software/mkgmapgui/mkgmapgui.jar debian/control0000644000000000000000000000220411742325730010573 0ustar Source: mkgmapgui Section: utils Priority: extra Maintainer: Debian OpenStreetMap Team Uploaders: Debian GIS Project , Mònica Ramírez Arceda , David Paleino Build-Depends: debhelper (>= 8), javahelper (>=0.25) Build-Depends-Indep: default-jdk Standards-Version: 3.9.3 Homepage: http://activityworkshop.net/software/mkgmapgui Vcs-Git: git://git.debian.org/git/pkg-osm/mkgmapgui.git Vcs-Browser: http://git.debian.org/?p=pkg-osm/mkgmapgui.git Package: mkgmapgui Architecture: all Depends: ${misc:Depends} , mkgmap , ${java:Depends} Recommends: ${java:Recommends} Description: Graphical User Interface for mkgmap mkgmapgui is a GUI front end to mkgmap, a command-line utility for converting OpenStreetMap map files to files that can be uploaded to a Garmin GPS device. . While not all the advanced features of mkgmap are implemented in mkgmapgui, the most used are. mkgmapgui implements the following features: . * Converting an .osm file into a Garmin .img file * Combining multiple .img files into one .img file. debian/changelog0000644000000000000000000000073211742325730011046 0ustar mkgmapgui (1.1.ds-2) unstable; urgency=low * Fix wrapper script to look for generic OpenJDK (Closes: #668283) * Updated debian/copyright * Standards-Version bumped to 3.9.3, no changes needed * Updated Mònica's e-mail address -- David Paleino Sat, 14 Apr 2012 18:54:42 +0200 mkgmapgui (1.1.ds-1) unstable; urgency=low * Initial release. (Closes: #626841) -- Mònica Ramírez Arceda Sun, 15 May 2011 20:46:52 +0200 debian/menu0000644000000000000000000000021211742325730010054 0ustar ?package(mkgmapgui): \ needs="X11" \ section="Applications/Science/Geoscience" \ title="MkgmapGui" \ command="/usr/bin/mkgmapgui" debian/copyright0000644000000000000000000000222011742325730011121 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0 Upstream-Name: mkgmapgui Source: http://activityworkshop.net/software/mkgmapgui/ Files: * Copyright: © activityworkshop.net License: GPL-2.0+ Files: debian/* Copyright: © 2011, Mònica Ramírez Arceda © 2012, David Paleino . On Debian systems, the complete text of the GNU General Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". debian/source/0000755000000000000000000000000011742325730010472 5ustar debian/source/format0000644000000000000000000000001411742325730011700 0ustar 3.0 (quilt) debian/clean0000644000000000000000000000001611742325730010174 0ustar mkgmapgui.jar debian/README.source0000644000000000000000000000067011742325730011354 0ustar mkgmapgui for Debian -------------------- This program is originally distributed as a JAR file. It has been repackaged for Debian. To get the mkgmapgui-1.1.ds.tar.gz file you should do the following: wget http://activityworkshop.net/software/mkgmapgui/mkgmapgui.jar mkdir mkgmapgui-1.1.ds cp mkgmapgui.jar mkgmapgui-1.1.ds/ jar xf mkgmapgui.jar rm mkgmapgui.jar tim/mkgmapgui/*class cd .. tar czf mkgmapgui-1.1.ds.tar.gz mkgmapgui-1.1.ds debian/mkgmapgui.10000644000000000000000000000125711742325730011242 0ustar .TH MKGMAPGUI 1 "May 16, 2011" .SH NAME mkgmapgui \- Graphical User Interface for mkgmap .SH SYNOPSIS .B mkgmapgui .SH DESCRIPTION .B mkgmapgui is a graphical user interface for mkgmap. .BR Although .B mkgmap has a lot of features, this GUI allows you to do the most common actions: convert an Osm file into an Img file and combine multiple Img files into one big Img file. .SH SEE ALSO For further information, visit http://activityworkshop.net/software/mkgmapgui/ .SH AUTHOR mkgmapgui was written by Activity Workshop (http://activityworkshop.net). .PP This manual page was written by Mònica Ramírez Arceda , for the Debian project (and may be used by others). debian/compat0000644000000000000000000000000211742325730010370 0ustar 7 debian/mkgmapgui.install0000644000000000000000000000011211742325730012535 0ustar mkgmapgui.jar usr/share/mkgmapgui debian/mkgmapgui.sh usr/share/mkgmapgui