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: Sun, 03 Jun 2018 12:51:15
Message-Id: 1528030263.88d7dbe2f09ae5d1891ae0b2406d35fd5d51fda1.ulm@gentoo
1 commit: 88d7dbe2f09ae5d1891ae0b2406d35fd5d51fda1
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 3 12:50:43 2018 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 3 12:51:03 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88d7dbe2
7
8 app-editors/mg: Remove old.
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-editors/mg/Manifest | 1 -
13 app-editors/mg/mg-20170828.ebuild | 47 ---------------------------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/app-editors/mg/Manifest b/app-editors/mg/Manifest
17 index a25162831d4..a45c051fd34 100644
18 --- a/app-editors/mg/Manifest
19 +++ b/app-editors/mg/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST mg-20170828.tar.gz 141028 BLAKE2B a0243ee05f86161f1a9448ec92c8cf14362a60dd3643ad49f79fdd6c2ffe56f51415321eb6f3d7b78c1ca6eab9cb91380cdb63f699359080011d6801feaedd04 SHA512 1ea16b1dd5e9e08abf9fcf0889130b4f39d36872bb64df85470a9ced1db87c0eecb18cc6e8c3c5a04f9049d58ef4492d5a88cf3502ec3351abccb7bddfb90c14
22 DIST mg-20171014.tar.gz 141045 BLAKE2B a5b3bda6ff3b6416093069b471762687c2279737aa05b297ccd3077aff195cf52831566768613a81dcc977a27ac5ffd6e8a1874aa1010b6d90f4c678b6825cee SHA512 d55818308421aa523fb30b6e4725bb122f37637a822fabafeba9f9da3b97fd7f6af6431fce3015c969d0e656a48e89ed49b790deefc69fbdbb7e257f8a1aeb56
23 DIST mg-20180408.tar.gz 141988 BLAKE2B db7da46fb0160acf8695f05234ed0c8e9a45e4239dc3abd433ddfb8b66e2b1aa550ffc4b409486a8990881d791ed73269a8ab78f6846cd4f0bee67761c11d281 SHA512 25fceb18fcbe63010e7a2e107aa5c30356938be2e04ff48869a12b5018dbb83bcf4dc70b03674713516616037247952a51454a28ca418cdc7b020d1f415f8701
24
25 diff --git a/app-editors/mg/mg-20170828.ebuild b/app-editors/mg/mg-20170828.ebuild
26 deleted file mode 100644
27 index 232a6b42a42..00000000000
28 --- a/app-editors/mg/mg-20170828.ebuild
29 +++ /dev/null
30 @@ -1,47 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit toolchain-funcs
37 -
38 -DESCRIPTION="MicroGnuEmacs, a port from the BSDs"
39 -HOMEPAGE="https://homepage.boetes.org/software/mg/"
40 -SRC_URI="https://homepage.boetes.org/software/mg/${P}.tar.gz"
41 -
42 -LICENSE="public-domain"
43 -SLOT="0"
44 -KEYWORDS="alpha amd64 arm hppa ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
45 -IUSE="livecd"
46 -
47 -RDEPEND="sys-libs/ncurses:0
48 - !elibc_FreeBSD? ( >=dev-libs/libbsd-0.7.0 )"
49 -DEPEND="${RDEPEND}
50 - virtual/pkgconfig"
51 -
52 -src_prepare() {
53 - # fix path to tutorial in man page
54 - sed -i -e "s:doc/mg/:doc/${PF}/:" mg.1 || die
55 -
56 - eapply_user
57 -}
58 -
59 -src_compile() {
60 - emake CC="$(tc-getCC)" \
61 - CFLAGS="${CFLAGS}" \
62 - PKG_CONFIG="$(tc-getPKG_CONFIG)"
63 -}
64 -
65 -src_install() {
66 - dobin mg
67 - doman mg.1
68 - dodoc README tutorial
69 - # don't compress the tutorial, otherwise mg cannot open it
70 - docompress -x /usr/share/doc/${PF}/tutorial
71 -}
72 -
73 -pkg_postinst() {
74 - if use livecd; then
75 - [[ -e ${EROOT}/usr/bin/emacs ]] || ln -s mg "${EROOT}"/usr/bin/emacs
76 - fi
77 -}