Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/wyrd: ChangeLog wyrd-1.4.4.ebuild wyrd-1.4.3b.ebuild wyrd-1.4.1.ebuild wyrd-1.4.2.ebuild
Date: Fri, 22 Feb 2008 09:10:24
Message-Id: E1JSTvB-0002Vh-En@stork.gentoo.org
1 tove 08/02/22 09:10:21
2
3 Modified: ChangeLog
4 Added: wyrd-1.4.4.ebuild
5 Removed: wyrd-1.4.3b.ebuild wyrd-1.4.1.ebuild
6 wyrd-1.4.2.ebuild
7 Log:
8 Version bump and cleaning. Fixes insecure tempfile creation (#210609)
9 (Portage version: 2.1.4.4)
10
11 Revision Changes Path
12 1.16 app-misc/wyrd/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/wyrd/ChangeLog?rev=1.16&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/wyrd/ChangeLog?rev=1.16&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/wyrd/ChangeLog?r1=1.15&r2=1.16
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-misc/wyrd/ChangeLog,v
21 retrieving revision 1.15
22 retrieving revision 1.16
23 diff -u -r1.15 -r1.16
24 --- ChangeLog 15 Sep 2007 07:30:24 -0000 1.15
25 +++ ChangeLog 22 Feb 2008 09:10:20 -0000 1.16
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-misc/wyrd
28 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-misc/wyrd/ChangeLog,v 1.15 2007/09/15 07:30:24 tove Exp $
30 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/app-misc/wyrd/ChangeLog,v 1.16 2008/02/22 09:10:20 tove Exp $
32 +
33 +*wyrd-1.4.4 (22 Feb 2008)
34 +
35 + 22 Feb 2008; Torsten Veller <tove@g.o> -wyrd-1.4.1.ebuild,
36 + -wyrd-1.4.2.ebuild, -wyrd-1.4.3b.ebuild, +wyrd-1.4.4.ebuild:
37 + Version bump and cleaning. Fixes insecure tempfile creation (#210609)
38
39 *wyrd-1.4.3b (15 Sep 2007)
40
41
42
43
44 1.1 app-misc/wyrd/wyrd-1.4.4.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/wyrd/wyrd-1.4.4.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/wyrd/wyrd-1.4.4.ebuild?rev=1.1&content-type=text/plain
48
49 Index: wyrd-1.4.4.ebuild
50 ===================================================================
51 # Copyright 1999-2008 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-misc/wyrd/wyrd-1.4.4.ebuild,v 1.1 2008/02/22 09:10:20 tove Exp $
54
55 inherit eutils
56
57 DESCRIPTION="Text-based front-end to Remind"
58 HOMEPAGE="http://pessimization.com/software/wyrd/"
59 SRC_URI="http://pessimization.com/software/wyrd/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
64 IUSE="unicode"
65
66 DEPEND=">=dev-lang/ocaml-3.08
67 sys-libs/ncurses
68 >=x11-misc/remind-03.01"
69 RDEPEND=${DEPEND}
70
71 pkg_setup() {
72 use unicode || return 0
73 if ! built_with_use sys-libs/ncurses unicode ; then
74 eerror "To use unicode in wyrd you must build sys-libs/ncurses"
75 eerror "with unicode support."
76 die "Please rebuilt sys-libs/ncurses with unicode in USE!"
77 fi
78 }
79
80 src_compile() {
81 econf $(use_enable unicode utf8 ) || die "configure failed"
82 emake || die "make failed"
83 }
84
85 src_install() {
86 make DESTDIR="${D}" install || die "install died"
87
88 dodoc ChangeLog || die "dodoc failed"
89 dohtml doc/manual.html || die "dohtml failed"
90 }
91
92
93
94 --
95 gentoo-commits@l.g.o mailing list