blob: d50640854b2109a9ba028c0b88e20e7950d56bd0 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit mono
DESCRIPTION="Linux client for reading and posting to twitter.com web service."
HOMEPAGE="http://code.google.com/p/gtwitter/"
SRC_URI="http://gtwitter.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND=">=x11-libs/cairo-1.6.4-r1[X]
dev-dotnet/gnome-sharp
dev-dotnet/gconf-sharp
>=x11-libs/libsexy-0.1.11"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
dodoc README || die
}
|