diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-12-16 18:30:06 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-12-16 18:30:06 +0000 |
commit | c9ce8b3517890f87f9fcd097baf32296446a1ab6 (patch) | |
tree | fd44c63dc6293bbd96e85652fa0f6f4570579a38 /sys-block/di/di-4.9.ebuild | |
parent | old (diff) | |
download | gentoo-2-c9ce8b3517890f87f9fcd097baf32296446a1ab6.tar.gz gentoo-2-c9ce8b3517890f87f9fcd097baf32296446a1ab6.tar.bz2 gentoo-2-c9ce8b3517890f87f9fcd097baf32296446a1ab6.zip |
Version bump #158279 by Wolfram Schlich.
(Portage version: 2.1.2_rc3)
Diffstat (limited to 'sys-block/di/di-4.9.ebuild')
-rw-r--r-- | sys-block/di/di-4.9.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sys-block/di/di-4.9.ebuild b/sys-block/di/di-4.9.ebuild new file mode 100644 index 000000000000..792453870e00 --- /dev/null +++ b/sys-block/di/di-4.9.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/di/di-4.9.ebuild,v 1.1 2006/12/16 18:30:06 vapier 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="as-is" +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 +} |