2012-02-08 10:13:10 +04:00
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
2011-12-27 22:59:48 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2012-05-07 00:14:41 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4ui/libxfce4ui-4.8.1.ebuild,v 1.8 2012/05/05 06:56:59 mgorny Exp $
|
2011-12-27 22:59:48 +04:00
|
|
|
|
|
|
|
EAPI=4
|
|
|
|
inherit xfconf
|
|
|
|
|
2012-02-08 10:13:10 +04:00
|
|
|
DESCRIPTION="Unified widgets and session management libraries for the Xfce desktop environment"
|
|
|
|
HOMEPAGE="http://www.xfce.org/projects/libxfce4"
|
|
|
|
SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
|
2011-12-27 22:59:48 +04:00
|
|
|
|
|
|
|
LICENSE="LGPL-2"
|
|
|
|
SLOT="0"
|
2012-04-23 07:35:38 +04:00
|
|
|
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
|
2012-02-08 10:13:10 +04:00
|
|
|
IUSE="debug glade startup-notification"
|
2011-12-27 22:59:48 +04:00
|
|
|
|
2012-03-25 16:54:11 +04:00
|
|
|
RDEPEND=">=dev-libs/glib-2.16:2
|
2012-02-08 10:13:10 +04:00
|
|
|
>=x11-libs/gtk+-2.14:2
|
2011-12-27 22:59:48 +04:00
|
|
|
x11-libs/libICE
|
|
|
|
x11-libs/libSM
|
2012-02-08 10:13:10 +04:00
|
|
|
x11-libs/libX11
|
2011-12-27 22:59:48 +04:00
|
|
|
>=xfce-base/libxfce4util-4.8
|
|
|
|
>=xfce-base/xfconf-4.8
|
|
|
|
glade? ( dev-util/glade:3 )
|
|
|
|
startup-notification? ( x11-libs/startup-notification )"
|
|
|
|
DEPEND="${RDEPEND}
|
2012-02-08 10:13:10 +04:00
|
|
|
dev-lang/perl
|
2012-02-08 09:18:06 +04:00
|
|
|
dev-util/intltool
|
2012-05-07 00:14:41 +04:00
|
|
|
virtual/pkgconfig
|
2012-02-08 10:13:10 +04:00
|
|
|
sys-devel/gettext"
|
2011-12-27 22:59:48 +04:00
|
|
|
|
|
|
|
pkg_setup() {
|
2012-02-08 10:13:10 +04:00
|
|
|
PATCHES=( "${FILESDIR}"/${P}-keyboard-shortcuts.patch ) #392001
|
2011-12-27 22:59:48 +04:00
|
|
|
|
|
|
|
XFCONF=(
|
|
|
|
$(use_enable startup-notification)
|
|
|
|
$(use_enable glade gladeui)
|
|
|
|
$(xfconf_use_debug)
|
|
|
|
--with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
|
|
|
|
)
|
|
|
|
|
|
|
|
[[ ${CHOST} == *-darwin* ]] && XFCONF+=( --disable-visibility ) #366857
|
|
|
|
|
|
|
|
DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
|
|
|
|
}
|