Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/openipmi: ChangeLog openipmi-2.0.11.ebuild openipmi-1.4.28.ebuild
Date: Sun, 23 Sep 2007 03:54:19
Message-Id: E1IZIQ5-0003Fq-48@stork.gentoo.org
1 robbat2 07/09/23 03:46:09
2
3 Modified: ChangeLog
4 Added: openipmi-2.0.11.ebuild openipmi-1.4.28.ebuild
5 Log:
6 Bug #145655, version bump.
7 (Portage version: 2.1.3.7)
8
9 Revision Changes Path
10 1.7 sys-libs/openipmi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openipmi/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openipmi/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openipmi/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/openipmi/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 22 Feb 2007 00:40:25 -0000 1.6
23 +++ ChangeLog 23 Sep 2007 03:46:08 -0000 1.7
24 @@ -1,6 +1,13 @@
25 # ChangeLog for sys-libs/openipmi
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/openipmi/ChangeLog,v 1.6 2007/02/22 00:40:25 jokey Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/openipmi/ChangeLog,v 1.7 2007/09/23 03:46:08 robbat2 Exp $
29 +
30 +*openipmi-2.0.11 (23 Sep 2007)
31 +*openipmi-1.4.28 (23 Sep 2007)
32 +
33 + 23 Sep 2007; Robin H. Johnson <robbat2@g.o>
34 + +openipmi-1.4.28.ebuild, +openipmi-2.0.11.ebuild:
35 + Bug #145655, version bump.
36
37 22 Feb 2007; Markus Ullmann <jokey@g.o> ChangeLog:
38 Redigest for Manifest2
39
40
41
42 1.1 sys-libs/openipmi/openipmi-2.0.11.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openipmi/openipmi-2.0.11.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openipmi/openipmi-2.0.11.ebuild?rev=1.1&content-type=text/plain
46
47 Index: openipmi-2.0.11.ebuild
48 ===================================================================
49 # Copyright 1999-2007 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-libs/openipmi/openipmi-2.0.11.ebuild,v 1.1 2007/09/23 03:46:08 robbat2 Exp $
52
53 DESCRIPTION="Library interface to IPMI"
54 HOMEPAGE="http://sourceforge.net/projects/openipmi/"
55 MY_PN="OpenIPMI"
56 MY_P="${MY_PN}-${PV}"
57 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
58
59 LICENSE="LGPL-2.1 GPL-2"
60 SLOT="0"
61 KEYWORDS="~x86 ~amd64"
62 IUSE="crypt snmp perl tcl python"
63 S="${WORKDIR}/${MY_P}"
64
65 DEPEND="virtual/libc
66 dev-libs/glib
67 >=dev-lang/swig-1.3.21
68 sys-libs/gdbm
69 dev-util/pkgconfig
70 crypt? ( dev-libs/openssl )
71 snmp? ( net-analyzer/net-snmp )
72 perl? ( dev-lang/perl )
73 python? ( dev-lang/python )
74 tcl? ( dev-lang/tcl )"
75 # Gui is broken!
76 # python? ( tcl? ( tk? ( dev-lang/tk dev-tcltk/tix ) ) )"
77
78 # Upstream doesn't use --without properly
79 use_yesno() {
80 yesmsg="yes"
81 [ -n "$3" ] && yesmsg="$3"
82 if use $1; then
83 echo "--with-$2=${yesmsg}"
84 else
85 echo "--without-$2"
86 fi
87 }
88
89 src_compile() {
90 local myconf=""
91 myconf="${myconf} `use_with snmp ucdsnmp yes`"
92 myconf="${myconf} `use_with crypt openssl yes`"
93 myconf="${myconf} `use_with perl perl yes`"
94 myconf="${myconf} `use_with tcl tcl yes`"
95 myconf="${myconf} `use_with python python yes`"
96
97 # GUI is broken
98 #use tk && use python && use !tcl && \
99 # ewarn "Not building Tk GUI because it needs both Python AND Tcl"
100 #if use python && use tcl; then
101 # myconf="${myconf} `use_yesno tk tkinter yes`"
102 #else
103 # myconf="${myconf} `use_yesno tk tkinter no`"
104 #fi
105
106 myconf="${myconf} --without-tkinter"
107 myconf="${myconf} --with-glib --with-swig"
108 # these binaries are for root!
109 econf ${myconf} --bindir=/usr/sbin || die "econf failed"
110 emake || die "emake failed"
111 }
112
113 src_install() {
114 make DESTDIR="${D}" install || die
115 dodoc README* FAQ ChangeLog TODO doc/IPMI.pdf lanserv/README.emulator
116 newdoc cmdlang/README README.cmdlang
117 }
118
119
120
121 1.1 sys-libs/openipmi/openipmi-1.4.28.ebuild
122
123 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openipmi/openipmi-1.4.28.ebuild?rev=1.1&view=markup
124 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openipmi/openipmi-1.4.28.ebuild?rev=1.1&content-type=text/plain
125
126 Index: openipmi-1.4.28.ebuild
127 ===================================================================
128 # Copyright 1999-2007 Gentoo Foundation
129 # Distributed under the terms of the GNU General Public License v2
130 # $Header: /var/cvsroot/gentoo-x86/sys-libs/openipmi/openipmi-1.4.28.ebuild,v 1.1 2007/09/23 03:46:08 robbat2 Exp $
131
132 DESCRIPTION="Library interface to IPMI"
133 HOMEPAGE="http://sourceforge.net/projects/openipmi/"
134 MY_PN="OpenIPMI"
135 MY_P="${MY_PN}-${PV}"
136 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
137
138 LICENSE="LGPL-2.1 GPL-2"
139 SLOT="0"
140 KEYWORDS="~x86 ~amd64"
141 IUSE="crypt snmp perl"
142 S="${WORKDIR}/${MY_P}"
143
144 DEPEND="virtual/libc
145 dev-libs/glib
146 >=dev-lang/swig-1.3.21
147 sys-libs/gdbm
148 dev-util/pkgconfig
149 crypt? ( dev-libs/openssl )
150 snmp? ( net-analyzer/net-snmp )
151 perl? ( dev-lang/perl )"
152
153 src_compile() {
154 local myconf=""
155 myconf="${myconf} `use_with snmp ucdsnmp yes`"
156 myconf="${myconf} `use_with crypt openssl yes`"
157 myconf="${myconf} `use_with perl perl yes`"
158 myconf="${myconf} --with-swig=yes --with-glib=yes"
159 # these binaries are for root!
160 econf ${myconf} --bindir=/usr/sbin || die "econf failed"
161 emake || die "emake failed"
162 }
163
164 src_install() {
165 make DESTDIR="${D}" install || die
166 dodoc README* FAQ ChangeLog TODO doc/IPMI.pdf lanserv/README.emulator
167 newdoc cmdlang/README README.cmdlang
168 }
169
170
171
172 --
173 gentoo-commits@g.o mailing list