Portage is a package management system used by Gentoo Linux
# ChangeLog for app-misc/cw
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/cw/ChangeLog,v 1.18 2008/05/11 09:33:14 armin76 Exp $
11 May 2008; Raúl Porcel
+cw-1.0.15.ebuild:
Remove the right ebuild, bug 2212933
10 May 2008; nixnut
Stable on ppc wrt bug 220931
08 May 2008; Raúl Porcel
x86 stable
27 Mar 2008; nixnut
Stable on ppc wrt bug 214934
27 Mar 2008; Ferris McCormick
Sparc stable --- Bug #215018 --- works fine.
*cw-1.0.15 (26 Mar 2008)
26 Mar 2008; Raúl Porcel
cw-1.0.14.ebuild, +cw-1.0.15.ebuild:
Version bump, x86 stable, remove old
19 Mar 2007; Bryan Østergaard
Remove ka0ttic from metadata.xml due to retirement.
21 Feb 2007; Piotr Jaroszyński
Transition to Manifest2.
28 Jan 2007; Marius Mauch
cw-1.0.12.ebuild, cw-1.0.14.ebuild:
Replacing einfo with elog
13 Feb 2006;
Added ~amd64, bug #122454
*cw-1.0.14 (30 Sep 2005)
30 Sep 2005; Aaron Walker
Version bump.
17 Jul 2005; Tobias Scherbaum
ppc stable
04 Jul 2005; Aaron Walker
Stable on x86.
05 Jun 2005; Michael Hanselmann
Stable on ppc.
*cw-1.0.12 (29 May 2005)
29 May 2005; Aaron Walker
Version bump.
08 May 2005; Stephanie Lockwood-Childs
mark ~ppc
09 Apr 2005; Aaron Walker
Marked stable on x86.
*cw-1.0.10 (15 Feb 2005)
15 Feb 2005; Aaron Walker
+cw-1.0.10.ebuild:
Initial commit; ebuild by me.
DIST cw-1.0.15.tar.bz2 75979 RMD160 ad422c0125f7155b0746914852e21b794fd8f772 SHA1 b43ffa1ae8ed8e54d71f63376d54c8ae5fc86156 SHA256 3a85a34c54ac460c92ffbe49ef306e86c541d959d4429736e404714a4aa87c40
EBUILD cw-1.0.15.ebuild 1554 RMD160 01d7dfd2e32ea62784f7146df4f0146b8fbe86d0 SHA1 e22a5f1c722044a6f57cacebf5bd66670fed7e45 SHA256 4445f3feadb367f896c15d3777bf1f85fcb77311a987e62c975d55e9884e939b
MISC ChangeLog 2121 RMD160 4399057eeaccba160ea8d1bd2bfdc671d7d9a53d SHA1 c5d62d440d26dc654243f3bb58a74593390d1a08 SHA256 8dcacab29a300a8c8b87d9eb48be6ab3cc566e1499950ceec61adcb516b4698a
MISC metadata.xml 165 RMD160 c4557a3518a065b077539be5a0f20e4735fc2141 SHA1 1831705b1eb97b63968fc9eef31aa904a69a854a SHA256 75ca85c472d4181ae0de529c83826baaebe75d9e750ee6621758b5096bceffcd
# Copyright 1999-2008 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.6 2008/05/11 09:33:15 armin76 Exp $
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="virtual/libc"
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() {
econf || die "econf failed"
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
}