diff options
Diffstat (limited to 'app-text/cwtext')
-rw-r--r-- | app-text/cwtext/Manifest | 1 | ||||
-rw-r--r-- | app-text/cwtext/cwtext-0.96-r1.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/app-text/cwtext/Manifest b/app-text/cwtext/Manifest index a004718493cb..b3ccf8b0c0cd 100644 --- a/app-text/cwtext/Manifest +++ b/app-text/cwtext/Manifest @@ -1,4 +1,5 @@ AUX cwtext-0.94-asneeded.patch 525 BLAKE2B 0e099345b40bd853420bd35289108bfd43ff02ccc253202786201a74607692015808ae6a3620212ea3879e93b53a10abd4daab81ecf77159982a8aebf5dab604 SHA512 e80d4705d71badb3a0c75a21b99cb2b8033272c609a9cfea769ec48825544f3972cdc505ad32842c34da4918e7dcfcff07900f3611a5a1ca0fdd4c48784d7067 DIST cwtext-0.96.tar.gz 16596 BLAKE2B 0165b787fcb0e5c0ef803370d06eabbde4c014ac11dcd16a516579cf3d817e90c79db6ec15702643be710c9849765671bf676f41a0679443a87a6f4e555963d9 SHA512 6765c79b6feea2947974bf4654ed1edc83f6c9ddaae1bf37d5ed95dedc4ce9b45d5e41dff7ec50d6586f34901d8f93a3230f1a7e1cf4d52b8a84c851cfbdbd33 +EBUILD cwtext-0.96-r1.ebuild 710 BLAKE2B cfe77b1e29906befd31f0071371b152f3f75c147740fc80c70b79dd6c9eb432359ebfcf8bb00f556efd6503ff457bb25fe152fbb85c46e459ddf083f5bf84df4 SHA512 f868048955573d9beee82d60ab989a75cc1e82c22bb4058b18aed22fb14610de9314737b8bcc4c3857263cc8bda15be8d158fe8e295b27581f0c31fdba721b8c EBUILD cwtext-0.96.ebuild 705 BLAKE2B 14f5b38878b22ac327898934337e0ea62b7ee94c8aa1ad9196111d8a9dc4b20aa3c76c229c68b2c5d88c6a68e8954f590e36af93005d158c47b130c622dc8be6 SHA512 3e937d89e7f7642839ec0a2acbe17006b1316c0dc31b3d284c31c2b8777905f6f1f47f804a77398e75782fbd24e0bd840611955957f5b61d197c4dff99dc8152 MISC metadata.xml 325 BLAKE2B ff358d0bef47c35ccd68eb73a608e1e3f61cf6735aafcf4045c9b5a49f2e533b4ef2c305a0fa3fa1e23fb6920f4d589cd2274fbdd0073d0d0a8432ff5b911910 SHA512 e61b6497de3ea7dfbc4244c904bd2e3966bdfc3fb228836ffd21e7955da87da325af62b0f8cde180b75d0632dcacf77b46e2b56249b14b2dfa827cc082bd217f diff --git a/app-text/cwtext/cwtext-0.96-r1.ebuild b/app-text/cwtext/cwtext-0.96-r1.ebuild new file mode 100644 index 000000000000..8ee194501b87 --- /dev/null +++ b/app-text/cwtext/cwtext-0.96-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit 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="~amd64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="" + +PATCHES=( "${FILESDIR}"/${PN}-0.94-asneeded.patch ) +DOCS=( Changes README TODO ) + +src_prepare() { + eapply -p0 "${PATCHES}" + # change install directory to ${S} + sed -i -e "/^PREFIX/ s:=.*:=\"${S}\":" makefile || \ + die "sed makefile failed" + + eapply_user + tc-export CC +} + +src_install() { + einstalldocs + dobin cwtext cwpcm cwmm +} |