You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-geosciences/gpsbabel/gpsbabel-1.5.4-r1.ebuild

121 lines
2.5 KiB

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools desktop qmake-utils
DESCRIPTION="GPS waypoints, tracks and routes converter"
HOMEPAGE="https://www.gpsbabel.org/ https://github.com/gpsbabel/gpsbabel"
SRC_URI="
https://dev.gentoo.org/~asturm/${P}.tar.gz
doc? ( https://www.gpsbabel.org/style3.css -> gpsbabel.org-style3.css )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="doc +gui"
BDEPEND="
doc? (
app-text/docbook-xml-dtd:4.1.2
dev-lang/perl
dev-libs/libxslt
)
gui? ( dev-qt/linguist-tools:5 )
"
RDEPEND="
dev-libs/expat
dev-qt/qtcore:5
sci-libs/shapelib:=
sys-libs/zlib[minizip]
virtual/libusb:0
gui? (
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwebchannel:5
dev-qt/qtwebengine:5[widgets]
dev-qt/qtwidgets:5
dev-qt/qtxml:5
)
"
DEPEND="${RDEPEND}"
DOCS=( AUTHORS README.{contrib,igc,mapconverter,md,xmapwpt} )
PATCHES=(
"${FILESDIR}"/${PN}-1.4.3-fix_binary_name.patch
"${FILESDIR}"/${P}-disable_statistic_uploading.patch
"${FILESDIR}"/${P}-disable_update_check.patch
"${FILESDIR}"/${P}-disable_version_check.patch
"${FILESDIR}"/${P}-use_system_shapelib.patch
"${FILESDIR}"/${P}-use_system_zlib.patch
"${FILESDIR}"/${P}-xmldoc.patch
"${FILESDIR}"/${P}-qt-5.9-{1,2}.patch
)
RESTRICT="test" # bug 421699
src_prepare() {
default
# remove bundled libs and cleanup
rm -r shapelib zlib || die
sed -i -e "s: zlib\/[a-z]*\.h::g" Makefile.in || die
mv configure.in configure.ac || die
sed -i -e "/^configure:/s/configure.in/configure.ac/" Makefile.in || die
if use doc; then
cp "${DISTDIR}/gpsbabel.org-style3.css" . || die
fi
eautoreconf
}
src_configure() {
local myeconfargs=(
$(use_with doc doc doc/manual)
LRELEASE=$(qt5_get_bindir)/lrelease
LUPDATE=$(qt5_get_bindir)/lupdate
QMAKE=$(qt5_get_bindir)/qmake
--with-zlib=system
)
econf "${myeconfargs[@]}"
if use gui; then
pushd gui > /dev/null || die
$(qt5_get_bindir)/lrelease *.ts || die
eqmake5
popd > /dev/null
fi
}
src_compile() {
default
if use gui; then
pushd gui > /dev/null || die
emake
popd > /dev/null
fi
if use doc; then
perl xmldoc/makedoc || die
emake gpsbabel.html
fi
}
src_install() {
use doc && local HTML_DOCS=( ${PN}.html ${PN}.org-style3.css )
default
if use gui; then
dobin gui/objects/gpsbabelfe
insinto /usr/share/${PN}/translations/
doins gui/gpsbabel*_*.qm
newicon gui/images/appicon.png ${PN}.png
make_desktop_entry gpsbabelfe ${PN} ${PN} "Science;Geoscience"
fi
}