blob: f5b509bbaab8574dce986a19ea8258b2139d229e (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/cairo-clock/cairo-clock-0.3.3.ebuild,v 1.7 2012/05/05 04:53:53 jdhore Exp $
EAPI=2
inherit autotools base
DESCRIPTION="An analog clock displaying the system-time."
HOMEPAGE="http://macslow.thepimp.net/?page_id=23"
SRC_URI="http://macslow.thepimp.net/projects/${PN}/${PN}_${PV}-1.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86 ~x86-fbsd"
IUSE=""
PATCHES=( "${FILESDIR}/${P}-gcc46.patch" )
RDEPEND="dev-libs/glib:2
gnome-base/libglade
gnome-base/librsvg
>=x11-libs/cairo-1.2
x11-libs/gtk+:2
>=x11-libs/pango-1.10"
DEPEND="${DEPEND}
virtual/pkgconfig
dev-util/intltool
sys-devel/gettext"
src_prepare() {
base_src_prepare
intltoolize --force --copy --automake || die "intltoolize failed"
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS BUGS ChangeLog NEWS README TODO
}
|