diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-10-08 19:03:20 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-10-08 19:03:20 +0000 |
commit | bd8f6b2fc0ac1604335a7b0de91b5203584c15d3 (patch) | |
tree | a5f4e91c5338973d236a6cb2ec0e199cb99d730b /games-misc | |
parent | Rekeyword sparc per bug #190787 thanks to Tiago Cunha for digging into it (diff) | |
download | gentoo-2-bd8f6b2fc0ac1604335a7b0de91b5203584c15d3.tar.gz gentoo-2-bd8f6b2fc0ac1604335a7b0de91b5203584c15d3.tar.bz2 gentoo-2-bd8f6b2fc0ac1604335a7b0de91b5203584c15d3.zip |
Version bump.
(Portage version: 2.1.3.12)
Diffstat (limited to 'games-misc')
-rw-r--r-- | games-misc/wtf/ChangeLog | 9 | ||||
-rw-r--r-- | games-misc/wtf/files/digest-wtf-20071004 | 3 | ||||
-rw-r--r-- | games-misc/wtf/wtf-20071004.ebuild | 31 |
3 files changed, 41 insertions, 2 deletions
diff --git a/games-misc/wtf/ChangeLog b/games-misc/wtf/ChangeLog index 81c45f6ec3da..77e3739e5cd9 100644 --- a/games-misc/wtf/ChangeLog +++ b/games-misc/wtf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-misc/wtf -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/wtf/ChangeLog,v 1.12 2006/07/18 08:00:35 flameeyes Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-misc/wtf/ChangeLog,v 1.13 2007/10/08 19:03:20 vapier Exp $ + +*wtf-20071004 (08 Oct 2007) + + 08 Oct 2007; Mike Frysinger <vapier@gentoo.org> +wtf-20071004.ebuild: + Version bump. 18 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> wtf-20051104.ebuild: Add ~x86-fbsd keyword. diff --git a/games-misc/wtf/files/digest-wtf-20071004 b/games-misc/wtf/files/digest-wtf-20071004 new file mode 100644 index 000000000000..119fc7be8fae --- /dev/null +++ b/games-misc/wtf/files/digest-wtf-20071004 @@ -0,0 +1,3 @@ +MD5 25944e275cc858e30cacea341509d19b wtf-20071004.tar.gz 9254 +RMD160 7eeda84251e06f6b3e6e854093bbeb8aadf79249 wtf-20071004.tar.gz 9254 +SHA256 bd287c7f3a563392345fdd372283c9c7cd1582e9998a9756830e8d24440b9a37 wtf-20071004.tar.gz 9254 diff --git a/games-misc/wtf/wtf-20071004.ebuild b/games-misc/wtf/wtf-20071004.ebuild new file mode 100644 index 000000000000..0f0abde28c5f --- /dev/null +++ b/games-misc/wtf/wtf-20071004.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-misc/wtf/wtf-20071004.ebuild,v 1.1 2007/10/08 19:03:20 vapier Exp $ + +inherit eutils + +DESCRIPTION="translates acronyms for you" +HOMEPAGE="http://www.mu.org/~mux/wtf/" +SRC_URI="http://www.mu.org/~mux/wtf/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="!games-misc/bsd-games" +RDEPEND="${DEPEND} + sys-apps/grep" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-20050505-updates.patch +} + +src_install() { + dobin wtf || die "dogamesbin failed" + doman wtf.6 + insinto /usr/share/misc + doins acronyms* || die "doins failed" +} |