Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20150528.ebuild ChangeLog dialog-1.2.20140219.ebuild dialog-1.2.20150125.ebuild dialog-1.2.20140911.ebuild
Date: Mon, 01 Jun 2015 04:42:01
Message-Id: 20150601044155.B4237A14@oystercatcher.gentoo.org
1 jer 15/06/01 04:41:55
2
3 Modified: ChangeLog
4 Added: dialog-1.2.20150528.ebuild
5 Removed: dialog-1.2.20140219.ebuild
6 dialog-1.2.20150125.ebuild
7 dialog-1.2.20140911.ebuild
8 Log:
9 Version bump.
10
11 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A792A613)
12
13 Revision Changes Path
14 1.234 dev-util/dialog/ChangeLog
15
16 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.234&view=markup
17 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.234&content-type=text/plain
18 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?r1=1.233&r2=1.234
19
20 Index: ChangeLog
21 ===================================================================
22 RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
23 retrieving revision 1.233
24 retrieving revision 1.234
25 diff -u -r1.233 -r1.234
26 --- ChangeLog 27 May 2015 12:23:30 -0000 1.233
27 +++ ChangeLog 1 Jun 2015 04:41:55 -0000 1.234
28 @@ -1,6 +1,13 @@
29 # ChangeLog for dev-util/dialog
30 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
31 -# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.233 2015/05/27 12:23:30 zlogene Exp $
32 +# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.234 2015/06/01 04:41:55 jer Exp $
33 +
34 +*dialog-1.2.20150528 (01 Jun 2015)
35 +
36 + 01 Jun 2015; Jeroen Roovers <jer@g.o> -dialog-1.2.20140219.ebuild,
37 + -dialog-1.2.20140911.ebuild, -dialog-1.2.20150125.ebuild,
38 + +dialog-1.2.20150528.ebuild:
39 + Version bump.
40
41 27 May 2015; Mikle Kolyada <zlogene@g.o> dialog-1.2.20150225.ebuild:
42 arm stable wrt bug #547766
43
44
45
46 1.1 dev-util/dialog/dialog-1.2.20150528.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20150528.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20150528.ebuild?rev=1.1&content-type=text/plain
50
51 Index: dialog-1.2.20150528.ebuild
52 ===================================================================
53 # Copyright 1999-2015 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20150528.ebuild,v 1.1 2015/06/01 04:41:55 jer Exp $
56
57 EAPI=5
58 inherit eutils multilib versionator
59
60 MY_PV="$(get_version_component_range 1-2)-$(get_version_component_range 3)"
61 S=${WORKDIR}/${PN}-${MY_PV}
62 DESCRIPTION="tool to display dialog boxes from a shell"
63 HOMEPAGE="http://invisible-island.net/dialog/dialog.html"
64 SRC_URI="ftp://invisible-island.net/${PN}/${PN}-${MY_PV}.tgz"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
69 IUSE="examples minimal nls static-libs unicode"
70
71 RDEPEND="
72 >=sys-libs/ncurses-5.2-r5[unicode?]
73 "
74 DEPEND="
75 ${RDEPEND}
76 nls? ( sys-devel/gettext )
77 !minimal? ( sys-devel/libtool )
78 !<=sys-freebsd/freebsd-contrib-8.9999
79 "
80
81 src_prepare() {
82 sed -i -e '/LIB_CREATE=/s:${CC}:& ${LDFLAGS}:g' configure || die
83 sed -i '/$(LIBTOOL_COMPILE)/s:$: $(LIBTOOL_OPTS):' makefile.in || die
84 }
85
86 src_configure() {
87 econf \
88 --disable-rpath-hack \
89 $(use_enable nls) \
90 $(use_with !minimal libtool) \
91 --with-libtool-opts=$(usex static-libs '' '-shared') \
92 --with-ncurses$(usex unicode w '')
93 }
94
95 src_install() {
96 use minimal && default || emake DESTDIR="${D}" install-full
97
98 use examples && dodoc -r samples
99
100 dodoc CHANGES README
101
102 prune_libtool_files
103 }