summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2011-10-07 15:24:35 +0000
committerJeroen Roovers <jer@gentoo.org>2011-10-07 15:24:35 +0000
commit718e86c3978352a6ac1b27f50f1cf2df879c8523 (patch)
treef8660c236bc77424683e24fee08eb416b601d372
parentAdd new listinfo/ftp mirrors. (diff)
downloadgentoo-2-718e86c3978352a6ac1b27f50f1cf2df879c8523.tar.gz
gentoo-2-718e86c3978352a6ac1b27f50f1cf2df879c8523.tar.bz2
gentoo-2-718e86c3978352a6ac1b27f50f1cf2df879c8523.zip
Old.
(Portage version: 2.2.0_alpha62/cvs/Linux x86_64)
-rw-r--r--x11-misc/dmenu/ChangeLog6
-rw-r--r--x11-misc/dmenu/dmenu-3.9.ebuild62
-rw-r--r--x11-misc/dmenu/dmenu-4.0.ebuild62
-rw-r--r--x11-misc/dmenu/dmenu-4.1.1.ebuild59
4 files changed, 5 insertions, 184 deletions
diff --git a/x11-misc/dmenu/ChangeLog b/x11-misc/dmenu/ChangeLog
index baa4fdfb2bb1..1bc6c62ab40f 100644
--- a/x11-misc/dmenu/ChangeLog
+++ b/x11-misc/dmenu/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-misc/dmenu
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/dmenu/ChangeLog,v 1.69 2011/10/06 20:31:28 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/dmenu/ChangeLog,v 1.70 2011/10/07 15:24:35 jer Exp $
+
+ 07 Oct 2011; Jeroen Roovers <jer@gentoo.org> -dmenu-3.9.ebuild,
+ -dmenu-4.0.ebuild, -dmenu-4.1.1.ebuild:
+ ^
*dmenu-4.4.1 (06 Oct 2011)
diff --git a/x11-misc/dmenu/dmenu-3.9.ebuild b/x11-misc/dmenu/dmenu-3.9.ebuild
deleted file mode 100644
index 9e9013a5023e..000000000000
--- a/x11-misc/dmenu/dmenu-3.9.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/dmenu/dmenu-3.9.ebuild,v 1.5 2008/11/01 17:19:57 nixnut Exp $
-
-inherit toolchain-funcs savedconfig
-
-DESCRIPTION="a generic, highly customizable, and efficient menu for the X Window System"
-HOMEPAGE="http://www.suckless.org/programs/dmenu.html"
-SRC_URI="http://code.suckless.org/dl/tools/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd"
-IUSE="xinerama"
-
-DEPEND="x11-libs/libX11
- xinerama? ( x11-libs/libXinerama )"
-RDEPEND=${DEPEND}
-
-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
-
- 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}"
-}
diff --git a/x11-misc/dmenu/dmenu-4.0.ebuild b/x11-misc/dmenu/dmenu-4.0.ebuild
deleted file mode 100644
index dfc42194d0ad..000000000000
--- a/x11-misc/dmenu/dmenu-4.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/dmenu/dmenu-4.0.ebuild,v 1.7 2010/07/17 10:43:00 jer Exp $
-
-inherit toolchain-funcs savedconfig
-
-DESCRIPTION="a generic, highly customizable, and efficient menu for the X Window System"
-HOMEPAGE="http://www.suckless.org/programs/dmenu.html"
-SRC_URI="http://code.suckless.org/dl/tools/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 hppa ppc ppc64 x86 ~x86-fbsd"
-IUSE="xinerama"
-
-DEPEND="x11-libs/libX11
- xinerama? ( x11-libs/libXinerama )"
-RDEPEND=${DEPEND}
-
-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
-
- 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}"
-}
diff --git a/x11-misc/dmenu/dmenu-4.1.1.ebuild b/x11-misc/dmenu/dmenu-4.1.1.ebuild
deleted file mode 100644
index da2e2cab4610..000000000000
--- a/x11-misc/dmenu/dmenu-4.1.1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/dmenu/dmenu-4.1.1.ebuild,v 1.2 2010/07/17 10:49:21 jer Exp $
-
-EAPI="2"
-
-inherit savedconfig toolchain-funcs
-
-DESCRIPTION="a generic, highly customizable, and efficient menu for the X Window System"
-HOMEPAGE="http://www.suckless.org/programs/dmenu.html"
-SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd"
-IUSE="xinerama"
-
-DEPEND="x11-libs/libX11
- xinerama? ( x11-libs/libXinerama )"
-RDEPEND=${DEPEND}
-
-src_prepare() {
- 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"
-
- restore_config config.h
-}
-
-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
-
- 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}"
-}