summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2014-04-25 08:46:14 +0000
committerTim Harder <radhermit@gentoo.org>2014-04-25 08:46:14 +0000
commita8f2b15a294e3cc634c11814acb3ddc785206e93 (patch)
tree63e9519e7482072241da4df30907f59872eb9f27 /sys-fs
parentRemove old. (diff)
downloadgentoo-2-a8f2b15a294e3cc634c11814acb3ddc785206e93.tar.gz
gentoo-2-a8f2b15a294e3cc634c11814acb3ddc785206e93.tar.bz2
gentoo-2-a8f2b15a294e3cc634c11814acb3ddc785206e93.zip
Remove old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/avfs/ChangeLog8
-rw-r--r--sys-fs/avfs/avfs-0.9.9.ebuild64
-rw-r--r--sys-fs/avfs/avfs-1.0.0.ebuild66
-rw-r--r--sys-fs/avfs/files/avfs-0.9.8-gcc43_fix_open_missing_mode.patch11
4 files changed, 6 insertions, 143 deletions
diff --git a/sys-fs/avfs/ChangeLog b/sys-fs/avfs/ChangeLog
index 349c78045081..6824ed9396cd 100644
--- a/sys-fs/avfs/ChangeLog
+++ b/sys-fs/avfs/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-fs/avfs
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/avfs/ChangeLog,v 1.48 2013/04/25 19:15:26 pinkbyte Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/avfs/ChangeLog,v 1.49 2014/04/25 08:46:13 radhermit Exp $
+
+ 25 Apr 2014; Tim Harder <radhermit@gentoo.org> -avfs-0.9.9.ebuild,
+ -avfs-1.0.0.ebuild, -files/avfs-0.9.8-gcc43_fix_open_missing_mode.patch:
+ Remove old.
25 Apr 2013; Sergey Popov <pinkbyte@gentoo.org> avfs-1.0.1.ebuild:
Add ~arm keyword
diff --git a/sys-fs/avfs/avfs-0.9.9.ebuild b/sys-fs/avfs/avfs-0.9.9.ebuild
deleted file mode 100644
index 1147eb4a61fc..000000000000
--- a/sys-fs/avfs/avfs-0.9.9.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/avfs/avfs-0.9.9.ebuild,v 1.12 2012/09/30 18:02:06 armin76 Exp $
-
-EAPI=3
-inherit eutils linux-info
-
-DESCRIPTION="AVFS is a virtual filesystem that allows browsing of compressed files."
-HOMEPAGE="http://sourceforge.net/projects/avf"
-SRC_URI="mirror://sourceforge/avf/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ppc ppc64 x86"
-IUSE="static-libs +lzma"
-
-RDEPEND=">=sys-fs/fuse-2.4
- lzma? ( app-arch/xz-utils )"
-DEPEND="${RDEPEND}
- lzma? ( virtual/pkgconfig )"
-
-pkg_setup() {
- kernel_is lt 2 6 && die "Must have a version 2.6 kernel. Cannot continue. :("
-}
-
-src_prepare() {
- # Fixes bug #258295
- epatch "${FILESDIR}/${PN}-0.9.8-gcc43_fix_open_missing_mode.patch"
-}
-
-src_configure() {
- econf \
- --enable-fuse \
- --enable-library \
- --enable-shared \
- $(use_enable static-libs static) \
- $(use_with lzma xz)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- # remove cruft
- rm -f "${D}"/bin/davpass "${D}"/bin/ftppass || die "rm failed"
- # install docs
- cd "${S}"/doc
- dodoc api-overview background FORMAT INSTALL.* README.avfs-fuse || die "dodoc failed"
- cd ..
- dodoc AUTHORS ChangeLog COPYING* INSTALL NEWS README TODO || die "dodoc failed"
- docinto scripts
- dodoc scripts/avfs* scripts/*pass scripts/*mountavfs || die "dodoc failed"
- dosym /usr/lib/avfs/extfs/README /usr/share/doc/${PF}/README.extfs || die "dosym failed"
-}
-
-pkg_postinst() {
- einfo "This version of AVFS includes FUSE support. It is user-based."
- einfo "To execute:"
- einfo "1) as user, mkdir ~/.avfs"
- einfo "2) make sure fuse is either compiled into the kernel OR"
- einfo " modprobe fuse or add to startup."
- einfo "3) run mountavfs"
- einfo "To unload daemon, type umountavfs"
- echo
- einfo "READ the documentation! Enjoy :)"
-}
diff --git a/sys-fs/avfs/avfs-1.0.0.ebuild b/sys-fs/avfs/avfs-1.0.0.ebuild
deleted file mode 100644
index c5fb78c99a25..000000000000
--- a/sys-fs/avfs/avfs-1.0.0.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/avfs/avfs-1.0.0.ebuild,v 1.8 2012/09/30 18:02:06 armin76 Exp $
-
-EAPI=4
-inherit eutils
-
-DESCRIPTION="AVFS is a virtual filesystem that allows browsing of compressed files."
-HOMEPAGE="http://sourceforge.net/projects/avf"
-SRC_URI="mirror://sourceforge/avf/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ppc ppc64 x86"
-IUSE="static-libs +lzma"
-
-RDEPEND=">=sys-fs/fuse-2.4
- sys-libs/zlib
- app-arch/bzip2
- lzma? ( app-arch/xz-utils )"
-DEPEND="${RDEPEND}
- lzma? ( virtual/pkgconfig )"
-
-src_prepare() {
- # Fixes bug #258295
- epatch "${FILESDIR}/${PN}-0.9.8-gcc43_fix_open_missing_mode.patch"
-}
-
-src_configure() {
- econf \
- --enable-fuse \
- --enable-library \
- --enable-shared \
- --with-system-zlib \
- --with-system-bzlib \
- $(use_enable static-libs static) \
- $(use_with lzma xz)
-}
-
-src_install() {
- default
-
- # remove cruft
- rm "${D}"/usr/bin/{davpass,ftppass} || die "rm failed"
-
- # install docs
- dodoc doc/{api-overview,background,FORMAT,INSTALL.*,README.avfs-fuse}
- dosym /usr/lib/avfs/extfs/README /usr/share/doc/${PF}/README.extfs
-
- docinto scripts
- dodoc scripts/{avfscoda*,*pass}
-
- use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
-}
-
-pkg_postinst() {
- einfo "This version of AVFS includes FUSE support. It is user-based."
- einfo "To execute:"
- einfo "1) as user, mkdir ~/.avfs"
- einfo "2) make sure fuse is either compiled into the kernel OR"
- einfo " modprobe fuse or add to startup."
- einfo "3) run mountavfs"
- einfo "To unload daemon, type umountavfs"
- echo
- einfo "READ the documentation! Enjoy :)"
-}
diff --git a/sys-fs/avfs/files/avfs-0.9.8-gcc43_fix_open_missing_mode.patch b/sys-fs/avfs/files/avfs-0.9.8-gcc43_fix_open_missing_mode.patch
deleted file mode 100644
index f3ef83a7f31c..000000000000
--- a/sys-fs/avfs/files/avfs-0.9.8-gcc43_fix_open_missing_mode.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- modules/urar.c 2007-05-14 20:21:23.000000000 +0200
-+++ modules/urar.c 2009-02-09 13:48:56.780225932 +0100
-@@ -587,7 +587,7 @@
- if(res < 0)
- return res;
-
-- fd = open(tmpfile, O_RDWR | O_CREAT | O_TRUNC);
-+ fd = open(tmpfile, O_RDWR | O_CREAT | O_TRUNC, 0644);
- if(fd == -1) {
- res = -errno;
- av_log(AVLOG_ERROR, "RAR: Could not open %s: %s", tmpfile,