blob: 9444fc789588da1856e8fed567b66fdea9d327a5 (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit gnome2 eutils
S=${WORKDIR}/teatime_applet_2-${PV}
DESCRIPTION="A GNOME panel applet that reminds you when your tea is ready"
HOMEPAGE="http://det.cable.nu/teatime/index.rbx"
SRC_URI="http://det.cable.nu/pakete/teatime_applet_2-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=">=dev-libs/glib-2.6
>=x11-libs/gtk+-2.6
|| ( >=media-plugins/gst-plugins-gconf-0.10
>=media-libs/gstreamer-0.8 )
>=gnome-base/gnome-vfs-2.4
>=gnome-base/gnome-panel-2.6
>=dev-libs/libxml2-2.6"
RDEPEND=${DEPEND}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/teatime-2.8.0-adding-slash-for-pixmaps-dir.patch"
gnome2_omf_fix
}
|