aboutsummaryrefslogtreecommitdiff
blob: 430a7559d5e26531c7a166c7a0acb717bd5f3a95 (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
60
61
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="3"

inherit gnome2-utils subversion autotools

ESVN_REPO_URI="https://geany.svn.sourceforge.net/svnroot/geany/trunk"

DESCRIPTION="GTK+ based fast and lightweight IDE"
HOMEPAGE="http://www.geany.org"
SRC_URI=""

LICENSE="GPL-2 Scintilla"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+vte"

COMMON_DEPEND="
	>=x11-libs/gtk+-2.12:2
	>=dev-libs/glib-2.16:2
	"
DEPEND="${COMMON_DEPEND}
	dev-util/pkgconfig
	dev-util/intltool
	sys-devel/gettext
	"
RDEPEND="${COMMON_DEPEND}
	vte? ( x11-libs/vte:0 )
	"

WANT_AUTOMAKE="1.11"

src_prepare() {
	# Syntax highlighting for Portage
	sed -i -e "s:*.sh;:*.sh;*.ebuild;*.eclass;:" \
		data/filetype_extensions.conf || die

	# LINGUAS hack
	pushd po &>/dev/null
	for l in $LINGUAS; do
		test -f ${l}.po || LINGUAS=${LINGUAS/$l/}
	done
	popd &>/dev/null
	intltoolize --force --copy --automake || die "intltoolize failed"
	eautoreconf
}

src_configure() {
	econf \
		--disable-dependency-tracking \
		$(use_enable vte)
}

src_install() {
	emake DESTDIR="${D}" DOCDIR="${ED}/usr/share/doc/${PF}" install || die
	find "${ED}" -name '*.la' -exec rm -f '{}' + || die
	rm -f "${ED}"/usr/share/doc/${PF}/{COPYING,GPL-2,ScintillaLicense.txt}
	prepalldocs
}