summaryrefslogtreecommitdiff
blob: 03f9fcc36b9deed5bce73f1187165521f7ef8e0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

WANT_AUTOMAKE=1.11

inherit autotools vala

DESCRIPTION="A map-rendering application and a library for OpenStreetMap"
HOMEPAGE="http://trac.openstreetmap.ch/trac/memphis/"
SRC_URI="http://wenner.ch/files/public/mirror/${PN}/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0.2"
KEYWORDS="~alpha amd64 arm ia64 ppc ppc64 sparc x86"
IUSE="debug doc +introspection vala"

RDEPEND="
	dev-libs/expat:=
	dev-libs/glib:2
	x11-libs/cairo:=
	introspection? ( dev-libs/gobject-introspection )"
DEPEND="${RDEPEND}"
BDEPEND="
	doc? ( dev-util/gtk-doc )
	vala? ( $(vala_depend) )"

PATCHES=( "${FILESDIR}"/${P}-link_gobject.patch )

src_prepare() {
	default
	eautoreconf

	unset VALAC
	use vala && vala_src_prepare
}

src_configure() {
	econf \
		--disable-static \
		$(use_enable debug) \
		$(use_enable doc gtk-doc) \
		$(use_enable introspection) \
		$(use_enable vala)
}

src_install() {
	default

	# no static archives
	find "${D}" -name '*.la' -delete || die
}