summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Krier <cedk@gentoo.org>2008-07-30 18:34:27 +0000
committerCédric Krier <cedk@gentoo.org>2008-07-30 18:34:27 +0000
commitb12b2aca01a824312d25f7972f2d8f5cde5010b8 (patch)
tree0920f8fb8919ca7247d39ef092711587de8fdea9 /x11-misc
parentVersion bump (diff)
downloadgentoo-2-b12b2aca01a824312d25f7972f2d8f5cde5010b8.tar.gz
gentoo-2-b12b2aca01a824312d25f7972f2d8f5cde5010b8.tar.bz2
gentoo-2-b12b2aca01a824312d25f7972f2d8f5cde5010b8.zip
Remove old
(Portage version: 2.1.4.4)
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/dmenu/ChangeLog5
-rw-r--r--x11-misc/dmenu/dmenu-3.2.ebuild54
2 files changed, 4 insertions, 55 deletions
diff --git a/x11-misc/dmenu/ChangeLog b/x11-misc/dmenu/ChangeLog
index a634c92c4d91..373c6c71119f 100644
--- a/x11-misc/dmenu/ChangeLog
+++ b/x11-misc/dmenu/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-misc/dmenu
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/dmenu/ChangeLog,v 1.44 2008/07/30 18:32:45 cedk Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/dmenu/ChangeLog,v 1.45 2008/07/30 18:34:27 cedk Exp $
+
+ 30 Jul 2008; Cédric Krier <cedk@gentoo.org> -dmenu-3.2.ebuild:
+ Remove old
*dmenu-3.8 (30 Jul 2008)
diff --git a/x11-misc/dmenu/dmenu-3.2.ebuild b/x11-misc/dmenu/dmenu-3.2.ebuild
deleted file mode 100644
index 945b4892acb4..000000000000
--- a/x11-misc/dmenu/dmenu-3.2.ebuild
+++ /dev/null
@@ -1,54 +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.2.ebuild,v 1.6 2008/07/20 14:38:42 cedk 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"
-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 ${PN}.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 ${PN}.h ${PF}.config.h
-
- dodoc README
-
- save_config ${PN}.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}"
-}