Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/fuse4bsd/
Date: Sun, 26 Aug 2018 20:35:37
Message-Id: 1535315677.0d246d39e41d78505e9beba425ee0eac16b36123.mgorny@gentoo
1 commit: 0d246d39e41d78505e9beba425ee0eac16b36123
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 26 20:20:12 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 26 20:34:37 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d246d39
7
8 sys-fs/fuse4bsd: Remove support for non-existent deps
9
10 sys-fs/fuse4bsd/fuse4bsd-0.3.9_pre1.ebuild | 19 +++----------------
11 1 file changed, 3 insertions(+), 16 deletions(-)
12
13 diff --git a/sys-fs/fuse4bsd/fuse4bsd-0.3.9_pre1.ebuild b/sys-fs/fuse4bsd/fuse4bsd-0.3.9_pre1.ebuild
14 index 7b0dbafe770..93edde20b24 100644
15 --- a/sys-fs/fuse4bsd/fuse4bsd-0.3.9_pre1.ebuild
16 +++ b/sys-fs/fuse4bsd/fuse4bsd-0.3.9_pre1.ebuild
17 @@ -1,4 +1,4 @@
18 -# Copyright 1999-2013 Gentoo Foundation
19 +# Copyright 1999-2018 Gentoo Foundation
20 # Distributed under the terms of the GNU General Public License v2
21
22 EAPI=5
23 @@ -16,11 +16,10 @@ S="${WORKDIR}/fuse4bsd-498acaef33b0"
24 LICENSE="BSD"
25 SLOT="0"
26 KEYWORDS="~x86-fbsd"
27 -IUSE="doc"
28 +IUSE=""
29
30 DEPEND=">=sys-freebsd/freebsd-sources-9.1
31 - virtual/pmake
32 - doc? ( app-text/deplate )"
33 + virtual/pmake"
34 RDEPEND="sys-fs/fuse"
35
36 QA_TEXTRELS="boot/modules/fuse.ko"
37 @@ -30,8 +29,6 @@ src_prepare() {
38 cp "${WORKDIR}/sbin/mount/getmntopts.c" mount_fusefs/ || die
39 epatch "${FILESDIR}"/${P}-ports.patch
40 epatch "${FILESDIR}"/${P}-fbsd91.patch
41 - sed -i -e "s:^DEPLATE=.*:DEPLATE=${EPREFIX}/usr/bin/deplate:" \
42 - doc/Makefile || die
43 }
44
45 src_compile() {
46 @@ -48,11 +45,6 @@ src_compile() {
47 KMODDIR=/boot/modules BINDIR=/usr/sbin MANDIR=/usr/share/man/man \
48 MOUNT="${WORKDIR}/sbin/mount" \
49 || die "$(get_bmake) failed"
50 -
51 - if use doc; then
52 - cd "${S}"/doc
53 - $(get_bmake) all || die "$(get_bmake) failed"
54 - fi
55 }
56
57 src_install() {
58 @@ -63,9 +55,4 @@ src_install() {
59 || die "$(get_bmake) failed"
60
61 dodoc doc/{CREDITS,README}
62 - if use doc; then
63 - dodoc doc/plaintext_out/* doc/pdf_out/*.pdf
64 - docinto html
65 - dodoc doc/html_chunked_out/*
66 - fi
67 }