blob: 9ecff9eda7af000bc0262d8c2a3eed692afba0a0 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
inherit autotools eutils gnome2
DESCRIPTION="A fully-featured alarm clock for your GNOME panel"
HOMEPAGE="http://alarm-clock.pseudoberries.com/"
SRC_URI="http://launchpad.net/alarm-clock/trunk/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-libs/dbus-glib
dev-libs/libunique
gnome-base/gnome-panel
media-libs/gstreamer
x11-libs/gtk+:2
x11-libs/libnotify
x11-themes/gnome-icon-theme"
DEPEND="${RDEPEND}
dev-util/intltool
app-text/gnome-doc-utils
dev-util/pkgconfig"
src_prepare() {
epatch "${FILESDIR}/${P}-libnotify-0.7.patch"
eautoreconf
gnome2_src_prepare
}
|