blob: f030d998e7f0dd1b47aff26e0d0c8660f5da01db (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/quick-lounge-applet/quick-lounge-applet-2.14.0.ebuild,v 1.5 2009/12/26 19:29:17 armin76 Exp $
EAPI="2"
inherit autotools gnome2
DESCRIPTION="Application launcher applet for GNOME"
HOMEPAGE="http://quick-lounge.sourceforge.net/"
LICENSE="GPL-2"
IUSE=""
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
RDEPEND=">=dev-libs/glib-2.16
>=x11-libs/gtk+-2.14
>=gnome-base/gconf-2.0
>=gnome-base/gnome-panel-2.4
>=gnome-base/gnome-menus-2.12
sys-devel/gettext"
DEPEND="${RDEPEND}
app-text/scrollkeeper
dev-util/pkgconfig
>=dev-util/intltool-0.35.0
app-text/gnome-doc-utils"
DOCS="AUTHORS ChangeLog INSTALL NEWS README"
src_prepare() {
# Fix broken intltool used in tarball
intltoolize --force --copy --automake || die "intltoolize failed"
eautoreconf
}
|