diff options
author | Daniel Goller <morfic@gentoo.org> | 2004-09-23 04:52:40 +0000 |
---|---|---|
committer | Daniel Goller <morfic@gentoo.org> | 2004-09-23 04:52:40 +0000 |
commit | f01f6edbea9b18e74d4e3c3f3a8396920d16c9b8 (patch) | |
tree | f76715567cfea6f498c6bd29c303b40629ece943 /x11-wm/icewm | |
parent | support the offensive flag for bug #64985 (Manifest recommit) (diff) | |
download | gentoo-2-f01f6edbea9b18e74d4e3c3f3a8396920d16c9b8.tar.gz gentoo-2-f01f6edbea9b18e74d4e3c3f3a8396920d16c9b8.tar.bz2 gentoo-2-f01f6edbea9b18e74d4e3c3f3a8396920d16c9b8.zip |
look ma' a decent ebuild
Diffstat (limited to 'x11-wm/icewm')
-rw-r--r-- | x11-wm/icewm/ChangeLog | 5 | ||||
-rw-r--r-- | x11-wm/icewm/icewm-1.2.16-r1.ebuild | 32 |
2 files changed, 15 insertions, 22 deletions
diff --git a/x11-wm/icewm/ChangeLog b/x11-wm/icewm/ChangeLog index 180e4815af01..9ea1845dd25e 100644 --- a/x11-wm/icewm/ChangeLog +++ b/x11-wm/icewm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-wm/icewm # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/icewm/ChangeLog,v 1.66 2004/09/23 04:37:07 morfic Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/icewm/ChangeLog,v 1.67 2004/09/23 04:52:40 morfic Exp $ + + 22 Sep 2004; Daniel Goller <morfic@gentoo.org> icewm-1.2.16-r1.ebuild: + And some more small cleanups 22 Sep 2004; Daniel Goller <morfic@gentoo.org> icewm-1.2.16-r1.ebuild: removed 3 lines in there for debugging only diff --git a/x11-wm/icewm/icewm-1.2.16-r1.ebuild b/x11-wm/icewm/icewm-1.2.16-r1.ebuild index e7cf81e71306..0db9a99b0479 100644 --- a/x11-wm/icewm/icewm-1.2.16-r1.ebuild +++ b/x11-wm/icewm/icewm-1.2.16-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/icewm/icewm-1.2.16-r1.ebuild,v 1.6 2004/09/23 04:37:07 morfic Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/icewm/icewm-1.2.16-r1.ebuild,v 1.7 2004/09/23 04:52:40 morfic Exp $ inherit eutils @@ -49,24 +49,7 @@ src_unpack() { src_compile(){ - local myconf=" - $(use_with esd esd-config /usr/bin/esd-config) - - $(use_enable nls) - $(use_enable nls i18n) - - $(use_with imlib) - - $(use_enable spell GtkSpell) - - $(use_enable x86 x86-asm) - - $(use_enable xinerama) - - $(use_enable gnome menus-gnome1) - $(use_enable gnome menus-gnome2)" - - if use silverxp || use truetype + if use truetype then myconf="${myconf} --enable-gradients --enable-shape --enable-movesize-fx --enable-shaped-decorations" else @@ -77,11 +60,19 @@ src_compile(){ --with-libdir=/usr/share/icewm \ --with-cfgdir=/etc/icewm \ --with-docdir=/usr/share/doc/${PF}/html \ + $(use_with esd esd-config /usr/bin/esd-config) \ + $(use_enable nls) \ + $(use_enable nls i18n) \ + $(use_with imlib) \ + $(use_enable spell GtkSpell) \ + $(use_enable x86 x86-asm) \ + $(use_enable xinerama) \ + $(use_enable gnome menus-gnome1) \ + $(use_enable gnome menus-gnome2) \ ${myconf} || die "configure failed" sed -i "s:/icewm-\$(VERSION)::" src/Makefile || die "patch failed" - emake || die "emake failed" } @@ -94,7 +85,6 @@ src_install(){ exeinto /etc/X11/Sessions doexe $T/icewm - dodir /usr/share/xsessions insinto /usr/share/xsessions doins ${FILESDIR}/IceWM.desktop |