summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathaniel McCallum <npmccallum@gentoo.org>2004-04-25 19:17:32 +0000
committerNathaniel McCallum <npmccallum@gentoo.org>2004-04-25 19:17:32 +0000
commitb97f9796c9a8ed43175c0aca2dd6441d2836fad7 (patch)
treefeceacc29d03a3d585240b29d8b1630f5d617bbb /sys-apps/parted
parentfix typo in econf and emake lines (Manifest recommit) (diff)
downloadgentoo-2-b97f9796c9a8ed43175c0aca2dd6441d2836fad7.tar.gz
gentoo-2-b97f9796c9a8ed43175c0aca2dd6441d2836fad7.tar.bz2
gentoo-2-b97f9796c9a8ed43175c0aca2dd6441d2836fad7.zip
updated the hfs patch (revision 9) to the new hfs patch (revision 10)
Diffstat (limited to 'sys-apps/parted')
-rw-r--r--sys-apps/parted/ChangeLog8
-rw-r--r--sys-apps/parted/files/digest-parted-1.6.10-r12
-rw-r--r--sys-apps/parted/parted-1.6.10-r1.ebuild49
3 files changed, 58 insertions, 1 deletions
diff --git a/sys-apps/parted/ChangeLog b/sys-apps/parted/ChangeLog
index 7718ebb5074b..de858a95d9d3 100644
--- a/sys-apps/parted/ChangeLog
+++ b/sys-apps/parted/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-apps/parted
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v 1.38 2004/04/24 03:33:52 npmccallum Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v 1.39 2004/04/25 19:17:32 npmccallum Exp $
+
+*parted-1.6.10-r1 25 Apr 2004
+
+ 25 Apr 2004; Nathaniel McCallum <npmccallum@gentoo.org>
+ +parted-1.6.10-r1.ebuild:
+ there is a new hfs patch out (revision 10)
*parted-1.6.10 (23 Apr 2004)
diff --git a/sys-apps/parted/files/digest-parted-1.6.10-r1 b/sys-apps/parted/files/digest-parted-1.6.10-r1
new file mode 100644
index 000000000000..1e003bd3a2be
--- /dev/null
+++ b/sys-apps/parted/files/digest-parted-1.6.10-r1
@@ -0,0 +1,2 @@
+MD5 470a0cc59dd9eb1205335bfc1faa538f parted-1.6.10.tar.gz 1448837
+MD5 a8cf344f5fc3a1af2fe5312a610b680f parted-1.6.10-gentoo.tar.bz2 20013
diff --git a/sys-apps/parted/parted-1.6.10-r1.ebuild b/sys-apps/parted/parted-1.6.10-r1.ebuild
new file mode 100644
index 000000000000..5010979f9971
--- /dev/null
+++ b/sys-apps/parted/parted-1.6.10-r1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.6.10-r1.ebuild,v 1.1 2004/04/25 19:17:32 npmccallum 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.gz
+ mirror://gentoo/${P}.tar.gz
+ mirror://gentoo/${PF}-gentoo.tar.bz2
+ http://dev.gentoo.org/~npmccallum/distfiles/${PF}-gentoo.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 -*"
+IUSE="nls static readline debug noreiserfs"
+
+DEPEND=">=sys-fs/e2fsprogs-1.27
+ >=sys-libs/ncurses-5.2
+ nls? ( sys-devel/gettext )
+ readline? ( >=sys-libs/readline-4.1-r4 )"
+
+RDEPEND="${DEPEND}
+ !noreiserfs? ( =sys-fs/progsreiserfs-0.3.0* )"
+
+PATCHDIR=${WORKDIR}/patches
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ EPATCH_SUFFIX="patch" epatch ${PATCHDIR}
+}
+
+src_compile() {
+ econf \
+ `use_with readline` \
+ `use_enable nls` \
+ `use_enable debug` \
+ `use_enable static all-static` \
+ --target=${CHOST} ${myconf} || die "Configure failed"
+ emake || die "Make failed"
+}
+
+src_install() {
+ einstall || die "Install failed"
+ dodoc ABOUT-NLS AUTHORS BUGS COPYING ChangeLog \
+ INSTALL NEWS README THANKS TODO
+ docinto doc; cd doc
+ dodoc API COPYING.DOC FAQ FAT USER USER.jp
+}