diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2004-07-12 17:09:33 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2004-07-12 17:09:33 +0000 |
commit | 4598e067c22136de24f48ad5301a2dec2e3c48ff (patch) | |
tree | a86ded723f8296e5d8d31bece3f84dde48fb6eec /xfce-base/xfwm4 | |
parent | x86 and sparc update (Manifest recommit) (diff) | |
download | gentoo-2-4598e067c22136de24f48ad5301a2dec2e3c48ff.tar.gz gentoo-2-4598e067c22136de24f48ad5301a2dec2e3c48ff.tar.bz2 gentoo-2-4598e067c22136de24f48ad5301a2dec2e3c48ff.zip |
Version bump. Bugfix release on stable branch that fixes cropped icons with gtk-2.4 along with many others.
Diffstat (limited to 'xfce-base/xfwm4')
-rw-r--r-- | xfce-base/xfwm4/ChangeLog | 8 | ||||
-rw-r--r-- | xfce-base/xfwm4/files/digest-xfwm4-4.0.6 | 1 | ||||
-rw-r--r-- | xfce-base/xfwm4/xfwm4-4.0.6.ebuild | 39 |
3 files changed, 47 insertions, 1 deletions
diff --git a/xfce-base/xfwm4/ChangeLog b/xfce-base/xfwm4/ChangeLog index 684625cdfe99..7fab2ed2bfc6 100644 --- a/xfce-base/xfwm4/ChangeLog +++ b/xfce-base/xfwm4/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for xfce-base/xfwm4 # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfwm4/ChangeLog,v 1.29 2004/06/24 21:59:36 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfwm4/ChangeLog,v 1.30 2004/07/12 17:09:33 bcowan Exp $ + +*xfwm4-4.0.6 (12 Jul 2004) + + 12 Jul 2004; Brad Cowan <bcowan@gentoo.org> +xfwm4-4.0.6.ebuild: + Version bump. Bugfix release on stable branch that fixes cropped icons with + gtk-2.4 along with many others. 23 Jun 2004; <malc@gentoo.org> xfwm4-4.0.5.ebuild: Mark stable on amd64 diff --git a/xfce-base/xfwm4/files/digest-xfwm4-4.0.6 b/xfce-base/xfwm4/files/digest-xfwm4-4.0.6 new file mode 100644 index 000000000000..a011cf0bda72 --- /dev/null +++ b/xfce-base/xfwm4/files/digest-xfwm4-4.0.6 @@ -0,0 +1 @@ +MD5 911688ba221bc65e66e15bb87993edec xfwm4-4.0.6.tar.gz 975194 diff --git a/xfce-base/xfwm4/xfwm4-4.0.6.ebuild b/xfce-base/xfwm4/xfwm4-4.0.6.ebuild new file mode 100644 index 000000000000..dd6d5c90e50d --- /dev/null +++ b/xfce-base/xfwm4/xfwm4-4.0.6.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfwm4/xfwm4-4.0.6.ebuild,v 1.1 2004/07/12 17:09:33 bcowan Exp $ + +IUSE="X" + +DESCRIPTION="Xfce4 windowmanager" +HOMEPAGE="http://www.xfce.org/" +SRC_URI="http://www.xfce.org/archive/xfce-${PV}/src/${P}.tar.gz + http://hannelore.f1.fhtw-berlin.de/mirrors/xfce4/xfce-${PV}/src/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~ia64 ~x86 ~ppc ~alpha ~sparc ~amd64 ~hppa ~mips" + +RDEPEND=">=x11-libs/gtk+-2.0.6 + dev-libs/libxml2 + =xfce-base/libxfce4util-${PV} + =xfce-base/libxfcegui4-${PV} + =xfce-base/libxfce4mcs-${PV} + =xfce-base/xfce-mcs-manager-${PV} + x11-libs/startup-notification" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_compile() { + local myconf + myconf="" + + use X && myconf="${myconf} --with-x" + + econf ${myconf} || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc AUTHORS INSTALL NEWS COPYING README ChangeLog TODO +} |