blob: 50439132f6a3ac8ab3f28a763956d86a23a64a57 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/bubblemon/bubblemon-2.0.14.ebuild,v 1.2 2009/12/23 15:50:03 ssuominen Exp $
EAPI=2
GCONF_DEBUG=no
inherit gnome2
DESCRIPTION="A fun monitoring applet for your desktop, complete with swimming duck"
HOMEPAGE="http://www.nongnu.org/bubblemon"
SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="1"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE="nls"
RDEPEND="x11-libs/gtk+:2
gnome-base/gnome-panel
gnome-base/libgnomeui
gnome-base/libgtop"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( dev-util/intltool
sys-devel/gettext )"
pkg_setup() {
DOCS="AUTHORS ChangeLog TRANSLATIONS README TODO"
G2CONF="$(use_enable nls)"
}
src_prepare() {
gnome2_src_prepare
# Fix test suite wrt #295753
echo gnome/GNOME_BubblemonApplet.server.in >> po/POTFILES.skip
sed -i -e 's:-g -O2 -Wall -Werror:-Wall:' configure || die "sed failed"
}
|