diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-01-24 08:48:23 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-01-24 08:48:23 +0000 |
commit | c74805e4fabcb51fe757ae010811774c7cb797af (patch) | |
tree | 88ec12426f5be5c60461a2108484ad3b5844bc6e /sys-block/di | |
parent | Bump (diff) | |
download | gentoo-2-c74805e4fabcb51fe757ae010811774c7cb797af.tar.gz gentoo-2-c74805e4fabcb51fe757ae010811774c7cb797af.tar.bz2 gentoo-2-c74805e4fabcb51fe757ae010811774c7cb797af.zip |
Version bump.
(Portage version: 2.2.0_alpha160/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'sys-block/di')
-rw-r--r-- | sys-block/di/ChangeLog | 7 | ||||
-rw-r--r-- | sys-block/di/di-4.34.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/sys-block/di/ChangeLog b/sys-block/di/ChangeLog index 46ac54995b1e..f99ce9fb7764 100644 --- a/sys-block/di/ChangeLog +++ b/sys-block/di/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-block/di # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/di/ChangeLog,v 1.42 2013/01/06 21:26:32 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/di/ChangeLog,v 1.43 2013/01/24 08:48:22 radhermit Exp $ + +*di-4.34 (24 Jan 2013) + + 24 Jan 2013; Tim Harder <radhermit@gentoo.org> +di-4.34.ebuild: + Version bump. *di-4.33 (06 Jan 2013) diff --git a/sys-block/di/di-4.34.ebuild b/sys-block/di/di-4.34.ebuild new file mode 100644 index 000000000000..5ed18e6bd1c1 --- /dev/null +++ b/sys-block/di/di-4.34.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/di/di-4.34.ebuild,v 1.1 2013/01/24 08:48:23 radhermit Exp $ + +EAPI=4 +inherit eutils 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 ~ppc ~ppc64 ~x86 ~x86-fbsd" +IUSE="" + +RESTRICT="test" #405205, #405471 + +src_prepare() { + epatch "${FILESDIR}"/${PN}-4.33-build.patch +} + +src_configure() { + emake checkbuild + emake -C C config.h +} + +src_compile() { + emake prefix=/usr CC="$(tc-getCC)" +} + +src_install() { + emake install prefix="${D}/usr" + # default symlink is broken + dosym di /usr/bin/mi + dodoc README +} |