diff options
author | Ulrich Müller <ulm@gentoo.org> | 2010-01-22 06:54:14 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2010-01-22 06:54:14 +0000 |
commit | cfffeb3771c7feb1d4febec2155409a9e3be21f3 (patch) | |
tree | d63f62be29432a1fd671d7ee83b93d703a695398 /sys-apps/raidutils | |
parent | Fix implicit malloc decl on 64bit systems. (diff) | |
download | gentoo-2-cfffeb3771c7feb1d4febec2155409a9e3be21f3.tar.gz gentoo-2-cfffeb3771c7feb1d4febec2155409a9e3be21f3.tar.bz2 gentoo-2-cfffeb3771c7feb1d4febec2155409a9e3be21f3.zip |
Fix LICENSE, bug 301123.
(Portage version: 2.2_rc61/cvs/Linux i686)
Diffstat (limited to 'sys-apps/raidutils')
-rw-r--r-- | sys-apps/raidutils/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/raidutils/raidutils-0.0.6-r1.ebuild | 17 |
2 files changed, 13 insertions, 11 deletions
diff --git a/sys-apps/raidutils/ChangeLog b/sys-apps/raidutils/ChangeLog index 9f9d0b91f074..0b365fce4a43 100644 --- a/sys-apps/raidutils/ChangeLog +++ b/sys-apps/raidutils/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/raidutils -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/raidutils/ChangeLog,v 1.10 2008/01/13 23:30:34 xmerlin Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/raidutils/ChangeLog,v 1.11 2010/01/22 06:54:14 ulm Exp $ + + 22 Jan 2010; Ulrich Mueller <ulm@gentoo.org> raidutils-0.0.6-r1.ebuild: + Fix LICENSE, bug 301123. 13 Jan 2008; Christian Zoffoli <xmerlin@gentoo.org> raidutils-0.0.6-r1.ebuild: diff --git a/sys-apps/raidutils/raidutils-0.0.6-r1.ebuild b/sys-apps/raidutils/raidutils-0.0.6-r1.ebuild index 4d509f85dd0d..c8aedf18292d 100644 --- a/sys-apps/raidutils/raidutils-0.0.6-r1.ebuild +++ b/sys-apps/raidutils/raidutils-0.0.6-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/raidutils/raidutils-0.0.6-r1.ebuild,v 1.2 2008/01/13 23:30:34 xmerlin Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/raidutils/raidutils-0.0.6-r1.ebuild,v 1.3 2010/01/22 06:54:14 ulm Exp $ inherit eutils @@ -8,21 +8,20 @@ DESCRIPTION="Utilities to manage i2o/dtp RAID controllers." SRC_URI="http://i2o.shadowconnect.com/raidutils/${P}.tar.bz2" HOMEPAGE="http://i2o.shadowconnect.com/" +LICENSE="BSD" +SLOT="0" KEYWORDS="x86" IUSE="" -SLOT="0" -LICENSE="Adaptec" - DEPEND=">=sys-kernel/linux-headers-2.6" RDEPEND="" src_unpack () { unpack ${A} - cd ${S} + cd "${S}" #epatch ${FILESDIR}/raidutils-0.0.5-i2octl-fixpath.patch || die #epatch ${FILESDIR}/raidutils-0.0.6-gcc41x-compilefix.patch || die - epatch ${FILESDIR}/${P}-misc-fixes.patch || die + epatch "${FILESDIR}"/${P}-misc-fixes.patch || die rm -f include/linux/i2o-dev.h } @@ -32,6 +31,6 @@ src_compile() { } src_install() { - make DESTDIR=${D} install || die - dodoc NEWS INSTALL AUTHORS COPYING ChangeLog + make DESTDIR="${D}" install || die + dodoc NEWS INSTALL AUTHORS ChangeLog } |