summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2013-02-16 05:54:39 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2013-02-16 05:54:39 +0000
commitdfb1fb2a9a6c345ffce40a4fc6319cd3d7dfe7eb (patch)
treefc4516e4cc4fc0cefb8e52c5278e8a1c498e1373 /sys-fs/fuse-exfat
parentVersion bump. (diff)
downloadgentoo-2-dfb1fb2a9a6c345ffce40a4fc6319cd3d7dfe7eb.tar.gz
gentoo-2-dfb1fb2a9a6c345ffce40a4fc6319cd3d7dfe7eb.tar.bz2
gentoo-2-dfb1fb2a9a6c345ffce40a4fc6319cd3d7dfe7eb.zip
old
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'sys-fs/fuse-exfat')
-rw-r--r--sys-fs/fuse-exfat/ChangeLog7
-rw-r--r--sys-fs/fuse-exfat/files/fuse-exfat-0.9.8-build-vars.patch27
-rw-r--r--sys-fs/fuse-exfat/fuse-exfat-0.9.8-r1.ebuild43
-rw-r--r--sys-fs/fuse-exfat/fuse-exfat-1.0.0.ebuild40
4 files changed, 6 insertions, 111 deletions
diff --git a/sys-fs/fuse-exfat/ChangeLog b/sys-fs/fuse-exfat/ChangeLog
index 6d1cb4c641e0..7b03b6df46a4 100644
--- a/sys-fs/fuse-exfat/ChangeLog
+++ b/sys-fs/fuse-exfat/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-fs/fuse-exfat
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/ChangeLog,v 1.13 2013/02/16 05:52:10 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/ChangeLog,v 1.14 2013/02/16 05:54:38 ssuominen Exp $
+
+ 16 Feb 2013; Samuli Suominen <ssuominen@gentoo.org>
+ -fuse-exfat-0.9.8-r1.ebuild, -files/fuse-exfat-0.9.8-build-vars.patch,
+ -fuse-exfat-1.0.0.ebuild:
+ old
*fuse-exfat-1.0.1 (16 Feb 2013)
diff --git a/sys-fs/fuse-exfat/files/fuse-exfat-0.9.8-build-vars.patch b/sys-fs/fuse-exfat/files/fuse-exfat-0.9.8-build-vars.patch
deleted file mode 100644
index 2f0b1ade4645..000000000000
--- a/sys-fs/fuse-exfat/files/fuse-exfat-0.9.8-build-vars.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-make sure we pass down important env vars
-
-https://groups.google.com/d/topic/exfat/BfRq9XU2kQM/discussion
-
---- a/SConstruct
-+++ b/SConstruct
-@@ -29,6 +29,10 @@ destdir = env.get('DESTDIR', '/sbin');
- targets = []
- libs = ['exfat']
-
-+if 'AR' in os.environ:
-+ conf.env.Replace(AR = os.environ['AR'])
-+if 'RANLIB' in os.environ:
-+ conf.env.Replace(RANLIB = os.environ['RANLIB'])
- if 'CC' in os.environ:
- conf.env.Replace(CC = os.environ['CC'])
- if 'CCFLAGS' in os.environ:
-@@ -74,6 +74,9 @@ if platform.system() == 'FreeBSD':
- conf.env.Append(LIBPATH = ['/usr/local/lib'])
-
- env = conf.Finish()
-+for var in ('SYSROOT',):
-+ if var in os.environ:
-+ env['ENV'][var] = os.environ[var]
-
- def make_symlink(dir, target, link_name):
- workdir = os.getcwd()
diff --git a/sys-fs/fuse-exfat/fuse-exfat-0.9.8-r1.ebuild b/sys-fs/fuse-exfat/fuse-exfat-0.9.8-r1.ebuild
deleted file mode 100644
index 11be14f10acf..000000000000
--- a/sys-fs/fuse-exfat/fuse-exfat-0.9.8-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/fuse-exfat-0.9.8-r1.ebuild,v 1.5 2013/01/11 16:15:59 ssuominen Exp $
-
-EAPI=4
-inherit scons-utils udev toolchain-funcs eutils
-
-DESCRIPTION="exFAT filesystem FUSE module"
-HOMEPAGE="http://code.google.com/p/exfat/"
-SRC_URI="http://exfat.googlecode.com/files/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~arm ~amd64 ~x86"
-IUSE=""
-
-RDEPEND="sys-fs/fuse"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-0.9.8-build-vars.patch
-}
-
-src_compile() {
- tc-export AR CC RANLIB
- escons CCFLAGS="${CFLAGS}"
-}
-
-src_install() {
- dosbin fuse/mount.exfat-fuse
- dosym mount.exfat-fuse /usr/sbin/mount.exfat
-
- doman */*.8
- dodoc ChangeLog
-
- udev_dorules "${FILESDIR}"/99-exfat.rules
-}
-
-pkg_postinst() {
- echo
- elog 'You can install 'exfat-tools' for dump, label, mkfs and fcsk.'
- echo
-}
diff --git a/sys-fs/fuse-exfat/fuse-exfat-1.0.0.ebuild b/sys-fs/fuse-exfat/fuse-exfat-1.0.0.ebuild
deleted file mode 100644
index b018ce36958e..000000000000
--- a/sys-fs/fuse-exfat/fuse-exfat-1.0.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/fuse-exfat-1.0.0.ebuild,v 1.3 2013/02/16 05:24:07 zmedico Exp $
-
-EAPI=5
-inherit scons-utils toolchain-funcs #udev
-
-DESCRIPTION="exFAT filesystem FUSE module"
-HOMEPAGE="http://code.google.com/p/exfat/"
-SRC_URI="http://exfat.googlecode.com/files/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~arm ~amd64 ~x86 ~x86-linux"
-IUSE=""
-
-RDEPEND="sys-fs/fuse"
-DEPEND=${RDEPEND}
-
-src_compile() {
- tc-export AR CC RANLIB
- escons CCFLAGS="${CFLAGS}"
-}
-
-src_install() {
- dosbin fuse/mount.exfat-fuse
- dosym mount.exfat-fuse /usr/sbin/mount.exfat
-
- doman */*.8
- dodoc ChangeLog
-
- #This shouldn't really be required. Comment it out for now.
- #udev_dorules "${FILESDIR}"/99-exfat.rules
-}
-
-pkg_postinst() {
- echo
- elog 'You can install 'exfat-tools' for dump, label, mkfs and fsck.'
- echo
-}