summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Krier <cedk@gentoo.org>2009-02-09 09:22:58 +0000
committerCédric Krier <cedk@gentoo.org>2009-02-09 09:22:58 +0000
commit735f2eea0e5033ccc51ae53aaee6141f694c43a6 (patch)
tree9cc0ef83765e9488563a0c67a531beca556901e4 /x11-wm/dwm
parentMade installation of logrotate stuf unconditional. Closes bug #258176. (diff)
downloadgentoo-2-735f2eea0e5033ccc51ae53aaee6141f694c43a6.tar.gz
gentoo-2-735f2eea0e5033ccc51ae53aaee6141f694c43a6.tar.bz2
gentoo-2-735f2eea0e5033ccc51ae53aaee6141f694c43a6.zip
Remove old
(Portage version: 2.1.6.4/cvs/Linux 2.6.27-hardened-r3 i686)
Diffstat (limited to 'x11-wm/dwm')
-rw-r--r--x11-wm/dwm/ChangeLog6
-rw-r--r--x11-wm/dwm/dwm-5.0.1.ebuild75
-rw-r--r--x11-wm/dwm/dwm-5.1.ebuild75
3 files changed, 5 insertions, 151 deletions
diff --git a/x11-wm/dwm/ChangeLog b/x11-wm/dwm/ChangeLog
index 6e4ee9501fe3..66a7f2bacdef 100644
--- a/x11-wm/dwm/ChangeLog
+++ b/x11-wm/dwm/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-wm/dwm
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/dwm/ChangeLog,v 1.53 2009/02/08 23:08:38 cedk Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/dwm/ChangeLog,v 1.54 2009/02/09 09:22:58 cedk Exp $
+
+ 09 Feb 2009; Cédric Krier <cedk@gentoo.org> -dwm-5.0.1.ebuild,
+ -dwm-5.1.ebuild:
+ Remove old
*dwm-5.4.1 (08 Feb 2009)
diff --git a/x11-wm/dwm/dwm-5.0.1.ebuild b/x11-wm/dwm/dwm-5.0.1.ebuild
deleted file mode 100644
index f3b986a894ee..000000000000
--- a/x11-wm/dwm/dwm-5.0.1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/dwm/dwm-5.0.1.ebuild,v 1.8 2008/07/22 20:03:27 corsair Exp $
-
-inherit toolchain-funcs savedconfig
-
-DESCRIPTION="a dynamic window manager for X11"
-HOMEPAGE="http://www.suckless.org/dwm/"
-SRC_URI="http://code.suckless.org/dl/dwm/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd"
-IUSE="xinerama"
-
-RDEPEND="x11-libs/libX11
- xinerama? ( x11-libs/libXinerama )"
-DEPEND="${RDEPEND}
- xinerama? ( x11-proto/xineramaproto )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- sed -i \
- -e "s/CFLAGS = -std=c99 -pedantic -Wall -Os/CFLAGS += -std=c99 -pedantic -Wall -g/" \
- -e "s/LDFLAGS = -s/LDFLAGS += -g/" \
- -e "s/XINERAMALIBS =/XINERAMALIBS ?=/" \
- -e "s/XINERAMAFLAGS =/XINERAMAFLAGS ?=/" \
- config.mk || die "sed failed"
-
- if use savedconfig; then
- restore_config config.h
- fi
-}
-
-src_compile() {
- local msg
- use savedconfig && msg=", please check the configfile"
- if use xinerama; then
- emake CC=$(tc-getCC) || die "emake failed${msg}"
- else
- emake CC=$(tc-getCC) XINERAMAFLAGS="" XINERAMALIBS="" \
- || die "emake failed${msg}"
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed"
-
- insinto /usr/share/${PN}
- newins config.h ${PF}.config.h
-
- exeinto /etc/X11/Sessions
- newexe "${FILESDIR}"/dwm-session dwm
-
- insinto /usr/share/xsessions
- doins "${FILESDIR}"/dwm.desktop
-
- dodoc README
-
- save_config config.h
-}
-
-pkg_postinst() {
- einfo "This ebuild has support for user defined configs"
- einfo "Please read this ebuild for more details and re-emerge as needed"
- einfo "if you want to add or remove functionality for ${PN}"
- if ! has_version x11-misc/dmenu; then
- elog "Installing ${PN} without x11-misc/dmenu"
- einfo "To have a menu you can install x11-misc/dmenu"
- fi
- einfo "You can custom status bar with a script in HOME/.dwm/dwmrc"
- einfo "the ouput is redirected to the standard input of dwm"
-}
diff --git a/x11-wm/dwm/dwm-5.1.ebuild b/x11-wm/dwm/dwm-5.1.ebuild
deleted file mode 100644
index 7651a5a9e230..000000000000
--- a/x11-wm/dwm/dwm-5.1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/dwm/dwm-5.1.ebuild,v 1.1 2008/07/30 18:22:33 cedk Exp $
-
-inherit toolchain-funcs savedconfig
-
-DESCRIPTION="a dynamic window manager for X11"
-HOMEPAGE="http://www.suckless.org/dwm/"
-SRC_URI="http://code.suckless.org/dl/dwm/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
-IUSE="xinerama"
-
-RDEPEND="x11-libs/libX11
- xinerama? ( x11-libs/libXinerama )"
-DEPEND="${RDEPEND}
- xinerama? ( x11-proto/xineramaproto )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- sed -i \
- -e "s/CFLAGS = -std=c99 -pedantic -Wall -Os/CFLAGS += -std=c99 -pedantic -Wall -g/" \
- -e "s/LDFLAGS = -s/LDFLAGS += -g/" \
- -e "s/XINERAMALIBS =/XINERAMALIBS ?=/" \
- -e "s/XINERAMAFLAGS =/XINERAMAFLAGS ?=/" \
- config.mk || die "sed failed"
-
- if use savedconfig; then
- restore_config config.h
- fi
-}
-
-src_compile() {
- local msg
- use savedconfig && msg=", please check the configfile"
- if use xinerama; then
- emake CC=$(tc-getCC) || die "emake failed${msg}"
- else
- emake CC=$(tc-getCC) XINERAMAFLAGS="" XINERAMALIBS="" \
- || die "emake failed${msg}"
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed"
-
- insinto /usr/share/${PN}
- newins config.h ${PF}.config.h
-
- exeinto /etc/X11/Sessions
- newexe "${FILESDIR}"/dwm-session dwm
-
- insinto /usr/share/xsessions
- doins "${FILESDIR}"/dwm.desktop
-
- dodoc README
-
- save_config config.h
-}
-
-pkg_postinst() {
- einfo "This ebuild has support for user defined configs"
- einfo "Please read this ebuild for more details and re-emerge as needed"
- einfo "if you want to add or remove functionality for ${PN}"
- if ! has_version x11-misc/dmenu; then
- elog "Installing ${PN} without x11-misc/dmenu"
- einfo "To have a menu you can install x11-misc/dmenu"
- fi
- einfo "You can custom status bar with a script in HOME/.dwm/dwmrc"
- einfo "the ouput is redirected to the standard input of dwm"
-}