diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2007-04-13 18:17:13 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2007-04-13 18:17:13 +0000 |
commit | dd60e0a2dae8e80df1ed5c5137d7d2692caccd30 (patch) | |
tree | 2ce5f725f556ceb4a6717e8b106ab44bf7fdbf0c /sys-apps/parted | |
parent | Version bump. (diff) | |
download | gentoo-2-dd60e0a2dae8e80df1ed5c5137d7d2692caccd30.tar.gz gentoo-2-dd60e0a2dae8e80df1ed5c5137d7d2692caccd30.tar.bz2 gentoo-2-dd60e0a2dae8e80df1ed5c5137d7d2692caccd30.zip |
Version bump and closing bug #171972.
(Portage version: 2.1.2.3)
Diffstat (limited to 'sys-apps/parted')
-rw-r--r-- | sys-apps/parted/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/parted/files/digest-parted-1.8.6 | 3 | ||||
-rw-r--r-- | sys-apps/parted/parted-1.8.6.ebuild | 39 |
3 files changed, 48 insertions, 1 deletions
diff --git a/sys-apps/parted/ChangeLog b/sys-apps/parted/ChangeLog index 05c1d4ae9c6c..b656276c4404 100644 --- a/sys-apps/parted/ChangeLog +++ b/sys-apps/parted/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/parted # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v 1.109 2007/03/28 11:09:31 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v 1.110 2007/04/13 18:17:13 wolf31o2 Exp $ + +*parted-1.8.6 (13 Apr 2007) + + 13 Apr 2007; Chris Gianelloni <wolf31o2@gentoo.org> +parted-1.8.6.ebuild: + Version bump and closing bug #171972. 28 Mar 2007; Raúl Porcel <armin76@gentoo.org> parted-1.8.2.ebuild: Move 1.8.2 back to ~x86, since it fails with uclibc, bug 171787 diff --git a/sys-apps/parted/files/digest-parted-1.8.6 b/sys-apps/parted/files/digest-parted-1.8.6 new file mode 100644 index 000000000000..eb5b4f5d428e --- /dev/null +++ b/sys-apps/parted/files/digest-parted-1.8.6 @@ -0,0 +1,3 @@ +MD5 03c967ae0e915e08da90605d68ba93d7 parted-1.8.6.tar.bz2 1433969 +RMD160 5298102fee906df1589d7b08fcf92f17cd4e1ae2 parted-1.8.6.tar.bz2 1433969 +SHA256 82d94c9bb58cccd1eacfc5ff3a9331d179cc26d8fbe00c451e2c84feb6d23408 parted-1.8.6.tar.bz2 1433969 diff --git a/sys-apps/parted/parted-1.8.6.ebuild b/sys-apps/parted/parted-1.8.6.ebuild new file mode 100644 index 000000000000..7a7bb2873d50 --- /dev/null +++ b/sys-apps/parted/parted-1.8.6.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.8.6.ebuild,v 1.1 2007/04/13 18:17:13 wolf31o2 Exp $ + +DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems" +HOMEPAGE="http://www.gnu.org/software/parted" +SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86" +IUSE="nls readline debug selinux device-mapper" + +# specific version for gettext needed +# to fix bug 85999 +DEPEND=">=sys-fs/e2fsprogs-1.27 + >=sys-libs/ncurses-5.2 + nls? ( >=sys-devel/gettext-0.12.1-r2 ) + readline? ( >=sys-libs/readline-4.1-r4 ) + selinux? ( sys-libs/libselinux ) + device-mapper? ( sys-fs/device-mapper )" + +src_compile() { + econf \ + $(use_with readline) \ + $(use_enable nls) \ + $(use_enable debug) \ + $(use_enable selinux) \ + $(use_enable device-mapper) \ + --disable-rpath \ + --disable-Werror || die "Configure failed" + emake || die "Make failed" +} + +src_install() { + make install DESTDIR="${D}" || die "Install failed" + dodoc AUTHORS BUGS ChangeLog NEWS README THANKS TODO + dodoc doc/{API,FAT,USER.jp} +} |