summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2008-04-07 20:18:14 +0000
committerRaúl Porcel <armin76@gentoo.org>2008-04-07 20:18:14 +0000
commit7487883860f08b91bc8ace125b7cd0473707a15d (patch)
tree3bd0a389445c6d1ebad84b0a49ec42d37db0daf0 /app-text/cwtext
parentx86 stable as only modification was to include stdlib for this arch, remove old. (diff)
downloadgentoo-2-7487883860f08b91bc8ace125b7cd0473707a15d.tar.gz
gentoo-2-7487883860f08b91bc8ace125b7cd0473707a15d.tar.bz2
gentoo-2-7487883860f08b91bc8ace125b7cd0473707a15d.zip
Some fixes and sparc stable, thanks to Tiago Cunha
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-text/cwtext')
-rw-r--r--app-text/cwtext/ChangeLog5
-rw-r--r--app-text/cwtext/cwtext-0.94.ebuild14
2 files changed, 13 insertions, 6 deletions
diff --git a/app-text/cwtext/ChangeLog b/app-text/cwtext/ChangeLog
index 67fe6a29a973..1358f65f2b9e 100644
--- a/app-text/cwtext/ChangeLog
+++ b/app-text/cwtext/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-text/cwtext
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/cwtext/ChangeLog,v 1.14 2008/01/19 15:10:32 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/cwtext/ChangeLog,v 1.15 2008/04/07 20:18:14 armin76 Exp $
+
+ 07 Apr 2008; Raúl Porcel <armin76@gentoo.org> cwtext-0.94.ebuild:
+ Some fixes and sparc stable, thanks to Tiago Cunha
19 Jan 2008; Fabian Groffen <grobian@gentoo.org> cwtext-0.94.ebuild:
Dropped ppc-macos keyword, see you in prefix
diff --git a/app-text/cwtext/cwtext-0.94.ebuild b/app-text/cwtext/cwtext-0.94.ebuild
index 2f3dd075ce27..8bdc5e14f4ce 100644
--- a/app-text/cwtext/cwtext-0.94.ebuild
+++ b/app-text/cwtext/cwtext-0.94.ebuild
@@ -1,31 +1,35 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/cwtext/cwtext-0.94.ebuild,v 1.12 2008/01/19 15:10:32 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/cwtext/cwtext-0.94.ebuild,v 1.13 2008/04/07 20:18:14 armin76 Exp $
+
+inherit toolchain-funcs
DESCRIPTION="Text to Morse Code converter"
HOMEPAGE="http://cwtext.sourceforge.net"
SRC_URI="mirror://sourceforge/cwtext/${P}.tar.gz"
-KEYWORDS="amd64 mips ppc ~sparc x86"
+KEYWORDS="amd64 mips ppc sparc x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
src_unpack() {
unpack ${A}
- cd ${S}
+ cd "${S}"
# change install directory to ${S}
sed -i -e "/^PREFIX/ s:=.*:=\"${S}\":" makefile || \
die "sed makefile failed"
+
+ tc-export CC
}
src_compile() {
- make install || die
+ emake install || die
}
src_install() {
dobin cwtext cwpcm cwmm
- dodoc COPYING Changes README TODO
+ dodoc Changes README TODO
}