summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago M. Mola <coldwind@gentoo.org>2007-12-26 13:57:48 +0000
committerSantiago M. Mola <coldwind@gentoo.org>2007-12-26 13:57:48 +0000
commit909d42f4a91a5a76e0eac30c8b5c7c4ee7d05e69 (patch)
treedc6f26a36a406045abbcabd493549d1009bf0d42 /x11-wm/flwm
parentRemove old versions. (diff)
downloadgentoo-2-909d42f4a91a5a76e0eac30c8b5c7c4ee7d05e69.tar.gz
gentoo-2-909d42f4a91a5a76e0eac30c8b5c7c4ee7d05e69.tar.bz2
gentoo-2-909d42f4a91a5a76e0eac30c8b5c7c4ee7d05e69.zip
Punt old versions.
(Portage version: 2.1.3.19)
Diffstat (limited to 'x11-wm/flwm')
-rw-r--r--x11-wm/flwm/ChangeLog5
-rw-r--r--x11-wm/flwm/files/digest-flwm-1.00-r43
-rw-r--r--x11-wm/flwm/flwm-1.00-r4.ebuild69
3 files changed, 4 insertions, 73 deletions
diff --git a/x11-wm/flwm/ChangeLog b/x11-wm/flwm/ChangeLog
index 98feaa2a4d5e..970790b7b6cb 100644
--- a/x11-wm/flwm/ChangeLog
+++ b/x11-wm/flwm/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-wm/flwm
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/flwm/ChangeLog,v 1.14 2007/12/15 21:15:37 coldwind Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/flwm/ChangeLog,v 1.15 2007/12/26 13:57:47 coldwind Exp $
+
+ 26 Dec 2007; Santiago M. Mola <coldwind@gentoo.org> -flwm-1.00-r4.ebuild:
+ Punt old versions.
*flwm-1.02 (15 Dec 2007)
diff --git a/x11-wm/flwm/files/digest-flwm-1.00-r4 b/x11-wm/flwm/files/digest-flwm-1.00-r4
deleted file mode 100644
index e4d23eb11336..000000000000
--- a/x11-wm/flwm/files/digest-flwm-1.00-r4
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 75047b2ddcac30eecfb380773177d54d flwm-1.00.tgz 61747
-RMD160 a5d8eb5d55b2aef5206147ecf3c7090afe924dc0 flwm-1.00.tgz 61747
-SHA256 f4df1a0a5699fead28d4737253b40fb999d1d610d48d4f1af46b51af84a94084 flwm-1.00.tgz 61747
diff --git a/x11-wm/flwm/flwm-1.00-r4.ebuild b/x11-wm/flwm/flwm-1.00-r4.ebuild
deleted file mode 100644
index 2350bb544337..000000000000
--- a/x11-wm/flwm/flwm-1.00-r4.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/flwm/flwm-1.00-r4.ebuild,v 1.12 2007/07/13 18:37:55 coldwind Exp $
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="A lightweight window manager based on fltk"
-HOMEPAGE="http://flwm.sourceforge.net"
-SRC_URI="http://flwm.sourceforge.net/${P}.tgz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="opengl"
-
-DEPEND="=x11-libs/fltk-1.1*
- opengl? ( virtual/opengl )"
-RDEPEND="${DEPEND}"
-
- #Configuration of the appearance and behavior of flwm
- #must be done at compile time, i.e. there is
- #no .flwmrc file or interactive configuring while
- #running. To quote the man page, "gcc is your friend,"
- #so this type of configuration must be done at compile
- #time by editing the config.h file. I can't see any
- #way to do this automagically so we'll echo a message
- #in pkg_postinst to tell the user to 'ebuild unpack'
- #and edit the config.h to their liking.
-
-pkg_setup() {
- if ! built_with_use x11-libs/fltk noxft ; then
- eerror "${PN} requires x11-libs/fltk built without xft support."
- eerror "Please, reinstall x11-libs/fltk with USE=\"noxft\""
- eerror "before installing ${PN}."
- die "fltk without noxft"
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${P}-fltk1.1.patch"
-}
-
-src_compile() {
- use opengl && export X_EXTRA_LIBS=-lGL
- append-flags -I/usr/include/fltk-1.1
- append-ldflags -L/usr/lib/fltk-1.1
-
- econf || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- doman flwm.1 || die
- dodoc README flwm_wmconfig || die
- dobin flwm || die
-}
-
-pkg_postinst() {
- elog "Customization of behaviour and appearance of"
- elog "flwm requires manually editing the config.h"
- elog "source file. If you want to change the defaults,"
- elog "do the following:"
- elog ""
- elog "\tebuild ${P}.ebuild unpack"
- elog "\t${EDITOR} ${S}/config.h "
- elog "\tebuild ${P} compile install qmerge"
-}