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