diff options
author | 2007-09-23 05:38:25 +0000 | |
---|---|---|
committer | 2007-09-23 05:38:25 +0000 | |
commit | b007e4241ce9f2c0c266b0b3ae420ef8df1eb328 (patch) | |
tree | 83df06c42b9064c1e7d999fdda9a1cd90d614d03 /sys-libs/freeipmi | |
parent | stable on ppc64 (diff) | |
download | gentoo-2-b007e4241ce9f2c0c266b0b3ae420ef8df1eb328.tar.gz gentoo-2-b007e4241ce9f2c0c266b0b3ae420ef8df1eb328.tar.bz2 gentoo-2-b007e4241ce9f2c0c266b0b3ae420ef8df1eb328.zip |
Bug #159246, version bump.
(Portage version: 2.1.3.7)
Diffstat (limited to 'sys-libs/freeipmi')
-rw-r--r-- | sys-libs/freeipmi/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/freeipmi/files/digest-freeipmi-0.4.4 | 3 | ||||
-rw-r--r-- | sys-libs/freeipmi/freeipmi-0.4.4.ebuild | 46 |
3 files changed, 55 insertions, 1 deletions
diff --git a/sys-libs/freeipmi/ChangeLog b/sys-libs/freeipmi/ChangeLog index b43f80abe22d..50d33ac93461 100644 --- a/sys-libs/freeipmi/ChangeLog +++ b/sys-libs/freeipmi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/freeipmi # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/freeipmi/ChangeLog,v 1.9 2007/01/10 18:48:06 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/freeipmi/ChangeLog,v 1.10 2007/09/23 05:38:24 robbat2 Exp $ + +*freeipmi-0.4.4 (23 Sep 2007) + + 23 Sep 2007; Robin H. Johnson <robbat2@gentoo.org> +freeipmi-0.4.4.ebuild: + Bug #159246, version bump. 10 Jan 2007; Piotr Jaroszyński <peper@gentoo.org> Manifest: Fix Manifest. diff --git a/sys-libs/freeipmi/files/digest-freeipmi-0.4.4 b/sys-libs/freeipmi/files/digest-freeipmi-0.4.4 new file mode 100644 index 000000000000..8a965913c67c --- /dev/null +++ b/sys-libs/freeipmi/files/digest-freeipmi-0.4.4 @@ -0,0 +1,3 @@ +MD5 b95cc8e2e32b38795ff9a8a8f71fc80f freeipmi-0.4.4.tar.gz 1476079 +RMD160 3a1dd7380734b2ec561ed011dcdd92b05ed0ff74 freeipmi-0.4.4.tar.gz 1476079 +SHA256 988c4645a4bdad6396c36bd9f92fa5a86b5eaccf1030ac940379562fc092498d freeipmi-0.4.4.tar.gz 1476079 diff --git a/sys-libs/freeipmi/freeipmi-0.4.4.ebuild b/sys-libs/freeipmi/freeipmi-0.4.4.ebuild new file mode 100644 index 000000000000..e01af3e12e3a --- /dev/null +++ b/sys-libs/freeipmi/freeipmi-0.4.4.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/freeipmi/freeipmi-0.4.4.ebuild,v 1.1 2007/09/23 05:38:24 robbat2 Exp $ + +inherit flag-o-matic + +DESCRIPTION="FreeIPMI provides Remote-Console and System Management Software as per IPMI v1.5/2.0" +HOMEPAGE="http://www.gnu.org/software/freeipmi/" +SRC_URI="ftp://ftp.zresearch.com/pub/${PN}/${PV}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RDEPEND="virtual/libc + dev-scheme/guile + dev-libs/libgcrypt" +DEPEND="${RDEPEND} + virtual/os-headers + sys-apps/sed" + +src_unpack() { + unpack ${A} + sed 's,auth_type_t,output_type_t,' -i.orig \ + ${S}/ipmipower/src/ipmipower_output.c \ + || die "Failed to fix ipmipower" +} + +src_compile() { + # this is to make things compile + append-flags "-DHAVE_VPRINTF=1" + + econf --disable-init-scripts --enable-syslog --localstatedir=/var || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" install || die "emake install failed" + # INSTALL contains usage instructions! + dodoc AUTHORS COPYING.* ChangeLog* DISCLAIMER* NEWS README* TODO INSTALL* + dodoc doc/*.txt + # normal GPL2 + rm -f "${D}"/usr/share/doc/${PF}/COPYING + # sysVinit scripts. need conversion to Gentoo. + newdoc "${S}"/bmc-watchdog/freeipmi-bmc-watchdog.init redhat_bmc-watchdog.init + newdoc "${S}"/ipmidetect/freeipmi-ipmidetectd.init redhat_ipmidetectd.init +} |