summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Low <lostlogic@gentoo.org>2003-06-01 04:41:18 +0000
committerBrandon Low <lostlogic@gentoo.org>2003-06-01 04:41:18 +0000
commit8a2aa27664b5d08934a4e77741ee3314c1896b4c (patch)
treebc925e7b2671065ea138222d473cd5daa2483675 /sys-apps
parentMove package and bump (diff)
downloadgentoo-2-8a2aa27664b5d08934a4e77741ee3314c1896b4c.tar.gz
gentoo-2-8a2aa27664b5d08934a4e77741ee3314c1896b4c.tar.bz2
gentoo-2-8a2aa27664b5d08934a4e77741ee3314c1896b4c.zip
Move package and bump
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/ntfsprogs/ChangeLog21
-rw-r--r--sys-apps/ntfsprogs/Manifest4
-rw-r--r--sys-apps/ntfsprogs/files/digest-ntfsprogs-1.7.11
-rw-r--r--sys-apps/ntfsprogs/ntfsprogs-1.7.1.ebuild38
4 files changed, 62 insertions, 2 deletions
diff --git a/sys-apps/ntfsprogs/ChangeLog b/sys-apps/ntfsprogs/ChangeLog
new file mode 100644
index 000000000000..d18be1eb53ab
--- /dev/null
+++ b/sys-apps/ntfsprogs/ChangeLog
@@ -0,0 +1,21 @@
+# ChangeLog for sys-apps/linux-ntfs
+# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/ntfsprogs/ChangeLog,v 1.1 2003/06/01 04:41:15 lostlogic Exp $
+
+*ntfsprogs-1.7.1 (31 May 2003)
+
+ 31 May 2003; Brandon Low <lostlogic@gentoo.org> ntfsprogs-1.7.1.ebuild:
+ Move package to new name, and bump version
+
+*linux-ntfs-1.6.0 (02 Nov 2002)
+
+ 02 Nov 2002; Donny Davies <woodchip@gentoo.org> :
+ Compile the project ourselves, thanks to cory@visi.name; #9810.
+
+*linux-ntfs-1.5.0-r1 (1 Feb 2002)
+
+ 21 Jul 2002; Mark Guertin <gerk@gentoo.org> :
+ updated keywords (-ppc -sparc -sparc64) - this is a binary pkg for x86.
+
+ 14 Jul 2002; phoen][x <phoenix@gentoo.org> :
+ Added LICENSE, KEYWORDS, SLOT.
diff --git a/sys-apps/ntfsprogs/Manifest b/sys-apps/ntfsprogs/Manifest
index 84e35ddbb763..3b953cedafab 100644
--- a/sys-apps/ntfsprogs/Manifest
+++ b/sys-apps/ntfsprogs/Manifest
@@ -1,3 +1,3 @@
-MD5 ebb16c900e62ac365be62038e6a6c00c ChangeLog 762
-MD5 dfc8e6031cc8ca2c4db81034444cbcbc ntfsprogs-1.7.1.ebuild 1205
+MD5 bf1d42921573cea16f34960455aa6892 ChangeLog 764
+MD5 7231c6f20177afd42efbe4db51e426a9 ntfsprogs-1.7.1.ebuild 1206
MD5 9c54070c93405b7ad66d548e7fa2e2a4 files/digest-ntfsprogs-1.7.1 67
diff --git a/sys-apps/ntfsprogs/files/digest-ntfsprogs-1.7.1 b/sys-apps/ntfsprogs/files/digest-ntfsprogs-1.7.1
new file mode 100644
index 000000000000..49d1df8bca9a
--- /dev/null
+++ b/sys-apps/ntfsprogs/files/digest-ntfsprogs-1.7.1
@@ -0,0 +1 @@
+MD5 3bac306e0923b142bb82b4592e49d239 ntfsprogs-1.7.1.tar.gz 416883
diff --git a/sys-apps/ntfsprogs/ntfsprogs-1.7.1.ebuild b/sys-apps/ntfsprogs/ntfsprogs-1.7.1.ebuild
new file mode 100644
index 000000000000..84f3feb63d9e
--- /dev/null
+++ b/sys-apps/ntfsprogs/ntfsprogs-1.7.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/ntfsprogs/ntfsprogs-1.7.1.ebuild,v 1.1 2003/06/01 04:41:15 lostlogic Exp $
+
+DESCRIPTION="Utilities and library for accessing NTFS filesystems"
+HOMEPAGE="http://linux-ntfs.sourceforge.net/"
+SRC_URI="mirror://sourceforge/linux-ntfs/${P}.tar.gz"
+
+DEPEND=">=sys-devel/gcc-2.95"
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+
+src_compile() {
+ econf || die "Configure failed"
+
+ # I've added only this Makefile tweak, and we don't need
+ # the gcc patch - Quequero
+ cp Makefile Makefile.orig
+ sed -i -e "s:CFLAGS = -g -O2:CFLAGS = ${CFLAGS}:" \
+ -e "s:CPPFLAGS =:CPPFLAGS = ${CXXFLAGS}:" Makefile
+ emake || die "Make failed"
+}
+
+src_install() {
+ make DESTDIR=${D} install || die "Install failed"
+
+ # lot's of docs (a good thing :)
+ dodoc CREDITS ChangeLog NEWS README TODO.include TODO.mkntfs TODO.ntfsfix \
+ doc/attribute_definitions doc/attributes.txt doc/compression.txt \
+ doc/system_files.txt doc/system_security_descriptors.txt \
+ doc/tunable_settings
+
+ # a normal user cannot run ntfsfix
+ cd ${D}
+ mv usr/bin/ntfsfix usr/sbin
+ rmdir usr/bin
+}