Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libedit: ChangeLog libedit-20130712.3.1.ebuild
Date: Tue, 27 Aug 2013 23:25:35
Message-Id: 20130827232531.CC0192004C@flycatcher.gentoo.org
1 aballier 13/08/27 23:25:31
2
3 Modified: ChangeLog
4 Added: libedit-20130712.3.1.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.80 dev-libs/libedit/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libedit/ChangeLog?rev=1.80&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libedit/ChangeLog?rev=1.80&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libedit/ChangeLog?r1=1.79&r2=1.80
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libedit/ChangeLog,v
20 retrieving revision 1.79
21 retrieving revision 1.80
22 diff -u -r1.79 -r1.80
23 --- ChangeLog 27 Aug 2013 23:23:09 -0000 1.79
24 +++ ChangeLog 27 Aug 2013 23:25:31 -0000 1.80
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/libedit
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libedit/ChangeLog,v 1.79 2013/08/27 23:23:09 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libedit/ChangeLog,v 1.80 2013/08/27 23:25:31 aballier Exp $
30 +
31 +*libedit-20130712.3.1 (27 Aug 2013)
32 +
33 + 27 Aug 2013; Alexis Ballier <aballier@g.o>
34 + +libedit-20130712.3.1.ebuild:
35 + version bump
36
37 27 Aug 2013; Alexis Ballier <aballier@g.o>
38 -libedit-20120311.3.0.ebuild, -libedit-20130611.3.1.ebuild:
39
40
41
42 1.1 dev-libs/libedit/libedit-20130712.3.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libedit/libedit-20130712.3.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libedit/libedit-20130712.3.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libedit-20130712.3.1.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libedit/libedit-20130712.3.1.ebuild,v 1.1 2013/08/27 23:25:31 aballier Exp $
52
53 EAPI=5
54
55 inherit eutils toolchain-funcs versionator base multilib-minimal
56
57 MY_PV=$(get_major_version)-$(get_after_major_version)
58 MY_P=${PN}-${MY_PV}
59
60 DESCRIPTION="BSD replacement for libreadline."
61 HOMEPAGE="http://www.thrysoee.dk/editline/"
62 SRC_URI="http://www.thrysoee.dk/editline/${MY_P}.tar.gz"
63
64 LICENSE="BSD-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos"
67 IUSE="static-libs"
68
69 DEPEND=">=sys-libs/ncurses-5.7-r5[static-libs?,${MULTILIB_USEDEP}]
70 !<=sys-freebsd/freebsd-lib-6.2_rc1"
71
72 RDEPEND=${DEPEND}
73
74 S="${WORKDIR}/${MY_P}"
75
76 PATCHES=(
77 "${FILESDIR}/${PN}-ncursesprivate.patch"
78 "${FILESDIR}/${PN}-20100424.3.0-bsd.patch"
79 "${FILESDIR}/${PN}-20110709.3.0-weak-reference.patch"
80 "${FILESDIR}/${PN}-20120311-3.0-el_fn_sh_complete.patch"
81 )
82
83 multilib_src_configure() {
84 ECONF_SOURCE="${S}" econf \
85 $(use_enable static-libs static) \
86 --enable-widec \
87 --enable-fast-install
88 }
89
90 multilib_src_install() {
91 emake DESTDIR="${D}" install
92 multilib_is_native_abi && gen_usr_ldscript -a edit
93 }
94
95 multilib_src_install_all() {
96 find "${ED}" -name '*.la' -delete
97 }