summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2009-11-08 13:18:09 +0000
committerPatrick Lauer <patrick@gentoo.org>2009-11-08 13:18:09 +0000
commit0e5e69406518ab26a0a78b09d577bd1c4d0488e6 (patch)
treeb740f4dce1b28ca183c20197d51a09429cc92c89 /app-text/cwtext
parentold (diff)
downloadgentoo-2-0e5e69406518ab26a0a78b09d577bd1c4d0488e6.tar.gz
gentoo-2-0e5e69406518ab26a0a78b09d577bd1c4d0488e6.tar.bz2
gentoo-2-0e5e69406518ab26a0a78b09d577bd1c4d0488e6.zip
Bump
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Diffstat (limited to 'app-text/cwtext')
-rw-r--r--app-text/cwtext/ChangeLog7
-rw-r--r--app-text/cwtext/cwtext-0.96.ebuild32
2 files changed, 38 insertions, 1 deletions
diff --git a/app-text/cwtext/ChangeLog b/app-text/cwtext/ChangeLog
index 5163c3d3804c..733fb85f0097 100644
--- a/app-text/cwtext/ChangeLog
+++ b/app-text/cwtext/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/cwtext
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/cwtext/ChangeLog,v 1.18 2009/06/16 17:51:03 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/cwtext/ChangeLog,v 1.19 2009/11/08 13:18:09 patrick Exp $
+
+*cwtext-0.96 (08 Nov 2009)
+
+ 08 Nov 2009; Patrick Lauer <patrick@gentoo.org> +cwtext-0.96.ebuild:
+ Bump
16 Jun 2009; Tobias Klausmann <klausman@gentoo.org> cwtext-0.94.ebuild:
Keyworded on alpha, bug #272771
diff --git a/app-text/cwtext/cwtext-0.96.ebuild b/app-text/cwtext/cwtext-0.96.ebuild
new file mode 100644
index 000000000000..72accd493910
--- /dev/null
+++ b/app-text/cwtext/cwtext-0.96.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/cwtext/cwtext-0.96.ebuild,v 1.1 2009/11/08 13:18:09 patrick Exp $
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="Text to Morse Code converter"
+HOMEPAGE="http://cwtext.sourceforge.net"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+
+ # change install directory to ${S}
+ sed -i -e "/^PREFIX/ s:=.*:=\"${S}\":" makefile || \
+ die "sed makefile failed"
+
+ epatch "${FILESDIR}"/${PN}-0.94-asneeded.patch
+ tc-export CC
+}
+
+src_install() {
+ dobin cwtext cwpcm cwmm || die "dobin failed"
+
+ dodoc Changes README TODO
+}