summaryrefslogtreecommitdiff
blob: 24cb0463fdf31b49cf018dc69fc52cab00aee3c7 (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
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="4"
WANT_AUTOMAKE=1.11
inherit autotools git-2

DESCRIPTION="Twitter and Identi.ca client"
HOMEPAGE="http://github.com/Keruspe/Twident"
SRC_URI=""
EGIT_REPO_URI="git://github.com/Keruspe/Twident"

LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"

RDEPEND=">=x11-libs/gtk+-2.24:2
	>=dev-libs/glib-2.14:2
	>=dev-libs/libgee-0.5
	>=x11-libs/libnotify-0.7
	net-libs/libsoup:2.4
	dev-libs/libxml2
	>=net-libs/rest-0.7.10"
DEPEND="${RDEPEND}
	>=dev-lang/vala-0.13.4:0.14
	sys-devel/gettext
	dev-util/intltool"

src_prepare() {
	mkdir m4
	eautoreconf
	intltoolize --force --automake --copy
}

src_configure() {
	econf VALAC=$(type -p valac-0.14)
}

src_install() {
	emake DESTDIR="${ED}" install
	doicon img/twident.svg
}