summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2011-03-27 21:51:11 +0000
committerJeremy Olexa <darkside@gentoo.org>2011-03-27 21:51:11 +0000
commita1f5b6312ecc79b7f3c21c030e8d4b5c660fb679 (patch)
treebf899db0e67f2a110d754216c4972edab23ca81d /app-misc/cw
parentremove old ebuilds (diff)
downloadgentoo-2-a1f5b6312ecc79b7f3c21c030e8d4b5c660fb679.tar.gz
gentoo-2-a1f5b6312ecc79b7f3c21c030e8d4b5c660fb679.tar.bz2
gentoo-2-a1f5b6312ecc79b7f3c21c030e8d4b5c660fb679.zip
remove old ebuilds
(Portage version: 2.1.9.44/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/cw')
-rw-r--r--app-misc/cw/ChangeLog5
-rw-r--r--app-misc/cw/cw-1.0.15.ebuild64
2 files changed, 4 insertions, 65 deletions
diff --git a/app-misc/cw/ChangeLog b/app-misc/cw/ChangeLog
index b9276f474589..4a08a7b66db5 100644
--- a/app-misc/cw/ChangeLog
+++ b/app-misc/cw/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-misc/cw
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/cw/ChangeLog,v 1.29 2011/03/19 20:32:13 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/cw/ChangeLog,v 1.30 2011/03/27 21:51:11 darkside Exp $
+
+ 27 Mar 2011; Jeremy Olexa <darkside@gentoo.org> -cw-1.0.15.ebuild:
+ remove old ebuilds
19 Mar 2011; Thomas Kahle <tomka@gentoo.org> cw-1.0.16-r2.ebuild:
x86 stable per bug 356881
diff --git a/app-misc/cw/cw-1.0.15.ebuild b/app-misc/cw/cw-1.0.15.ebuild
deleted file mode 100644
index d2bf325ca96d..000000000000
--- a/app-misc/cw/cw-1.0.15.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/cw/cw-1.0.15.ebuild,v 1.10 2011/01/10 19:17:46 jlec Exp $
-
-inherit toolchain-funcs
-
-DESCRIPTION="A non-intrusive real-time ANSI color wrapper for common unix-based commands"
-HOMEPAGE="http://cwrapper.sourceforge.net/"
-SRC_URI="mirror://sourceforge/cwrapper/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ppc ~sparc x86"
-IUSE=""
-
-DEPEND=">=sys-apps/sed-4"
-RDEPEND="!media-radio/unixcw"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i 's|\(CWLIB=\)/usr/local/lib/cw|\1/usr/lib/cw|' bin/colorcfg || \
- die "sed failed"
-}
-
-src_compile() {
- tc-export CC
- econf
- emake local || die "emake failed"
-}
-
-src_install() {
- insinto /usr/share/cw
- doins etc/*
-
- exeinto /usr/lib/cw
- doexe def/*
-
- doman man/*
- dodoc CHANGES CONTRIB INSTALL README PLATFORM doc/README*
-
- cd "${S}"/bin
- dobin cw cwu colorcfg
- # app-misc/color currently conflicts; hopefully 'colors' is safe
- newbin color colors
-}
-
-pkg_postinst() {
- ebegin "Updating definition files"
- cwu /usr/lib/cw /usr/bin/cw >/dev/null
- eend $?
-
- echo
- elog "To enable color-wrapper, as your user, run:"
- elog " colorcfg [1|2|3]"
- elog "to add relevant environment variables to your ~/.bash_profile"
- elog "Run colorcfg without options to see what [1|2|3] means."
- elog
- elog "After sourcing your ~/.bash_profile, commands for which definitions"
- elog "are provided should have colored output."
- elog
- elog "To enable/disable colored output, run: 'colors [on|off]'."
- echo
-}