blob: cacaef7c29004798a49fe121376da9b380da2028 (
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
|
# Copyright 1999-2011 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.4.ebuild,v 1.1 2011/11/12 15:19:14 ssuominen Exp $
EAPI=4
DESCRIPTION="An analog clock displaying the system-time."
HOMEPAGE="http://macslow.net/?page_id=23"
SRC_URI="http://macslow.thepimp.net/projects/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=dev-libs/glib-2.8
>=gnome-base/libglade-2.6
>=gnome-base/librsvg-2.14
>=x11-libs/cairo-1.2
>=x11-libs/gtk+-2.10:2
>=x11-libs/pango-1.10"
DEPEND="${DEPEND}
dev-util/intltool
dev-util/pkgconfig
sys-devel/gettext"
DOCS=( AUTHORS NEWS README TODO )
src_prepare() {
# cc: error: unrecognized option '--export-dynamic'
sed -i -e '/cairo_clock_LDFLAGS/s:=.*:= -rdynamic:' src/Makefile.in || die
}
|