diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-06-25 18:37:32 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-06-25 18:37:32 +0000 |
commit | 1643d09411e68616eaeb982c079ae204c8351433 (patch) | |
tree | 90f6c4d280147c98541a3ac13f01693405842ab6 | |
parent | Fixed dependency issue. (diff) | |
download | gentoo-2-1643d09411e68616eaeb982c079ae204c8351433.tar.gz gentoo-2-1643d09411e68616eaeb982c079ae204c8351433.tar.bz2 gentoo-2-1643d09411e68616eaeb982c079ae204c8351433.zip |
tweak config
-rw-r--r-- | x11-misc/xfce4-panel/Manifest | 2 | ||||
-rw-r--r-- | x11-misc/xfce4-panel/xfce4-panel-3.91.0.ebuild | 18 | ||||
-rw-r--r-- | x11-misc/xfdesktop/Manifest | 2 | ||||
-rw-r--r-- | x11-misc/xfdesktop/xfdesktop-3.91.0.ebuild | 14 |
4 files changed, 28 insertions, 8 deletions
diff --git a/x11-misc/xfce4-panel/Manifest b/x11-misc/xfce4-panel/Manifest index 29193888de37..e0f219a3e5bb 100644 --- a/x11-misc/xfce4-panel/Manifest +++ b/x11-misc/xfce4-panel/Manifest @@ -1,4 +1,4 @@ -MD5 0e54007eca8edb36079d37ffb404f663 xfce4-panel-3.91.0.ebuild 935 +MD5 41fc00868e8c03ad86b048f8d87d6e4c xfce4-panel-3.91.0.ebuild 1060 MD5 fb6226f1d554d80df8d7f0a358e1940a xfce4-panel-3.90.0.ebuild 915 MD5 12df6cbd83c3ff37f923f53e020b96c4 ChangeLog 474 MD5 d4fc9f75e3e4980bfa865ce3eb788976 files/digest-xfce4-panel-3.90.0 70 diff --git a/x11-misc/xfce4-panel/xfce4-panel-3.91.0.ebuild b/x11-misc/xfce4-panel/xfce4-panel-3.91.0.ebuild index ace297cef4de..37e3a1e2548e 100644 --- a/x11-misc/xfce4-panel/xfce4-panel-3.91.0.ebuild +++ b/x11-misc/xfce4-panel/xfce4-panel-3.91.0.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfce4-panel/xfce4-panel-3.91.0.ebuild,v 1.2 2003/06/25 07:36:18 bcowan Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfce4-panel/xfce4-panel-3.91.0.ebuild,v 1.3 2003/06/25 18:35:04 bcowan Exp $ -IUSE="" +IUSE="X" S=${WORKDIR}/${P} DESCRIPTION="Xfce4 panel" @@ -14,14 +14,24 @@ LICENSE="GPL-2" KEYWORDS="~x86 ~ppc ~alpha ~sparc" DEPEND=">=x11-libs/gtk+-2.0.6 - gnome-base/librsvg dev-util/pkgconfig dev-libs/libxml2 - =x11-libs/libxfce4util-3.91.0 + gnome-base/librsvg + =x11-libs/libxfce4util-3.91.0 =x11-libs/libxfcegui4-3.91.0 =x11-libs/libxfce4mcs-3.91.0 =x11-misc/xfce-mcs-manager-3.91.0" +src_compile() { + local myconf + myconf="" + + use X && myconf="${myconf} --with-x" + + econf ${myconf} || die + emake || die +} + src_install() { make DESTDIR=${D} install || die diff --git a/x11-misc/xfdesktop/Manifest b/x11-misc/xfdesktop/Manifest index 4f5962f7d407..170d46441c90 100644 --- a/x11-misc/xfdesktop/Manifest +++ b/x11-misc/xfdesktop/Manifest @@ -1,4 +1,4 @@ -MD5 eac27aaadeef44d7c1b95d36ffb86e74 xfdesktop-3.91.0.ebuild 913 +MD5 a563447e970a2e34dc42dbc5eed9df50 xfdesktop-3.91.0.ebuild 1038 MD5 5ecbbac606b2c4fb0b0c7031ebcd103f ChangeLog 462 MD5 5831fefd1e1c1625022e71fcc21a69de xfdesktop-3.90.0.ebuild 913 MD5 c6cf7c00bac72188466ef97425c12a3f files/digest-xfdesktop-3.90.0 69 diff --git a/x11-misc/xfdesktop/xfdesktop-3.91.0.ebuild b/x11-misc/xfdesktop/xfdesktop-3.91.0.ebuild index 0e1516e8e846..7b220de649c5 100644 --- a/x11-misc/xfdesktop/xfdesktop-3.91.0.ebuild +++ b/x11-misc/xfdesktop/xfdesktop-3.91.0.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfdesktop/xfdesktop-3.91.0.ebuild,v 1.1 2003/06/25 06:06:08 bcowan Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfdesktop/xfdesktop-3.91.0.ebuild,v 1.2 2003/06/25 18:37:12 bcowan Exp $ -IUSE="" +IUSE="X" S=${WORKDIR}/${P} DESCRIPTION="Xfce4 desktop" @@ -21,6 +21,16 @@ DEPEND=">=x11-libs/gtk+-2.0.6 =x11-libs/libxfce4mcs-3.91.0 =x11-misc/xfce-mcs-manager-3.91.0" +src_compile() { + local myconf + myconf="" + + use X && myconf="${myconf} --with-x" + + econf ${myconf} || die + emake || die +} + src_install() { make DESTDIR=${D} install || die |