summaryrefslogtreecommitdiff
path: root/sys-fs/fuse4bsd/fuse4bsd-0.3.9_pre1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-11-10 13:21:36 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-11-10 13:21:36 +0000
commit77398e424e45d9e98c1cef3c43bdadb9d56e81ef (patch)
tree5aeffd3fc7b92fc615bd2c222fa8831aeda1925b /sys-fs/fuse4bsd/fuse4bsd-0.3.9_pre1.ebuild
parentbd4aeefe33e63f613512604e47bfca7b2187697d (diff)
gentoo resync : 10.11.2019
Diffstat (limited to 'sys-fs/fuse4bsd/fuse4bsd-0.3.9_pre1.ebuild')
-rw-r--r--sys-fs/fuse4bsd/fuse4bsd-0.3.9_pre1.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/sys-fs/fuse4bsd/fuse4bsd-0.3.9_pre1.ebuild b/sys-fs/fuse4bsd/fuse4bsd-0.3.9_pre1.ebuild
deleted file mode 100644
index 710c35f8bc01..000000000000
--- a/sys-fs/fuse4bsd/fuse4bsd-0.3.9_pre1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit portability toolchain-funcs eutils flag-o-matic
-
-DESCRIPTION="Fuse for FreeBSD"
-HOMEPAGE="http://fuse4bsd.creo.hu/"
-# -sbin is needed for getmntopts.c, hardcoding 6.2 is nasty but can't think of
-# any better solution right now
-SRC_URI="http://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/fuse4bsd/498acaef33b0.tar.gz
- mirror://gentoo/freebsd-sbin-9.1.tar.bz2"
-S="${WORKDIR}/fuse4bsd-498acaef33b0"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-DEPEND=">=sys-freebsd/freebsd-sources-9.1
- virtual/pmake"
-RDEPEND="sys-fs/fuse"
-
-QA_TEXTRELS="boot/modules/fuse.ko"
-
-src_prepare() {
- cp /usr/include/fuse/fuse_kernel.h fuse_module/ || die
- cp "${WORKDIR}/sbin/mount/getmntopts.c" mount_fusefs/ || die
- epatch "${FILESDIR}"/${P}-ports.patch
- epatch "${FILESDIR}"/${P}-fbsd91.patch
-}
-
-src_compile() {
- filter-ldflags "-Wl,--hash-style=*"
- tc-export CC
- cd "${S}"/fuse_module
- $(get_bmake) \
- KMODDIR=/boot/modules BINDIR=/usr/sbin MANDIR=/usr/share/man/man \
- MOUNT="${WORKDIR}/sbin/mount" LDFLAGS="$(raw-ldflags)" \
- || die "$(get_bmake) failed"
-
- cd "${S}"/mount_fusefs
- $(get_bmake) \
- KMODDIR=/boot/modules BINDIR=/usr/sbin MANDIR=/usr/share/man/man \
- MOUNT="${WORKDIR}/sbin/mount" \
- || die "$(get_bmake) failed"
-}
-
-src_install() {
- dodir /boot/modules
- $(get_bmake) \
- KMODDIR=/boot/modules BINDIR=/usr/sbin MANDIR=/usr/share/man/man \
- DESTDIR="${ED}" install \
- || die "$(get_bmake) failed"
-
- dodoc doc/{CREDITS,README}
-}