Gentoo Archives: gentoo-commits

From: "Harald van Dijk (truedfx)" <truedfx@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/dialog: ChangeLog dialog-1.1.20070930.ebuild dialog-1.0.20060221.ebuild dialog-1.1.20070514.ebuild dialog-1.1.20070409.ebuild
Date: Sat, 06 Oct 2007 16:08:23
Message-Id: E1IeC3O-0008RH-Bb@stork.gentoo.org
1 truedfx 07/10/06 15:58:58
2
3 Modified: ChangeLog
4 Added: dialog-1.1.20070930.ebuild
5 Removed: dialog-1.0.20060221.ebuild
6 dialog-1.1.20070514.ebuild
7 dialog-1.1.20070409.ebuild
8 Log:
9 Version bump (#194853), remove older versions
10 (Portage version: 2.1.3.11)
11
12 Revision Changes Path
13 1.96 dev-util/dialog/ChangeLog
14
15 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.96&view=markup
16 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.96&content-type=text/plain
17 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/dialog/ChangeLog?r1=1.95&r2=1.96
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
22 retrieving revision 1.95
23 retrieving revision 1.96
24 diff -u -r1.95 -r1.96
25 --- ChangeLog 28 Sep 2007 06:52:38 -0000 1.95
26 +++ ChangeLog 6 Oct 2007 15:58:57 -0000 1.96
27 @@ -1,6 +1,13 @@
28 # ChangeLog for dev-util/dialog
29 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.95 2007/09/28 06:52:38 kumba Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.96 2007/10/06 15:58:57 truedfx Exp $
32 +
33 +*dialog-1.1.20070930 (06 Oct 2007)
34 +
35 + 06 Oct 2007; Harald van Dijk <truedfx@g.o>
36 + -dialog-1.0.20060221.ebuild, -dialog-1.1.20070409.ebuild,
37 + -dialog-1.1.20070514.ebuild, +dialog-1.1.20070930.ebuild:
38 + Version bump (#194853), remove older versions
39
40 28 Sep 2007; Joshua Kinard <kumba@g.o> dialog-1.1.20070704.ebuild:
41 Stable on mips.
42
43
44
45 1.1 dev-util/dialog/dialog-1.1.20070930.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/dialog/dialog-1.1.20070930.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/dialog/dialog-1.1.20070930.ebuild?rev=1.1&content-type=text/plain
49
50 Index: dialog-1.1.20070930.ebuild
51 ===================================================================
52 # Copyright 1999-2007 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.1.20070930.ebuild,v 1.1 2007/10/06 15:58:57 truedfx Exp $
55
56 inherit eutils
57
58 MY_PV="${PV/1.1./1.1-}"
59 S=${WORKDIR}/${PN}-${MY_PV}
60 DESCRIPTION="tool to display dialog boxes from a shell"
61 HOMEPAGE="http://invisible-island.net/dialog/dialog.html"
62 SRC_URI="ftp://invisible-island.net/${PN}/${PN}-${MY_PV}.tgz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
67 IUSE="examples unicode"
68
69 DEPEND=">=app-shells/bash-2.04-r3
70 >=sys-libs/ncurses-5.2-r5"
71
72 pkg_setup() {
73 if use unicode && ! built_with_use sys-libs/ncurses unicode; then
74 eerror "Installing dialog with the unicode flag requires ncurses be"
75 eerror "built with it as well. Please make sure your /etc/make.conf"
76 eerror "or /etc/portage/package.use enables it, and re-install"
77 eerror "ncurses with \`emerge --oneshot sys-libs/ncurses\`."
78 die "Re-emerge ncurses with the unicode flag"
79 fi
80 }
81
82 src_compile() {
83 use unicode && ncursesw="w"
84 econf "--with-ncurses${ncursesw}" || die "configure failed"
85 emake || die "build failed"
86 }
87
88 src_install() {
89 emake install DESTDIR="${D}" || die
90 dodoc CHANGES README VERSION
91
92 if use examples; then
93 docinto samples
94 dodoc samples/*
95 fi
96 }
97
98
99
100 --
101 gentoo-commits@g.o mailing list