diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-06-03 23:39:02 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-06-03 23:39:02 +0000 |
commit | 84dcc121f3f6908227bba8c9c4cf3379cd1fccf4 (patch) | |
tree | 38e309df7f8d61ea65962c106cb29ef8a6e48d2b /games-misc/cowsay | |
parent | libtool-2 screws us if we eautomake and micro version of installed automake i... (diff) | |
download | gentoo-2-84dcc121f3f6908227bba8c9c4cf3379cd1fccf4.tar.gz gentoo-2-84dcc121f3f6908227bba8c9c4cf3379cd1fccf4.tar.bz2 gentoo-2-84dcc121f3f6908227bba8c9c4cf3379cd1fccf4.zip |
old
(Portage version: 2.1.6.11/cvs/Linux i686)
Diffstat (limited to 'games-misc/cowsay')
-rw-r--r-- | games-misc/cowsay/Manifest | 1 | ||||
-rw-r--r-- | games-misc/cowsay/cowsay-3.03-r1.ebuild | 41 |
2 files changed, 0 insertions, 42 deletions
diff --git a/games-misc/cowsay/Manifest b/games-misc/cowsay/Manifest index 53c210f8258f..5238b5435104 100644 --- a/games-misc/cowsay/Manifest +++ b/games-misc/cowsay/Manifest @@ -1,7 +1,6 @@ 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 1248 RMD160 0e23dee9ef0a028b8c2944ed5424ba402813046d SHA1 8a9331bd0c9046eece3d8a10382e4b12627c34bd SHA256 fe18519f01bc31d7b81391a962a20aecddac41cbd73435e07a5805f216e5336d EBUILD cowsay-3.03-r2.ebuild 1185 RMD160 bbbbab87eb8ea86f210878ffd9f7fff7671fae47 SHA1 9a24c6e21ce43f08f7eb7036eee3cde3ff543232 SHA256 8fb4a72a7c123a56b43c7541f81483b8ac55ef706f7a5160c6d86915f9de5b9b MISC ChangeLog 4010 RMD160 d2d8d1d02cca46bc2015a34350ab9466c2ec4a23 SHA1 fb86dc607d1f801bcdbf6835294575bf69a3621d SHA256 de1f34d0fbd5c9c1460efbd90fbacea70906bb1a407b231a051e3d36e3b1d9cc MISC metadata.xml 158 RMD160 cbd9984bb6b426c8c9cee5022fe0a26261612fea SHA1 be5251fa1dacef5c41b74761bb1c8c54fb633b9e SHA256 1423a4fdd4a79b1728a2056d9e300f7e1074253095d82726218d9e9b953888a3 diff --git a/games-misc/cowsay/cowsay-3.03-r1.ebuild b/games-misc/cowsay/cowsay-3.03-r1.ebuild deleted file mode 100644 index dbbad609b91a..000000000000 --- a/games-misc/cowsay/cowsay-3.03-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# 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.8 2008/08/08 18:18:43 nixnut 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 ~ia64 ~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 -} |