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-emacs/gnuserv/
Date: Thu, 22 Feb 2018 12:31:03
Message-Id: 1519302585.b6990ea4e494e8fc93c11e0869d348acb2130476.ulm@gentoo
1 commit: b6990ea4e494e8fc93c11e0869d348acb2130476
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 22 12:29:45 2018 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 22 12:29:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6990ea4
7
8 app-emacs/gnuserv: Remove old.
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 app-emacs/gnuserv/gnuserv-3.12.8-r2.ebuild | 72 ------------------------------
13 1 file changed, 72 deletions(-)
14
15 diff --git a/app-emacs/gnuserv/gnuserv-3.12.8-r2.ebuild b/app-emacs/gnuserv/gnuserv-3.12.8-r2.ebuild
16 deleted file mode 100644
17 index 38b3c602b4d..00000000000
18 --- a/app-emacs/gnuserv/gnuserv-3.12.8-r2.ebuild
19 +++ /dev/null
20 @@ -1,72 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -inherit elisp multilib desktop fdo-mime
27 -
28 -DESCRIPTION="Attach to an already running Emacs"
29 -HOMEPAGE="http://meltin.net/hacks/emacs/"
30 -SRC_URI="http://meltin.net/hacks/emacs/src/${P}.tar.gz"
31 -
32 -LICENSE="GPL-2+"
33 -SLOT="0"
34 -KEYWORDS="amd64 ~ppc x86 ~x86-linux ~ppc-macos"
35 -IUSE="X"
36 -
37 -DEPEND=">=app-eselect/eselect-emacs-1.15
38 - X? ( x11-libs/libXau )"
39 -RDEPEND="${DEPEND}
40 - !!app-emacs/gnuserv-programs
41 - !!<app-editors/xemacs-21.4.22-r3
42 - !!~app-editors/xemacs-21.5.29 !!~app-editors/xemacs-21.5.30
43 - !!~app-editors/xemacs-21.5.31 !!~app-editors/xemacs-21.5.33
44 - !!=app-editors/xemacs-21.5.34 !!=app-editors/xemacs-21.5.34-r1"
45 -
46 -SITEFILE="50${PN}-gentoo.el"
47 -
48 -src_prepare() {
49 - sed -i -e 's/exec gnuclient/&-emacs/' gnudoit || die
50 -}
51 -
52 -src_configure() {
53 - econf $(use_enable X xauth) \
54 - --x-includes="${EPREFIX}"/usr/include \
55 - --x-libraries="${EPREFIX}"/usr/$(get_libdir)
56 -}
57 -
58 -src_compile() {
59 - default
60 -}
61 -
62 -src_install() {
63 - exeinto /usr/libexec/emacs
64 - doexe gnuserv
65 - newbin gnuclient gnuclient-emacs
66 - newbin gnudoit gnudoit-emacs
67 - # Don't install gnuattach, it is not functional with FSF GNU Emacs
68 -
69 - newman gnuserv.1 gnuserv-emacs.1
70 - echo ".so man1/gnuserv-emacs.1" | newman - gnuclient-emacs.1
71 - echo ".so man1/gnuserv-emacs.1" | newman - gnudoit-emacs.1
72 -
73 - elisp-install ${PN} *.el *.elc
74 - elisp-site-file-install "${FILESDIR}/${SITEFILE}"
75 - dodoc ChangeLog README README.orig
76 -
77 - if use X; then
78 - domenu "${FILESDIR}"/gnuclient.desktop || die
79 - fi
80 -}
81 -
82 -pkg_postinst() {
83 - elisp-site-regen
84 - use X && fdo-mime_desktop_database_update
85 - eselect gnuclient update ifunset
86 -}
87 -
88 -pkg_postrm() {
89 - elisp-site-regen
90 - use X && fdo-mime_desktop_database_update
91 - eselect gnuclient update ifunset
92 -}