simply bump version of all compiz-related ebuilds
This commit is contained in:
@ -1,4 +1,6 @@
|
||||
AUX compiz-plugins-extra-0.8.6-libnotify.patch 1412 RMD160 a4e1a09e293c5e1a16bf3b0fd7710d7440c12bcc SHA1 c9201df9851f3ef325fe6b2f612097bc10723b1b SHA256 864971c7f1ad664d64c4cfcca527c2a9788f95a2b030b2cc94f1d2ad9332c106
|
||||
AUX compiz-plugins-extra-no-gconf.patch 585 RMD160 bb3b291eab783be7f9754d724d3a96618fe2e614 SHA1 564d6614cc157397ae24347a731a9f4d65bf30f8 SHA256 0567850b07c3973f1b4bfd5c36a1e240a57e45a1714b63637ecec577febfc13f
|
||||
DIST compiz-plugins-extra-0.8.6.tar.bz2 2699385 RMD160 cd8d26902d38ee7fb42fe2077e483f92fc458929 SHA1 66c571c64910aa21808aedaee8c8ceb4c4a82c78 SHA256 e111beecd9e563065448aae81002fd6cb644b3cd0e11a8406d6a2d3146747de1
|
||||
DIST compiz-plugins-extra-0.8.8.tar.bz2 2689953 RMD160 948fc491075f202759a31a3395fcd31deb6fa101 SHA1 ce592993696c0b5d4e0bb13171897b4c25b3844e SHA256 bdce203098c62370b01b87741b04d3d9bc37e918789acce07120c4f081d5bbe3
|
||||
EBUILD compiz-plugins-extra-0.8.6-r9999.ebuild 1564 RMD160 28cf176862dd4bb9cfee9b434ab691090e9490f0 SHA1 ffedde3e900095a8b784856285f07937006da03a SHA256 59504a217dcdbbe674c9f21932d9a1a1e3b7981b5c1f0ebce02240196f89256a
|
||||
EBUILD compiz-plugins-extra-0.8.8-r9999.ebuild 1614 RMD160 9e1f235af93ba19013d02cb5c7e9b82ea4b37585 SHA1 dcbdb7c1dd7176215dd78e2e8927982ec19c4925 SHA256 73415cab9299d73fc82b48b0468ecd350b4a850e964a2610483f29fb30972826
|
||||
|
@ -0,0 +1,70 @@
|
||||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/compiz-plugins-extra/compiz-plugins-extra-0.8.6-r1.ebuild,v 1.5 2011/03/21 19:47:45 nirbheek Exp $
|
||||
|
||||
EAPI="2"
|
||||
|
||||
inherit autotools eutils gnome2-utils
|
||||
|
||||
DESCRIPTION="Compiz Fusion Window Decorator Extra Plugins"
|
||||
HOMEPAGE="http://www.compiz.org/"
|
||||
SRC_URI="http://releases.compiz.org/${PV}/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
|
||||
IUSE="gconf libnotify"
|
||||
|
||||
MY_PV="0.8.4"
|
||||
|
||||
RDEPEND="
|
||||
>=gnome-base/librsvg-2.14.0:2
|
||||
virtual/jpeg:0
|
||||
>=x11-libs/compiz-bcop-${MY_PV}
|
||||
>=x11-plugins/compiz-plugins-main-${PV}
|
||||
>=x11-wm/compiz-${PV}[gconf?]
|
||||
libnotify? ( x11-libs/libnotify )
|
||||
"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-util/intltool-0.35
|
||||
>=dev-util/pkgconfig-0.19
|
||||
>=sys-devel/gettext-0.15
|
||||
x11-libs/cairo
|
||||
gconf? ( gnome-base/gconf:2 )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
if ! use gconf; then
|
||||
epatch "${FILESDIR}"/${PN}-no-gconf.patch
|
||||
fi
|
||||
|
||||
# Pinkbyte: !STUB! Need to adapt patch for 0.8.8
|
||||
# epatch "${FILESDIR}/${P}-libnotify.patch"
|
||||
|
||||
# required to apply the above patch
|
||||
intltoolize --copy --force || die "intltoolize failed"
|
||||
eautoreconf || die "eautoreconf failed"
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--disable-dependency-tracking \
|
||||
--enable-fast-install \
|
||||
--disable-static \
|
||||
$(use_enable gconf schemas) \
|
||||
$(use_with libnotify)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install || die "emake install failed"
|
||||
find "${D}" -name '*.la' -delete || die
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
use gconf && gnome2_gconf_savelist
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
use gconf && gnome2_gconf_install
|
||||
}
|
Reference in New Issue
Block a user