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