Portage is a package management system used by Gentoo Linux
# ChangeLog for games-misc/cowsay
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/cowsay/ChangeLog,v 1.19 2008/01/11 16:26:57 grobian Exp $
11 Jan 2008; Fabian Groffen
cowsay-3.03-r1.ebuild:
Dropped ppc-macos keyword, see you in prefix
*cowsay-3.03-r1 (09 May 2007)
09 May 2007; Tupone Alfredo
+files/cowsay-3.03-tongue.patch, +cowsay-3.03-r1.ebuild:
Cows tongue fixed, bug #177773 by Dirk
28 Feb 2007; Peter Weller
Keyworded x86-fbsd
06 Dec 2006; Chris Gianelloni
Removed sed-4 from *DEPEND.
11 May 2006; Thomas Cort
Stable on alpha.
03 Apr 2006; Thomas Cort
Added ~alpha keyword.
19 Feb 2006; Yuta SATOH
Stable on ppc64
23 Dec 2005; Yuta SATOH
added ~ppc64
13 Jul 2005; Stephen Bennett
mips stable
01 Jun 2005; Stephen Bennett
~mips keywords
06 Feb 2005; Aaron Walker
cowsay-3.03.ebuild:
Added cowsay command-line completion.
01 Feb 2005; Kito
added ~ppc-macos
15 Apr 2004; Guy Martin
Marked stable on hppa.
20 Mar 2004; Michael Sterrett
add STANDARD_HELP_VERSION=1 to the code to fix bug #45238; stop using the
provided install.sh script since it doesn't really make src_install cleaner.
07 Jan 2004; Jon Portnoy
AMD64 keywords.
23 Sep 2003; Todd Sunderlin
marked stable for sparc
06 Jun 2003;
DEPEND on sed >=4
*cowsay-3.03 (15 Jul 2002)
13 May 2003; Martin Holzer
Fixing man page. Closes #20929.
15 Jul 2002; Maik Schreiber
Initial import, closes bug #4778.
ebuild submitted by Marcin Jessa
AUX cowsay-3.03-tongue.patch 358 RMD160 9de33eec59e44fd2a375bca1419313f856bade7f SHA1 4cb24d5ea35df531c1e8ad2d000d643e41e97964 SHA256 07a01f73455a00c50760cf1ef9e17a6483b0036ac23fb51d978d38deacdd0f9e
AUX cowsay.bashcomp 1095 RMD160 ba903de7778efaae9c8aeab3df04c1e9bf7e08a9 SHA1 5ad3591667985bb5bd67ce83eef4339483097946 SHA256 90edc2a5af3580e575ef2fd3d08ba65b0911781142c198eb825b6b5e063fc302
DIST cowsay-3.03.tar.gz 15189 RMD160 f26b9ffe3d5551ee8049979c628bbe198817044a SHA1 cc65a9b13295c87df94a58caa8a9176ce5ec4a27 SHA256 0b8672a7ac2b51183780db72618b42af8ec1ce02f6c05fe612510b650540b2af
EBUILD cowsay-3.03-r1.ebuild 1250 RMD160 d55f918bf7717af43def93224c9c7c755292e83a SHA1 52cb3aa09087fde9a2df9107effea25ba021dd5c SHA256 b61daa2b691688272411e7944cb541d700e5736e0c6bd8b8a37dd2eb6c13fb4f
EBUILD cowsay-3.03.ebuild 1195 RMD160 b5f647c2078364d641d5c24c38046175da8c4d30 SHA1 3ca43b6dacc21ea34e0ea2d330f9bcca4827b11c SHA256 3fa732f38bd49df5cc9ec7fd8e1fb859425bd5a3bb1774c43d346770e39e8db6
MISC ChangeLog 2311 RMD160 2628de1605cefe50e121592ef17e268cccf10870 SHA1 2398c480e7fcae60cc8eb98161f7aa39a95a534d SHA256 316cff7cc84834086542e01f260c86cdf1e691fb864eac7be7affcf2a53c6f01
MISC metadata.xml 158 RMD160 cbd9984bb6b426c8c9cee5022fe0a26261612fea SHA1 be5251fa1dacef5c41b74761bb1c8c54fb633b9e SHA256 1423a4fdd4a79b1728a2056d9e300f7e1074253095d82726218d9e9b953888a3
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/cowsay/cowsay-3.03-r1.ebuild,v 1.2 2008/01/11 16:26:57 grobian Exp $
inherit bash-completion eutils
DESCRIPTION="configurable talking ASCII cow (and other characters)"
HOMEPAGE="http://www.nog.net/~tony/warez/cowsay.shtml"
SRC_URI="http://www.nog.net/~tony/warez/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=dev-lang/perl-5"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e '1 c\#!/usr/bin/perl'\
-e 's/\$version/\$VERSION/g'\
-e "s:%PREFIX%/share/cows:/usr/share/${P}/cows:" \
-e '/getopts/ i\$Getopt::Std::STANDARD_HELP_VERSION=1;' cowsay \
|| die "sed cowsay failed"
sed -i \
-e "s|%PREFIX%/share/cows|/usr/share/${P}/cows|" cowsay.1 \
|| die "sed cowsay.1 failed"
epatch "${FILESDIR}/${P}"-tongue.patch
}
src_install() {
dobin cowsay || die "dobin failed"
doman cowsay.1
dosym cowsay /usr/bin/cowthink
dosym cowsay.1 /usr/share/man/man1/cowthink.1
dodir /usr/share/${P}/cows
cp -r cows "${D}"/usr/share/${P}/ || die "cp failed"
dobashcompletion "${FILESDIR}"/${PN}.bashcomp
}
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/cowsay/cowsay-3.03.ebuild,v 1.19 2008/01/11 16:26:57 grobian Exp $
inherit bash-completion
DESCRIPTION="configurable talking ASCII cow (and other characters)"
HOMEPAGE="http://www.nog.net/~tony/warez/cowsay.shtml"
SRC_URI="http://www.nog.net/~tony/warez/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa mips ppc ppc64 sparc x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=dev-lang/perl-5"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e '1 c\#!/usr/bin/perl'\
-e 's/\$version/\$VERSION/g'\
-e "s:%PREFIX%/share/cows:/usr/share/${P}/cows:" \
-e '/getopts/ i\$Getopt::Std::STANDARD_HELP_VERSION=1;' cowsay \
|| die "sed cowsay failed"
sed -i \
-e "s|%PREFIX%/share/cows|/usr/share/${P}/cows|" cowsay.1 \
|| die "sed cowsay.1 failed"
}
src_install() {
dobin cowsay || die "dobin failed"
doman cowsay.1
dosym cowsay /usr/bin/cowthink
dosym cowsay.1 /usr/share/man/man1/cowthink.1
dodir /usr/share/${PF}/cows
cp -r cows "${D}"/usr/share/${PF}/ || die "cp failed"
dobashcompletion "${FILESDIR}"/${PN}.bashcomp
}