diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-04-07 20:18:14 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-04-07 20:18:14 +0000 |
commit | c63042abd73e62791a708d80a7369c7cdfc89281 (patch) | |
tree | f160919b1f7a61ce3292837b3aa11849aad43960 /app-text/cwtext | |
parent | x86 stable as only modification was to include stdlib for this arch, remove old. (diff) | |
download | historical-c63042abd73e62791a708d80a7369c7cdfc89281.tar.gz historical-c63042abd73e62791a708d80a7369c7cdfc89281.tar.bz2 historical-c63042abd73e62791a708d80a7369c7cdfc89281.zip |
Some fixes and sparc stable, thanks to Tiago Cunha
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'app-text/cwtext')
-rw-r--r-- | app-text/cwtext/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/cwtext/Manifest | 4 | ||||
-rw-r--r-- | app-text/cwtext/cwtext-0.94.ebuild | 14 |
3 files changed, 15 insertions, 8 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/Manifest b/app-text/cwtext/Manifest index c6698f2f2382..9f4975f85e4b 100644 --- a/app-text/cwtext/Manifest +++ b/app-text/cwtext/Manifest @@ -1,4 +1,4 @@ DIST cwtext-0.94.tar.gz 12957 RMD160 5b7f78dd84665850de383489df20a8c4b1428a96 SHA1 ad2dc3002cbb977d8b735680820d4264bb7cc184 SHA256 7aa753003e055b2a1edddf353db1553a247dd0aaa7d269d293b809f636ba2cbe -EBUILD cwtext-0.94.ebuild 703 RMD160 37b9a4f42ec8592c5e05c16be34d6dd49eac11e5 SHA1 baac433dc2c300dc264a0cc50528790e29b9cc82 SHA256 ec784d45a44e358d615f531ab980fcaaf43aa8ac3f6285112a74cebc1974545a -MISC ChangeLog 1582 RMD160 088c891a07c805ae2f12dda3f3d868e224c87343 SHA1 c34e2bb8b5cc73f805da5557728c578855ec0d33 SHA256 1672e338960ebe798af5f6c7261fd11a58359d84b45ada5d11191744f342a80b +EBUILD cwtext-0.94.ebuild 737 RMD160 3dde4c0c7b4be88065dbe519d17ea34636252c6d SHA1 fa0bc9cf50a71eea83c2851654cabe86ff92c4fb SHA256 4d8965863dc8d97be425fda680004cef303c26f236ec1f637be893ae313a5fce +MISC ChangeLog 1705 RMD160 5630ff98f3a1431a789b992489e7cfa8be1a6865 SHA1 72f7a24e5b9772be9385fa2d3d9af754d8c0aaa8 SHA256 88e04896fd311df008e6788022c780f8f2d568711641a280b978773319d0e36b MISC metadata.xml 236 RMD160 92f49f8275e75caf57b88a3172d5204eaa4e33ae SHA1 dd1a8550a514e55ab0ed6190ab4794bb090994f8 SHA256 56075995f83836ae824c7cb01931b98d6745f6d5a7764299c8262e801486b829 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 } |