diff options
author | Peter Gavin <pete@gentoo.org> | 2001-06-02 22:16:23 +0000 |
---|---|---|
committer | Peter Gavin <pete@gentoo.org> | 2001-06-02 22:16:23 +0000 |
commit | a7586dcce980d87c9d4f969ad88fa416920857b8 (patch) | |
tree | ebcfadf7aabf002df2968c4b0d331bb7fd73c596 /sys-apps/parted | |
parent | Here is the infamous xgalaga. Dig it. (diff) | |
download | gentoo-2-a7586dcce980d87c9d4f969ad88fa416920857b8.tar.gz gentoo-2-a7586dcce980d87c9d4f969ad88fa416920857b8.tar.bz2 gentoo-2-a7586dcce980d87c9d4f969ad88fa416920857b8.zip |
added parted-1.4.14
Diffstat (limited to 'sys-apps/parted')
-rw-r--r-- | sys-apps/parted/parted-1.4.14.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sys-apps/parted/parted-1.4.14.ebuild b/sys-apps/parted/parted-1.4.14.ebuild new file mode 100644 index 000000000000..a1df85e1568f --- /dev/null +++ b/sys-apps/parted/parted-1.4.14.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Peter Gavin <pete@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.4.14.ebuild,v 1.1 2001/06/02 22:16:23 pete Exp $ + +#P= +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="an advanced partition modification system" +SRC_URI="ftp://ftp.gnu.org/gnu/${PN}/${A}" +HOMEPAGE="http://www.gnu.org/software/${PN}" + +DEPEND="virtual/glibc" + +src_compile() { + try ./configure --prefix=/usr --host=${CHOST} + try make +} + +src_install () { + try make DESTDIR=${D} install +} + |