diff options
author | Andrey Grozin <grozin@gentoo.org> | 2021-03-12 17:30:58 +0700 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2021-03-12 17:30:58 +0700 |
commit | 24f3f99f93f6ed4313e9aedfcc14c35aaa4215b3 (patch) | |
tree | 00649580affa09958f9e1c16902123ec5fff7c04 /sci-geosciences/viking | |
parent | profiles/package.mask: mask ruby-oci8 for removal (diff) | |
download | gentoo-24f3f99f93f6ed4313e9aedfcc14c35aaa4215b3.tar.gz gentoo-24f3f99f93f6ed4313e9aedfcc14c35aaa4215b3.tar.bz2 gentoo-24f3f99f93f6ed4313e9aedfcc14c35aaa4215b3.zip |
sci-geosciences/viking: depend on sqlite unconditionally
1.8 still does not compile with USE=-sqlite,
so, make it mandatory
Closes: https://bugs.gentoo.org/676086
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andrey Grozin <grozin@gentoo.org>
Diffstat (limited to 'sci-geosciences/viking')
-rw-r--r-- | sci-geosciences/viking/viking-1.8-r1.ebuild | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/sci-geosciences/viking/viking-1.8-r1.ebuild b/sci-geosciences/viking/viking-1.8-r1.ebuild new file mode 100644 index 000000000000..fc94ad904522 --- /dev/null +++ b/sci-geosciences/viking/viking-1.8-r1.ebuild @@ -0,0 +1,100 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools xdg-utils + +DESCRIPTION="GPS data editor and analyzer" +HOMEPAGE="https://github.com/viking-gps/viking/" +IUSE="doc +exif libexif geoclue gps +magic nls oauth" +SRC_URI=" + https://github.com/viking-gps/${PN}/archive/${P}.tar.gz + doc? ( https://github.com/viking-gps/${PN}/releases/download/${P}/${PN}.pdf )" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +COMMONDEPEND=" + app-arch/bzip2 + >=dev-tcltk/expect-5.45.4 + dev-db/sqlite:3 + dev-libs/expat + dev-libs/glib:2 + dev-libs/nettle + net-misc/curl + sys-libs/zlib + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:2 + geoclue? ( >=app-misc/geoclue-2.4.4:2.0 ) + gps? ( >=sci-geosciences/gpsd-3.20 ) + exif? ( libexif? ( media-libs/libexif ) !libexif? ( media-libs/gexiv2 ) ) + magic? ( sys-apps/file ) + oauth? ( net-libs/liboauth ) +" +RDEPEND="${COMMONDEPEND} + sci-geosciences/gpsbabel +" +DEPEND="${COMMONDEPEND} + app-text/gnome-doc-utils + dev-util/intltool + dev-util/gtk-doc + dev-util/gtk-doc-am + app-text/rarian + dev-libs/libxslt + virtual/pkgconfig + sys-devel/gettext +" + +PATCHES=( "${FILESDIR}/${PN}-1.7-no-common.patch" ) + +S="${WORKDIR}/${PN}-${P}" + +src_prepare() +{ + default + eautoreconf +} + +src_configure() { + econf \ + --disable-deprecations \ + --with-libcurl \ + --with-expat \ + --enable-google \ + --enable-nettle \ + --enable-terraserver \ + --enable-expedia \ + --enable-openstreetmap \ + --enable-bluemarble \ + --enable-geonames \ + --enable-geocaches \ + --disable-dem24k \ + --disable-mapnik \ + --enable-mbtiles \ + $(use_enable exif geotag) \ + $(use_with libexif ) \ + $(use_enable geoclue) \ + $(use_enable gps realtime-gps-tracking) \ + $(use_enable magic) \ + $(use_enable nls) \ + $(use_enable oauth) +} + +src_install() { + default + if use doc; then + dodoc "${DISTDIR}"/${PN}.pdf + fi +} + +pkg_postinst() { + xdg_icon_cache_update + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_icon_cache_update + xdg_desktop_database_update +} |