diff options
author | Romain Perier <mrpouet@gentoo.org> | 2009-10-15 17:16:55 +0000 |
---|---|---|
committer | Romain Perier <mrpouet@gentoo.org> | 2009-10-15 17:16:55 +0000 |
commit | 0675bac210d9b8ad41e3346660d65e95319e6bf8 (patch) | |
tree | 2268d539cfaf8b88ca10bdac7caf1109125679f7 /x11-plugins/compiz-plugins-main | |
parent | Removed old and filter as-needed when building with Intel compilers (diff) | |
download | historical-0675bac210d9b8ad41e3346660d65e95319e6bf8.tar.gz historical-0675bac210d9b8ad41e3346660d65e95319e6bf8.tar.bz2 historical-0675bac210d9b8ad41e3346660d65e95319e6bf8.zip |
Version bump
Package-Manager: portage-2.2_rc46/cvs/Linux x86_64
Diffstat (limited to 'x11-plugins/compiz-plugins-main')
-rw-r--r-- | x11-plugins/compiz-plugins-main/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/compiz-plugins-main/compiz-plugins-main-0.8.4.ebuild | 50 |
2 files changed, 57 insertions, 1 deletions
diff --git a/x11-plugins/compiz-plugins-main/ChangeLog b/x11-plugins/compiz-plugins-main/ChangeLog index 81e07ef3b52e..3d10ba68006d 100644 --- a/x11-plugins/compiz-plugins-main/ChangeLog +++ b/x11-plugins/compiz-plugins-main/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-plugins/compiz-plugins-main # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/compiz-plugins-main/ChangeLog,v 1.6 2009/08/28 20:16:01 mrpouet Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/compiz-plugins-main/ChangeLog,v 1.7 2009/10/15 17:12:06 mrpouet Exp $ + +*compiz-plugins-main-0.8.4 (15 Oct 2009) + + 15 Oct 2009; Romain Perier <mrpouet@gentoo.org> + +compiz-plugins-main-0.8.4.ebuild: + Version bump. *compiz-plugins-main-0.8.2-r1 (28 Aug 2009) diff --git a/x11-plugins/compiz-plugins-main/compiz-plugins-main-0.8.4.ebuild b/x11-plugins/compiz-plugins-main/compiz-plugins-main-0.8.4.ebuild new file mode 100644 index 000000000000..96e42dac0b1c --- /dev/null +++ b/x11-plugins/compiz-plugins-main/compiz-plugins-main-0.8.4.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/compiz-plugins-main/compiz-plugins-main-0.8.4.ebuild,v 1.1 2009/10/15 17:12:06 mrpouet Exp $ + +EAPI="2" + +inherit eutils gnome2-utils + +DESCRIPTION="Compiz Fusion Window Decorator 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="gnome" + +RDEPEND=" + !x11-plugins/compiz-fusion-plugins-main + >=gnome-base/librsvg-2.14.0 + media-libs/jpeg + x11-libs/cairo + ~x11-libs/compiz-bcop-${PV} + ~x11-wm/compiz-${PV}[gnome?] +" + +DEPEND="${RDEPEND} + >=dev-util/intltool-0.35 + >=dev-util/pkgconfig-0.19 + >=sys-devel/gettext-0.15 +" + +src_prepare() { + use gnome || epatch "${FILESDIR}"/${PN}-no-gconf.patch +} + +src_configure() { + econf $(use_enable gnome schemas) || die "econf failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" +} +pkg_preinst() { + use gnome && gnome2_gconf_savelist +} + +pkg_postinst() { + use gnome && gnome2_gconf_install +} |