diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 18:14:28 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 18:14:28 +0000 |
commit | 5185da51cd857a2dfde2d4b4705136834d5354e4 (patch) | |
tree | 751722dcc6f2f65f7839b89babf369c6a7de9fb3 /games-misc/wtf | |
parent | stable on x86/alpha (diff) | |
download | gentoo-2-5185da51cd857a2dfde2d4b4705136834d5354e4.tar.gz gentoo-2-5185da51cd857a2dfde2d4b4705136834d5354e4.tar.bz2 gentoo-2-5185da51cd857a2dfde2d4b4705136834d5354e4.zip |
games-misc
Diffstat (limited to 'games-misc/wtf')
-rw-r--r-- | games-misc/wtf/ChangeLog | 11 | ||||
-rw-r--r-- | games-misc/wtf/Manifest | 3 | ||||
-rw-r--r-- | games-misc/wtf/files/digest-wtf-20021005 | 1 | ||||
-rw-r--r-- | games-misc/wtf/wtf-20021005.ebuild | 24 |
4 files changed, 39 insertions, 0 deletions
diff --git a/games-misc/wtf/ChangeLog b/games-misc/wtf/ChangeLog new file mode 100644 index 000000000000..c0de8b9b1d28 --- /dev/null +++ b/games-misc/wtf/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-games/wtf +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-misc/wtf/ChangeLog,v 1.1 2003/09/10 18:14:05 vapier Exp $ + + 28 Jun 2003; <msterret@gentoo.org> wtf-20021005.ebuild: + use sed -i + +*wtf-20021005 (04 Mar 2003) + + 04 Mar 2003; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by Paul Thompson <thompson@pobox.com> #14316. diff --git a/games-misc/wtf/Manifest b/games-misc/wtf/Manifest new file mode 100644 index 000000000000..3f2bdba2075b --- /dev/null +++ b/games-misc/wtf/Manifest @@ -0,0 +1,3 @@ +MD5 a3ea3a3414ac4359a2d9ab44931f0179 files/digest-wtf-20021005 62 +MD5 fcf800dbf392f6126bfff47856c6cec2 wtf-20021005.ebuild 618 +MD5 d54ab6db74643a52f80640b3c184d236 ChangeLog 445 diff --git a/games-misc/wtf/files/digest-wtf-20021005 b/games-misc/wtf/files/digest-wtf-20021005 new file mode 100644 index 000000000000..a746702d2e04 --- /dev/null +++ b/games-misc/wtf/files/digest-wtf-20021005 @@ -0,0 +1 @@ +MD5 cb00a8c9d0d7e5298ec722669aa1e2aa wtf-20021005.tar.gz 3604 diff --git a/games-misc/wtf/wtf-20021005.ebuild b/games-misc/wtf/wtf-20021005.ebuild new file mode 100644 index 000000000000..74b3a58fa184 --- /dev/null +++ b/games-misc/wtf/wtf-20021005.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-misc/wtf/wtf-20021005.ebuild,v 1.1 2003/09/10 18:14:05 vapier Exp $ + +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="x86 ppc sparc mips alpha arm hppa" + +DEPEND=">=sys-apps/sed-4" + +src_compile() { + sed -i -e 's:/local/:/:' wtf || die "sed wtf failed" +} + +src_install() { + dobin wtf + doman wtf.6 + insinto /usr/share/misc + doins acronyms +} |