diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2018-05-12 00:46:18 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2018-05-12 00:47:29 +0300 |
commit | f41585c6b64573b0f9927fc403f366cc21c7ead7 (patch) | |
tree | 031ee5f94fbd41ed8759455b9f742f94428d364a /app-editors | |
parent | profiles/package.mask: drop media-fonts/bitstream-cyberbit mask (diff) | |
download | gentoo-f41585c6b64573b0f9927fc403f366cc21c7ead7.tar.gz gentoo-f41585c6b64573b0f9927fc403f366cc21c7ead7.tar.bz2 gentoo-f41585c6b64573b0f9927fc403f366cc21c7ead7.zip |
app-editors/moe: Version bump
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/moe/Manifest | 1 | ||||
-rw-r--r-- | app-editors/moe/files/moe-1.6-tinfo.patch | 4 | ||||
-rw-r--r-- | app-editors/moe/moe-1.9.ebuild | 36 |
3 files changed, 39 insertions, 2 deletions
diff --git a/app-editors/moe/Manifest b/app-editors/moe/Manifest index 52e5465c4b86..138b65fae76c 100644 --- a/app-editors/moe/Manifest +++ b/app-editors/moe/Manifest @@ -1,2 +1,3 @@ DIST moe-1.6.tar.lz 75108 BLAKE2B 0d675ceecea6670fe24e860d030ef43905add64334d0769d24a57fb3b0cc421e7065c6d36df7e2c154db66936ab8849f9bf42288767810aec34db4261fef23f6 SHA512 0aa717c865d41f73adccddbb158ae67b611a64f24258bcce5a68fea8175d28d6db55a0fb356fb294bfe3106c0973607b1fcc76ceee17d360e30eb80650ec043b DIST moe-1.7.tar.lz 79644 BLAKE2B e4e353d1daba8b40842d86a0821c8a0668bbe9e6875b988190f870b8fd637ee3f0006ca088f9aeb1dedcc69b17c45ced4167ffb248adb429531516b64229caee SHA512 e961291c55e5b2af09e3b5cb0d07b557b0af1f6143339390e5b06f4bdebace888f7c3866ec936bd20f25b23cc96fdfdb7bd3da6690e684ec24513b106ae53b49 +DIST moe-1.9.tar.lz 82046 BLAKE2B 9144dfc4ce17bc04f3ad9aa9ec271f173df6c581705e5d922a346f94c086a97af9429478c016d7081c1fd38787055666504f04d25a8b9f5c1020dc147aaafdb0 SHA512 277700e4a796e1a7aee42de55ba4599a350a612f95a1a2eca5078d85f6f9a7db190fb5611eb2f286c98580af847a2934bf38a4bce10176db4c5cddc2d257f929 diff --git a/app-editors/moe/files/moe-1.6-tinfo.patch b/app-editors/moe/files/moe-1.6-tinfo.patch index 6b91460e8e53..5a94ec599e89 100644 --- a/app-editors/moe/files/moe-1.6-tinfo.patch +++ b/app-editors/moe/files/moe-1.6-tinfo.patch @@ -1,5 +1,5 @@ ---- Makefile.in.orig 2014-11-03 00:33:57.152593136 +0300 -+++ Makefile.in 2014-11-03 00:34:21.121592519 +0300 +--- a/Makefile.in.orig 2014-11-03 00:33:57.152593136 +0300 ++++ b/Makefile.in 2014-11-03 00:34:21.121592519 +0300 @@ -4,7 +4,7 @@ INSTALL_PROGRAM = $(INSTALL) -m 755 INSTALL_DATA = $(INSTALL) -m 644 diff --git a/app-editors/moe/moe-1.9.ebuild b/app-editors/moe/moe-1.9.ebuild new file mode 100644 index 000000000000..c511c32637fa --- /dev/null +++ b/app-editors/moe/moe-1.9.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit toolchain-funcs unpacker + +DESCRIPTION="A powerful and user-friendly console text editor" +HOMEPAGE="https://www.gnu.org/software/moe/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.lz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + sys-libs/ncurses:0= +" +DEPEND=" + $(unpacker_src_uri_depends) + ${RDEPEND} + virtual/pkgconfig +" + +src_prepare() { + tc-export CXX PKG_CONFIG + sed -i \ + -e "/^CXXFLAGS=/d" \ + -e "/^LDFLAGS=/d" \ + -e "/^CXX=/d" \ + configure || die "sed on configure failed" + + eapply_user + + eapply "${FILESDIR}/${PN}-1.6-tinfo.patch" +} |