Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/librep: librep-0.92.3.ebuild ChangeLog librep-0.92.2.ebuild librep-0.92.1.ebuild
Date: Sun, 29 Sep 2013 06:46:40
Message-Id: 20130929064637.0490B2004C@flycatcher.gentoo.org
1 pacho 13/09/29 06:46:36
2
3 Modified: ChangeLog
4 Added: librep-0.92.3.ebuild
5 Removed: librep-0.92.2.ebuild librep-0.92.1.ebuild
6 Log:
7 Version bump, drop old
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.80 dev-libs/librep/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librep/ChangeLog?rev=1.80&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librep/ChangeLog?rev=1.80&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librep/ChangeLog?r1=1.79&r2=1.80
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/librep/ChangeLog,v
21 retrieving revision 1.79
22 retrieving revision 1.80
23 diff -u -r1.79 -r1.80
24 --- ChangeLog 9 Apr 2013 13:26:53 -0000 1.79
25 +++ ChangeLog 29 Sep 2013 06:46:36 -0000 1.80
26 @@ -1,6 +1,16 @@
27 # ChangeLog for dev-libs/librep
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/ChangeLog,v 1.79 2013/04/09 13:26:53 naota Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/ChangeLog,v 1.80 2013/09/29 06:46:36 pacho Exp $
31 +
32 +*librep-0.92.3 (29 Sep 2013)
33 +
34 + 29 Sep 2013; Pacho Ramos <pacho@g.o> +librep-0.92.3.ebuild,
35 + -files/librep-0.17.3-disable-elisp.patch,
36 + -files/librep-0.17_p20070101-disable-elisp.patch,
37 + -files/librep-0.17_p20070101-ldflags.patch,
38 + -files/librep-0.17_p20070101-libtool.patch, -files/libtool.patch,
39 + -files/rep_file_fdopen.patch, -librep-0.92.1.ebuild, -librep-0.92.2.ebuild:
40 + Version bump, drop old
41
42 09 Apr 2013; Naohiro Aota <naota@g.o> librep-0.92.2.1.ebuild:
43 Add ~x86-fbsd wrt bug #157553
44
45
46
47 1.1 dev-libs/librep/librep-0.92.3.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librep/librep-0.92.3.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librep/librep-0.92.3.ebuild?rev=1.1&content-type=text/plain
51
52 Index: librep-0.92.3.ebuild
53 ===================================================================
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/librep-0.92.3.ebuild,v 1.1 2013/09/29 06:46:36 pacho Exp $
57
58 EAPI=5
59 inherit eutils multilib elisp-common
60
61 DESCRIPTION="Shared library implementing a Lisp dialect"
62 HOMEPAGE="http://librep.sourceforge.net/"
63 SRC_URI="http://download.tuxfamily.org/librep/${P}.tar.xz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
68 IUSE="emacs readline"
69
70 RDEPEND="
71 >=sys-libs/gdbm-1.8.0
72 emacs? ( virtual/emacs )
73 readline? ( sys-libs/readline )
74 "
75 DEPEND="${RDEPEND}
76 sys-apps/texinfo
77 app-arch/xz-utils
78 "
79
80 src_prepare() {
81 DOCS="ChangeLog MAINTAINERS NEWS README TODO"
82 epatch "${FILESDIR}"/${PN}-0.92.0-disable-elisp.patch
83 }
84
85 src_configure() {
86 econf \
87 --libexecdir=/usr/$(get_libdir) \
88 --without-gmp \
89 --without-ffi \
90 --disable-static \
91 $(use_with readline)
92 }
93
94 src_compile() {
95 default
96
97 if use emacs; then
98 elisp-compile rep-debugger.el || die "elisp-compile failed"
99 fi
100 }
101
102 src_install() {
103 default
104 prune_libtool_files --modules
105
106 docinto doc
107 dodoc doc/*
108
109 if use emacs; then
110 elisp-install ${PN} rep-debugger.{el,elc} || die "elisp-install failed"
111 elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el" \
112 || die "elisp-site-file-install failed"
113 fi
114 }
115
116 pkg_postinst() {
117 use emacs && elisp-site-regen
118 }
119
120 pkg_postrm() {
121 use emacs && elisp-site-regen
122 }