New Package: gpsbabel GPS data conversione and transfer.

Hope it is packaged righ, on my installation build fine.

Regards

Carlo D.
This commit is contained in:
onekk 2014-06-26 16:37:29 +02:00
parent 59d9fe4a22
commit ee9b542414
3 changed files with 70 additions and 0 deletions

1
srcpkgs/gpsbabel-gui Symbolic link
View File

@ -0,0 +1 @@
./gpsbabel

View File

@ -0,0 +1,15 @@
--- Makefile.in 2014-04-14 04:29:46.000000000 +0200
+++ Makefile.in.new 2014-06-15 15:32:23.392644000 +0200
@@ -252,7 +252,11 @@
perl xmldoc/makedoc
xmlwf xmldoc/readme.xml #check for well-formedness
xmllint --noout --valid xmldoc/readme.xml #validate
- xsltproc -o $@ xmldoc/babelpdf.xsl xmldoc/readme.xml
+ xsltproc \
+ -o $@ \
+ --stringparam paper.type A4 \
+ xmldoc/babelpdf.xsl \
+ xmldoc/readme.xml
gpsbabel.pdf: gpsbabel.fo
fop -q -fo gpsbabel.fo -pdf gpsbabel.pdf

54
srcpkgs/gpsbabel/template Normal file
View File

@ -0,0 +1,54 @@
# Template file for 'gpsbabel'
pkgname=gpsbabel
version=1.5.1
revision=1
build_style=gnu-configure
maintainer="Carlo Dormeletti <carlo.dormeletti@email.it>"
homepage="http://www.gpsbabel.org/"
license="GPL-2"
short_desc="GPSBabel converts waypoints, tracks, and routes between popular GPS formats"
configure_args=""
hostmakedepends="perl>=5.18 docbook-xml"
makedepends="qt-devel libusb-compat-devel expat-devel libxml2-devel xmlwf libxslt-devel offo-hyphenation"
distfiles="http://arch.p5n.pp.ru/~sergej/dl/2014/${pkgname}-${version}.tar.gz"
checksum="3feec7d43ca6cb5393645fe0df893d9f7bf5334849fa8abd4c5c3ee775c8cac3"
do_build(){
. /etc/profile.d/oracle-jre.sh
make
make doc
cd gui
qmake
make
}
do_install(){
make install DESTDIR=${DESTDIR}
vmkdir usr/share/doc/${pkgname}
vcopy "README*" usr/share/doc/${pkgname}
vcopy "AUTHORS" usr/share/doc/${pkgname}
vcopy "COPYING" usr/share/doc/${pkgname}
vcopy "gpsbabel.pdf" usr/share/doc/${pkgname}
vcopy "gpsbabel-sample.ini" usr/share/doc/${pkgname}
vcopy "guibabel" usr/share/doc/${pkgname}
vcopy "style" usr/share/doc/${pkgname}
}
do_clean() {
# Remove temporary stuff from masterdir
rm -rf ${XBPS_BUILDDIR}/babelweb
}
gpsbabel-gui_package() {
short_desc+=" - Qt4 GUI"
depends="${pkgname}>=${version}_${revision}"
pkg_install() {
vmkdir usr/bin
vcopy ${wrksrc}/gui/gpsbabelfe usr/bin
vcopy ${wrksrc}/gui/objects/gpsbabelfe-bin usr/bin
vmkdir usr/share/applications
vcopy ${wrksrc}/gui/gpsbabel.desktop usr/share/applications
}
}