summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiziano Müller <dev-zero@gentoo.org>2008-08-01 09:59:36 +0000
committerTiziano Müller <dev-zero@gentoo.org>2008-08-01 09:59:36 +0000
commitb245e13c56f2e163eebdca8f05f9f7bd2fe7fd7c (patch)
treebf63fdf3e53d0d74a44af0e677c0c7b8570f3657 /sys-apps
parentant-eclipse-ecj-3.4 version bump. (diff)
downloadgentoo-2-b245e13c56f2e163eebdca8f05f9f7bd2fe7fd7c.tar.gz
gentoo-2-b245e13c56f2e163eebdca8f05f9f7bd2fe7fd7c.tar.bz2
gentoo-2-b245e13c56f2e163eebdca8f05f9f7bd2fe7fd7c.zip
Version bump. Dropped old version.
(Portage version: 2.2_rc5/cvs/Linux 2.6.26-gentoo x86_64)
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/ipmiutil/ChangeLog8
-rw-r--r--sys-apps/ipmiutil/ipmiutil-1.6.0.ebuild42
-rw-r--r--sys-apps/ipmiutil/ipmiutil-2.1.2.ebuild41
3 files changed, 48 insertions, 43 deletions
diff --git a/sys-apps/ipmiutil/ChangeLog b/sys-apps/ipmiutil/ChangeLog
index 62418a37a64e..8e8be44c7718 100644
--- a/sys-apps/ipmiutil/ChangeLog
+++ b/sys-apps/ipmiutil/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-apps/ipmiutil
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/ipmiutil/ChangeLog,v 1.4 2008/04/25 22:35:10 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/ipmiutil/ChangeLog,v 1.5 2008/08/01 09:59:36 dev-zero Exp $
+
+*ipmiutil-2.1.2 (01 Aug 2008)
+
+ 01 Aug 2008; Tiziano Müller <dev-zero@gentoo.org> -ipmiutil-1.6.0.ebuild,
+ +ipmiutil-2.1.2.ebuild:
+ Version bump. Dropped old version.
*ipmiutil-2.1.1 (25 Apr 2008)
diff --git a/sys-apps/ipmiutil/ipmiutil-1.6.0.ebuild b/sys-apps/ipmiutil/ipmiutil-1.6.0.ebuild
deleted file mode 100644
index 71b54d6234d7..000000000000
--- a/sys-apps/ipmiutil/ipmiutil-1.6.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/ipmiutil/ipmiutil-1.6.0.ebuild,v 1.1 2005/03/25 10:12:47 robbat2 Exp $
-
-inherit flag-o-matic eutils
-
-DESCRIPTION="IPMI Management Utilities"
-HOMEPAGE="http://ipmiutil.sf.net/"
-SRC_URI="mirror://sourceforge/${PV}/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
-RDEPEND="virtual/libc
- >=sys-libs/freeipmi-0.1.0"
-DEPEND="${RDEPEND}
- virtual/os-headers"
-
-src_unpack() {
- unpack ${A}
- EPATCH_OPTS="-p1 -d ${S}" epatch ${FILESDIR}/${P}-link-external-freeipmi.diff
- # The following upstream directories are unneeded/obsolete:
- # freeipmi hpiutil kern test
- # we remove them for safety:
- cd ${S}
- rm -rf freeipmi hpiutil kern test
-}
-
-#src_compile() {
-# econf || die "econf failed"
-# emake || die "emake failed"
-#}
-
-src_install() {
- # must come first, due to install system that uses 'mv' instead of 'cp'.
- dodoc AUTHORS INSTALL NEWS COPYING README TODO doc/UserGuide
-
- emake DESTDIR="${D}" install || die "emake install failed"
-
- # clean up the install a bit
- rm ${D}/usr/share/ipmiutil/{COPYING,README,UserGuide}
-}
diff --git a/sys-apps/ipmiutil/ipmiutil-2.1.2.ebuild b/sys-apps/ipmiutil/ipmiutil-2.1.2.ebuild
new file mode 100644
index 000000000000..c295abef654e
--- /dev/null
+++ b/sys-apps/ipmiutil/ipmiutil-2.1.2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/ipmiutil/ipmiutil-2.1.2.ebuild,v 1.1 2008/08/01 09:59:36 dev-zero Exp $
+
+inherit autotools eutils
+
+DESCRIPTION="IPMI Management Utilities"
+HOMEPAGE="http://ipmiutil.sf.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+IUSE=""
+
+RDEPEND=""
+DEPEND="virtual/os-headers"
+
+src_unpack() {
+ unpack ${A}
+ # The following upstream directories are unneeded/obsolete:
+ # hpiutil kern test
+ # we remove them for safety:
+ cd "${S}"
+ rm -rf hpiutil kern test
+
+ # They get misplaced
+ sed -i \
+ -e '/COPYING/d' \
+ -e '/README/d' \
+ -e '/UserGuide/d' \
+ "${S}/doc/Makefile" || die "sed failed"
+
+ # Upstream requests this
+ eautoreconf
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+
+ dodoc AUTHORS ChangeLog NEWS README TODO doc/UserGuide
+}