| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfwm4/xfwm4-4.10.0.ebuild,v 1.11 2012/11/28 12:29:16 ssuominen Exp $
|
| 4 |
|
| 5 |
EAPI=5
|
| 6 |
inherit xfconf
|
| 7 |
|
| 8 |
DESCRIPTION="Window manager for the Xfce desktop environment"
|
| 9 |
HOMEPAGE="http://www.xfce.org/projects/"
|
| 10 |
SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
|
| 11 |
|
| 12 |
LICENSE="GPL-2"
|
| 13 |
SLOT="0"
|
| 14 |
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
|
| 15 |
IUSE="debug startup-notification +xcomposite"
|
| 16 |
|
| 17 |
RDEPEND=">=dev-libs/glib-2.20
|
| 18 |
>=x11-libs/gtk+-2.24:2
|
| 19 |
x11-libs/libICE
|
| 20 |
x11-libs/libSM
|
| 21 |
x11-libs/libX11
|
| 22 |
x11-libs/libXext
|
| 23 |
x11-libs/libXrandr
|
| 24 |
x11-libs/libXrender
|
| 25 |
x11-libs/pango
|
| 26 |
>=x11-libs/libwnck-2.30:1
|
| 27 |
>=xfce-base/libxfce4util-4.10
|
| 28 |
>=xfce-base/libxfce4ui-4.10
|
| 29 |
>=xfce-base/xfconf-4.10
|
| 30 |
startup-notification? ( x11-libs/startup-notification )
|
| 31 |
xcomposite? (
|
| 32 |
x11-libs/libXcomposite
|
| 33 |
x11-libs/libXdamage
|
| 34 |
x11-libs/libXfixes
|
| 35 |
)"
|
| 36 |
DEPEND="${RDEPEND}
|
| 37 |
dev-util/intltool
|
| 38 |
sys-devel/gettext
|
| 39 |
virtual/pkgconfig"
|
| 40 |
|
| 41 |
pkg_setup() {
|
| 42 |
XFCONF=(
|
| 43 |
--docdir="${EPREFIX}"/usr/share/doc/${PF}
|
| 44 |
$(use_enable startup-notification)
|
| 45 |
--enable-xsync
|
| 46 |
--enable-render
|
| 47 |
--enable-randr
|
| 48 |
$(use_enable xcomposite compositor)
|
| 49 |
$(xfconf_use_debug)
|
| 50 |
)
|
| 51 |
|
| 52 |
DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
|
| 53 |
}
|