blob: 6903ef4ad3739b7b660d784accbb53980322ef4a (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/beryl-plugins/beryl-plugins-0.1.1.ebuild,v 1.3 2006/10/24 02:14:44 tsunam Exp $
inherit autotools
DESCRIPTION="Beryl Window Decorator Plugins"
HOMEPAGE="http://beryl-project.org"
SRC_URI="http://distfiles.gentoo-xeffects.org/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="dbus"
DEPEND="x11-wm/beryl-core
>=gnome-base/librsvg-2.14.0"
PDEPEND="dbus? ( x11-plugins/beryl-dbus )"
S="${WORKDIR}/${PN}"
MAKEOPTS="${MAKEOPTS} -j1"
src_compile() {
eautoreconf || die "eautoreconf failed"
glib-gettextize --copy --force || die
econf || die "econf failed"
emake || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
}
|