From ece2692f84f4b80f609120a74b231fda2c77536a Mon Sep 17 00:00:00 2001 From: Cédric Krier Date: Sat, 14 Jul 2007 15:10:15 +0000 Subject: Remove old (Portage version: 2.1.2.9) --- x11-wm/dwm/ChangeLog | 6 +++- x11-wm/dwm/dwm-4.0.ebuild | 70 ----------------------------------------- x11-wm/dwm/dwm-4.1.ebuild | 66 -------------------------------------- x11-wm/dwm/files/digest-dwm-4.0 | 3 -- x11-wm/dwm/files/digest-dwm-4.1 | 3 -- 5 files changed, 5 insertions(+), 143 deletions(-) delete mode 100644 x11-wm/dwm/dwm-4.0.ebuild delete mode 100644 x11-wm/dwm/dwm-4.1.ebuild delete mode 100644 x11-wm/dwm/files/digest-dwm-4.0 delete mode 100644 x11-wm/dwm/files/digest-dwm-4.1 (limited to 'x11-wm') diff --git a/x11-wm/dwm/ChangeLog b/x11-wm/dwm/ChangeLog index cd18a1df187b..017850ced691 100644 --- a/x11-wm/dwm/ChangeLog +++ b/x11-wm/dwm/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-wm/dwm # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/dwm/ChangeLog,v 1.20 2007/05/30 20:04:50 cedk Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/dwm/ChangeLog,v 1.21 2007/07/14 15:10:15 cedk Exp $ + + 14 Jul 2007; Cédric Krier -dwm-4.0.ebuild, + -dwm-4.1.ebuild: + Remove old *dwm-4.2 (30 May 2007) diff --git a/x11-wm/dwm/dwm-4.0.ebuild b/x11-wm/dwm/dwm-4.0.ebuild deleted file mode 100644 index 40b06539206f..000000000000 --- a/x11-wm/dwm/dwm-4.0.ebuild +++ /dev/null @@ -1,70 +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/dwm/dwm-4.0.ebuild,v 1.1 2007/04/20 18:39:49 cedk Exp $ - -inherit toolchain-funcs savedconfig - -DESCRIPTION="a dynamic window manager for X11" -HOMEPAGE="http://dwm.suckless.org/" -SRC_URI="http://suckless.org/download/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="" - -DEPEND="x11-libs/libX11" -RDEPEND=${DEPEND} - -src_unpack() { - unpack ${A} - cd "${S}" - - sed -i \ - -e "s/.*strip.*//" \ - Makefile || die "sed failed" - - sed -i \ - -e "s/CFLAGS = -Os/CFLAGS +=/" \ - -e "s/LDFLAGS =/LDFLAGS +=/" \ - 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" - emake CC=$(tc-getCC) || die "emake failed${msg}" -} - -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-4.1.ebuild b/x11-wm/dwm/dwm-4.1.ebuild deleted file mode 100644 index 6c7698e0b815..000000000000 --- a/x11-wm/dwm/dwm-4.1.ebuild +++ /dev/null @@ -1,66 +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/dwm/dwm-4.1.ebuild,v 1.1 2007/05/21 20:31:09 cedk Exp $ - -inherit toolchain-funcs savedconfig - -DESCRIPTION="a dynamic window manager for X11" -HOMEPAGE="http://dwm.suckless.org/" -SRC_URI="http://suckless.org/download/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="" - -DEPEND="x11-libs/libX11" -RDEPEND=${DEPEND} - -src_unpack() { - unpack ${A} - cd "${S}" - - sed -i \ - -e "s/CFLAGS = -Os/CFLAGS += -g/" \ - -e "s/LDFLAGS = -s/LDFLAGS += -g/" \ - 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" - emake CC=$(tc-getCC) || die "emake failed${msg}" -} - -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/files/digest-dwm-4.0 b/x11-wm/dwm/files/digest-dwm-4.0 deleted file mode 100644 index f7fdd360a1f9..000000000000 --- a/x11-wm/dwm/files/digest-dwm-4.0 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 7d56fe4d32d426f704530b1c6a1c9086 dwm-4.0.tar.gz 18072 -RMD160 69573532c7274bb79e226830c74c1d47a5416318 dwm-4.0.tar.gz 18072 -SHA256 ac9f9a5d08efdd8cf511593e8517cf4f74fedd65a7348ac7a9dd5899db4e4254 dwm-4.0.tar.gz 18072 diff --git a/x11-wm/dwm/files/digest-dwm-4.1 b/x11-wm/dwm/files/digest-dwm-4.1 deleted file mode 100644 index 2572222d3ece..000000000000 --- a/x11-wm/dwm/files/digest-dwm-4.1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 12b62b38e34e6666e6a9617747a0ed70 dwm-4.1.tar.gz 19209 -RMD160 3d7d49590593675473d2157b8eb4c2f11d8eab18 dwm-4.1.tar.gz 19209 -SHA256 8f92a9b1adaeac8b0d9f161a427548bad5867a87bdd6555fc3d5a93178f7a036 dwm-4.1.tar.gz 19209 -- cgit v1.2.3-65-gdbad