diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-12-19 21:08:20 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-12-19 21:08:20 +0000 |
commit | 3355745724d4e69df9de97d9b5820aef4e757480 (patch) | |
tree | 7d4a282eec76b248aafab18bd55995cbd0c2092e /sys-block | |
parent | Fix bug 239330, gcc-4.3 compat. Thanks to Dmitry Halturin for the patch. (diff) | |
download | gentoo-2-3355745724d4e69df9de97d9b5820aef4e757480.tar.gz gentoo-2-3355745724d4e69df9de97d9b5820aef4e757480.tar.bz2 gentoo-2-3355745724d4e69df9de97d9b5820aef4e757480.zip |
Version bump (the older version failed to build here).
(Portage version: 2.2_rc17/cvs/Linux 2.6.27-gentoo-r6 x86_64)
Diffstat (limited to 'sys-block')
-rw-r--r-- | sys-block/di/ChangeLog | 7 | ||||
-rw-r--r-- | sys-block/di/di-4.13.ebuild | 29 |
2 files changed, 35 insertions, 1 deletions
diff --git a/sys-block/di/ChangeLog b/sys-block/di/ChangeLog index 056f7d548f70..1140958425be 100644 --- a/sys-block/di/ChangeLog +++ b/sys-block/di/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-block/di # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/di/ChangeLog,v 1.17 2008/02/12 04:54:08 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/di/ChangeLog,v 1.18 2008/12/19 21:08:20 flameeyes Exp $ + +*di-4.13 (19 Dec 2008) + + 19 Dec 2008; Diego E. Pettenò <flameeyes@gentoo.org> +di-4.13.ebuild: + Version bump (the older version failed to build here). 12 Feb 2008; Doug Klima <cardoe@gentoo.org> di-4.5.ebuild, di-4.9.ebuild: license is really a ZLIB variant. Change license to ZLIB. Bug #209770 diff --git a/sys-block/di/di-4.13.ebuild b/sys-block/di/di-4.13.ebuild new file mode 100644 index 000000000000..c71578c7b365 --- /dev/null +++ b/sys-block/di/di-4.13.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/di/di-4.13.ebuild,v 1.1 2008/12/19 21:08:20 flameeyes Exp $ + +inherit toolchain-funcs + +DESCRIPTION="Disk Information Utility" +HOMEPAGE="http://www.gentoo.com/di/" +SRC_URI="http://www.gentoo.com/di/${P}.tar.gz" + +LICENSE="ZLIB" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="app-shells/bash" +RDEPEND="" + +src_compile() { + tc-export CC + SHELL=/bin/bash prefix="${D}" ./Build || die +} + +src_install() { + doman di.1 + dobin di || die + dosym di /usr/bin/mi + dodoc README +} |