Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/mg/
Date: Mon, 05 Sep 2016 11:39:27
Message-Id: 1473075534.c5efd92c1ff1de7a99dd319f79a3d21c4df51591.ulm@gentoo
1 commit: c5efd92c1ff1de7a99dd319f79a3d21c4df51591
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 5 11:38:54 2016 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 5 11:38:54 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5efd92c
7
8 app-editors/mg: Version bump.
9
10 Package-Manager: portage-2.3.0
11
12 app-editors/mg/Manifest | 1 +
13 app-editors/mg/mg-20160905.ebuild | 52 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 53 insertions(+)
15
16 diff --git a/app-editors/mg/Manifest b/app-editors/mg/Manifest
17 index f53860c..b399545 100644
18 --- a/app-editors/mg/Manifest
19 +++ b/app-editors/mg/Manifest
20 @@ -1,2 +1,3 @@
21 DIST mg-20150323.tar.gz 142105 SHA256 d71b24d47d3e1426f162e446d92dfa457df96dd47c1289419cba9fd14c2c3afb SHA512 747a04c203509cdbe84d9cea6c5be93585cdd5cb855b556ea5dee273a2923a4a68bee3f952cf92d584fcdd682049cb4442c21888304ba036851127174457351f WHIRLPOOL bdba74b62034a6613434fc3efea7b56fa1599b6059ab97dbd760b013be7dc50ab13dfcee3f5fb1f41f4c26c3f0146583680134d3809ec7977a14a28cb345c6db
22 DIST mg-20160421.tar.gz 145187 SHA256 b5dd8fbecb8a0ff0f32588c448f22f25fafcbfb297857e76d2883598a3e63a9a SHA512 7a4fb9d8958952a1b430bda88cafa251aab74691073d103941bfc2cce495ad3831b2c722db044791d61ae2aee9a5a9acaedde0090964129822c94745d89469ed WHIRLPOOL 9a040a69c9d57232c411da3859e80c84f2f250f2fd78cd2799cfb82243fdd9d01d374edb23de44d6eb94b9ab86009458b3c7c4cf34b738c45d4622e6c67dc99b
23 +DIST mg-20160905.tar.gz 144991 SHA256 72c14476f98e341a01520f09ab8dfdd52663498d9dc14d0831c31697a08b8349 SHA512 7ee51739ef15c70e28e81b8da70d9d85534c6f5d7ddf3c8530dad8b9be73c6b519c002b219cdc782e8080fbe4cc5c09a33e6eb88b1e7b4e6771b2f5d5cff9213 WHIRLPOOL b7f17f91f366e63ae3da002af245eb66ee682748df9d7bdb53fb14cd474b44593d0e0e4f73ed26f727ec71dd39e4f3385e6bac9670b094e38fb4486f79398c09
24
25 diff --git a/app-editors/mg/mg-20160905.ebuild b/app-editors/mg/mg-20160905.ebuild
26 new file mode 100644
27 index 00000000..b221969
28 --- /dev/null
29 +++ b/app-editors/mg/mg-20160905.ebuild
30 @@ -0,0 +1,52 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +
37 +inherit toolchain-funcs
38 +
39 +DESCRIPTION="MicroGnuEmacs, a port from the BSDs"
40 +HOMEPAGE="http://homepage.boetes.org/software/mg/"
41 +SRC_URI="http://homepage.boetes.org/software/mg/${P}.tar.gz"
42 +
43 +LICENSE="public-domain"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
46 +IUSE="livecd"
47 +
48 +RDEPEND="sys-libs/ncurses:0
49 + !elibc_FreeBSD? ( >=dev-libs/libbsd-0.7.0 )"
50 +DEPEND="${RDEPEND}
51 + virtual/pkgconfig"
52 +
53 +src_prepare() {
54 + # remove OpenBSD specific easter egg
55 + sed -i -e 's/theo\.o//' GNUmakefile || die
56 + sed -i -e '/theo_init/d' main.c || die
57 +
58 + # fix path to tutorial in man page
59 + sed -i -e "s:doc/mg/:doc/${PF}/:" mg.1 || die
60 +
61 + eapply_user
62 +}
63 +
64 +src_compile() {
65 + emake CC="$(tc-getCC)" \
66 + CFLAGS="${CFLAGS}" \
67 + PKG_CONFIG="$(tc-getPKG_CONFIG)"
68 +}
69 +
70 +src_install() {
71 + dobin mg
72 + doman mg.1
73 + dodoc README tutorial
74 + # don't compress the tutorial, otherwise mg cannot open it
75 + docompress -x /usr/share/doc/${PF}/tutorial
76 +}
77 +
78 +pkg_postinst() {
79 + if use livecd; then
80 + [[ -e ${EROOT}/usr/bin/emacs ]] || ln -s mg "${EROOT}"/usr/bin/emacs
81 + fi
82 +}