blob: 9890f6f9d9d8fd38d4d7af0304a530fc33e33793 (
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
54
55
56
57
58
59
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpx-viewer/gpx-viewer-0.3.0.ebuild,v 1.2 2012/10/07 10:02:10 jlec Exp $
EAPI=4
AUTOTOOLS_AUTORECONF=yes
inherit autotools-utils gnome2
DESCRIPTION="Simple program to visualize a gpx file"
HOMEPAGE="http://blog.sarine.nl/gpx-viewer/"
SRC_URI="http://edge.launchpad.net/${PN}/trunk/0.2.0/+download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nls"
MY_VALA_VERSION=0.16
RDEPEND="
dev-lang/vala:${MY_VALA_VERSION}
dev-libs/gdl:3
dev-libs/glib:2
dev-libs/libxml2:2
media-libs/libchamplain:0.12[gtk]
x11-libs/gtk+:3"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.21
virtual/pkgconfig"
src_prepare() {
export VALAC="$(type -P valac-${MY_VALA_VERSION})"
sed \
-e '/desktopdir/s:$(DESTDIR)::g' \
-i Makefile.am || die
sed \
-e '/MimeType/s:$:;:g' \
-i data/gpx-viewer.desktop.in || die
autotools-utils_src_prepare
}
src_configure() {
local myeconfargs=(
$(use_enable nls)
--disable-database-updates )
autotools-utils_src_configure
}
src_compile() {
autotools-utils_src_compile gpx_viewer_vala.stamp
autotools-utils_src_compile
}
src_install () {
autotools-utils_src_install
dosym ../icons/hicolor/scalable/apps/gpx-viewer.svg /usr/share/pixmaps/gpx-viewer.svg
}
|