summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2007-08-21 23:41:54 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2007-08-21 23:41:54 +0000
commit1ca3fbfc77182e67653c64915b70bb03d207d3aa (patch)
treee8f39e98e4a116e737f820aeb74b1a168bf4a185 /sys-apps/parted
parentRemove vulnerable versions (diff)
downloadgentoo-2-1ca3fbfc77182e67653c64915b70bb03d207d3aa.tar.gz
gentoo-2-1ca3fbfc77182e67653c64915b70bb03d207d3aa.tar.bz2
gentoo-2-1ca3fbfc77182e67653c64915b70bb03d207d3aa.zip
Version bump. Closing bug #189095.
(Portage version: 2.1.3.6)
Diffstat (limited to 'sys-apps/parted')
-rw-r--r--sys-apps/parted/ChangeLog7
-rw-r--r--sys-apps/parted/files/digest-parted-1.8.83
-rw-r--r--sys-apps/parted/parted-1.8.8.ebuild39
3 files changed, 48 insertions, 1 deletions
diff --git a/sys-apps/parted/ChangeLog b/sys-apps/parted/ChangeLog
index 2f85bfea4fff..b88e0fccae4d 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.117 2007/08/20 20:36:24 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v 1.118 2007/08/21 23:41:54 wolf31o2 Exp $
+
+*parted-1.8.8 (21 Aug 2007)
+
+ 21 Aug 2007; Chris Gianelloni <wolf31o2@gentoo.org> +parted-1.8.8.ebuild:
+ Version bump. Closing bug #189095.
20 Aug 2007; Markus Ullmann <jokey@gentoo.org> parted-1.8.6.ebuild:
Stable on x86 wrt bug #182358
diff --git a/sys-apps/parted/files/digest-parted-1.8.8 b/sys-apps/parted/files/digest-parted-1.8.8
new file mode 100644
index 000000000000..c37fb727213b
--- /dev/null
+++ b/sys-apps/parted/files/digest-parted-1.8.8
@@ -0,0 +1,3 @@
+MD5 607ab4c3cfd8455af6588b97d99ad0ba parted-1.8.8.tar.bz2 1553881
+RMD160 d498455407e0ed8e7e58b8b93acee2732e14b22d parted-1.8.8.tar.bz2 1553881
+SHA256 dfcd811a9cc7753d6f310a34301716a7e18a45b905fa8c7eb77d5f121bc3c5ea parted-1.8.8.tar.bz2 1553881
diff --git a/sys-apps/parted/parted-1.8.8.ebuild b/sys-apps/parted/parted-1.8.8.ebuild
new file mode 100644
index 000000000000..d5ee5855a133
--- /dev/null
+++ b/sys-apps/parted/parted-1.8.8.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.8.ebuild,v 1.1 2007/08/21 23:41:54 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}
+}