summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-09-29 08:03:46 +0000
committerMike Frysinger <vapier@gentoo.org>2005-09-29 08:03:46 +0000
commit8f9f855fca6e44143ff9104ae2290802e85db801 (patch)
treea0e8b0b520c34cb6e97c706a08aa10d3018b40d9 /games-misc
parentBlock man-pages-ja for groff-1.19 since groff-1.19 doesn't support m17n; bug ... (diff)
downloadgentoo-2-8f9f855fca6e44143ff9104ae2290802e85db801.tar.gz
gentoo-2-8f9f855fca6e44143ff9104ae2290802e85db801.tar.bz2
gentoo-2-8f9f855fca6e44143ff9104ae2290802e85db801.zip
Add some more useful definitions.
(Portage version: 2.0.52-r1 http://www.bash.org/?136501 )
Diffstat (limited to 'games-misc')
-rw-r--r--games-misc/wtf/ChangeLog8
-rw-r--r--games-misc/wtf/files/digest-wtf-20050505-r11
-rw-r--r--games-misc/wtf/files/wtf-20050505-updates.patch21
-rw-r--r--games-misc/wtf/wtf-20050505-r1.ebuild30
4 files changed, 59 insertions, 1 deletions
diff --git a/games-misc/wtf/ChangeLog b/games-misc/wtf/ChangeLog
index 73f3851cc975..1634331e478c 100644
--- a/games-misc/wtf/ChangeLog
+++ b/games-misc/wtf/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for games-misc/wtf
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-misc/wtf/ChangeLog,v 1.9 2005/08/01 18:33:02 j4rg0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-misc/wtf/ChangeLog,v 1.10 2005/09/29 08:03:46 vapier Exp $
+
+*wtf-20050505-r1 (29 Sep 2005)
+
+ 29 Sep 2005; Mike Frysinger <vapier@gentoo.org>
+ +files/wtf-20050505-updates.patch, +wtf-20050505-r1.ebuild:
+ Add some more useful definitions.
01 Aug 2005; Lina Pezzella <j4rg0n@gentoo.org> wtf-20050505.ebuild:
Stable ppc-macos
diff --git a/games-misc/wtf/files/digest-wtf-20050505-r1 b/games-misc/wtf/files/digest-wtf-20050505-r1
new file mode 100644
index 000000000000..6dc2d8ad1c2a
--- /dev/null
+++ b/games-misc/wtf/files/digest-wtf-20050505-r1
@@ -0,0 +1 @@
+MD5 2730b977b8c0499aaa32b86f47035138 wtf-20050505.tar.gz 8820
diff --git a/games-misc/wtf/files/wtf-20050505-updates.patch b/games-misc/wtf/files/wtf-20050505-updates.patch
new file mode 100644
index 000000000000..150245ed50a9
--- /dev/null
+++ b/games-misc/wtf/files/wtf-20050505-updates.patch
@@ -0,0 +1,21 @@
+--- wtf/acronyms
++++ wtf/acronyms
+@@ -64,2 +64,3 @@
+ FCFS first come first served
++FFS for fuck's sake
+ FIGJAM fuck I'm good, just ask me
+@@ -151,4 +151,5 @@
+ OIC oh, I see
+ OMG oh, my god
++OOB out of bounds
+ OT off topic
+ OTL out to lunch
+@@ -163,3 +164,3 @@
+ PNP plug and pray
+-POC point of contact
++POC point of contact / proof of concept
+ POLA principle of least astonishment
+@@ -231,2 +232,3 @@
+ U/L upload
++UNF universal noise of fucking
+ UTSL use the source, Luke
diff --git a/games-misc/wtf/wtf-20050505-r1.ebuild b/games-misc/wtf/wtf-20050505-r1.ebuild
new file mode 100644
index 000000000000..39aba7edd7ed
--- /dev/null
+++ b/games-misc/wtf/wtf-20050505-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/games-misc/wtf/wtf-20050505-r1.ebuild,v 1.1 2005/09/29 08:03:46 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"
+IUSE=""
+
+DEPEND=""
+RDEPEND="sys-apps/grep"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ epatch "${FILESDIR}"/${P}-updates.patch
+}
+
+src_install() {
+ dobin wtf || die "dogamesbin failed"
+ doman wtf.6
+ insinto /usr/share/misc
+ doins acronyms* || die "doins failed"
+}