diff options
Diffstat (limited to 'x11-wm/WindowMaker/WindowMaker-0.80.0-r3.ebuild')
-rw-r--r-- | x11-wm/WindowMaker/WindowMaker-0.80.0-r3.ebuild | 121 |
1 files changed, 0 insertions, 121 deletions
diff --git a/x11-wm/WindowMaker/WindowMaker-0.80.0-r3.ebuild b/x11-wm/WindowMaker/WindowMaker-0.80.0-r3.ebuild deleted file mode 100644 index 2d88d36b4d9e..000000000000 --- a/x11-wm/WindowMaker/WindowMaker-0.80.0-r3.ebuild +++ /dev/null @@ -1,121 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/WindowMaker/WindowMaker-0.80.0-r3.ebuild,v 1.7 2002/07/11 06:31:00 drobbins Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="Window Maker" -SRC_URI="ftp://ftp.windowmaker.org/pub/source/release/${P}.tar.gz - ftp://ftp.windowmaker.org/pub/source/release/WindowMaker-extra-0.1.tar.gz" -HOMEPAGE="http://www.windowmaker.org/" -SLOT="0" -DEPEND="virtual/x11 - >=media-libs/tiff-3.5.5 - x11-wm/gnustep-env - png? ( >=media-libs/libpng-1.2.1 ) - jpeg? ( >=media-libs/jpeg-6b-r2 ) - gif? ( >=media-libs/giflib-4.1.0-r3 - >=media-libs/libungif-4.1.0 )" - -RDEPEND="nls? ( >=sys-devel/gettext-0.10.39 )" -LICENSE="GPL-2" -KEYWORDS="x86" - -#NOTE: the default menu has the wrong path for the WMPrefs utility. -# Needs fixing. - -src_compile() { - - patch -p1 < ${FILESDIR}/wmfpo-80.patch - - local myconf - - use gnome \ - && myconf="${myconf} --enable-gnome" \ - || myconf="${myconf} --disable-gnome" - - use kde \ - && myconf="${myconf} --enable-kde" \ - && export KDEDIR=/usr/kde/2 \ - || myconf="${myconf} --disable-kde" - - if [ "$WITH_MODELOCK" ] ; then - myconf="${myconf} --enable-modelock" - else - myconf="${myconf} --disable-modelock" - fi - - use nls \ - && export LINGUAS="`ls po/*.po | sed 's:po/\(.*\)\.po$:\1:'`" \ - || myconf="${myconf} --disable-nls --disable-locale" - - use gif \ - || myconf="${myconf} --disable-gif" - - use jpeg \ - || myconf="${myconf} --disable-jpeg" - - use png \ - || myconf="${myconf} --disable-png" - - - use esd || use alsa || use oss \ - && myconf="${myconf} --enable-sound" \ - || myconf="${myconf} --disable-sound" - - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - --sysconfdir=/etc/X11 \ - --with-x \ - --enable-newstyle \ - --enable-superfluous \ - --enable-usermenu \ - ${myconf} || die - - emake || die - - # WindowMaker Extra - cd ../WindowMaker-extra-0.1 - ./configure --host=${CHOST} \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info || die - - make || die -} - -src_install() { - - make prefix=${D}/usr \ - mandir=${D}/usr/share/man \ - infodir=${D}/usr/share/info \ - sysconfdir=${D}/etc/X11 \ - GNUSTEP_LOCAL_ROOT=${D}${GNUSTEP_LOCAL_ROOT} \ - install || die - - cp -f WindowMaker/plmenu ${D}/etc/X11/WindowMaker/WMRootMenu - - dodoc AUTHORS BUGFORUM BUGS ChangeLog COPYING* INSTALL* FAQ* \ - MIRRORS README* NEWS TODO - - # WindowMaker Extra - cd ../WindowMaker-extra-0.1 - make prefix=${D}/usr \ - mandir=${D}/usr/share/man \ - infodir=${D}/usr/share/info \ - install || die - - newdoc README README.extra -} - -pkg_postinst() { - - echo - echo '######################################################################' - echo '# If do you want trans globes and other trans elements do you need #' - echo '# the libxpm (media-libs/xpm). #' - echo '######################################################################' - } - |