Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/f2fs-tools/
Date: Tue, 27 Dec 2016 10:53:04
Message-Id: 1482835979.28a687386ea87008f182ab0b1ebf7b9ed6978929.jlec@gentoo
1 commit: 28a687386ea87008f182ab0b1ebf7b9ed6978929
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 27 10:52:46 2016 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 27 10:52:59 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28a68738
7
8 sys-fs/f2fs-tools: Fix HOMEPAGE
9
10 Don't build static libs instead of deleting them at the end
11
12 Package-Manager: Portage-2.3.3, Repoman-2.3.1
13 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
14
15 sys-fs/f2fs-tools/f2fs-tools-1.7.0.ebuild | 13 +++++--------
16 1 file changed, 5 insertions(+), 8 deletions(-)
17
18 diff --git a/sys-fs/f2fs-tools/f2fs-tools-1.7.0.ebuild b/sys-fs/f2fs-tools/f2fs-tools-1.7.0.ebuild
19 index beabc5e..740e863 100644
20 --- a/sys-fs/f2fs-tools/f2fs-tools-1.7.0.ebuild
21 +++ b/sys-fs/f2fs-tools/f2fs-tools-1.7.0.ebuild
22 @@ -7,7 +7,7 @@ EAPI="6"
23 inherit multilib
24
25 DESCRIPTION="Tools for Flash-Friendly File System (F2FS)"
26 -HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/jaegeuk/f2fs-tools.git;a=summary"
27 +HOMEPAGE="https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/about/"
28 SRC_URI="https://dev.gentoo.org/~blueness/f2fs-tools/${P}.tar.xz"
29
30 LICENSE="GPL-2"
31 @@ -21,11 +21,8 @@ DEPEND="
32
33 src_configure() {
34 #This is required to install to /sbin, bug #481110
35 - econf --prefix=/ --includedir=/usr/include
36 -}
37 -
38 -src_install() {
39 - default
40 - rm -f "${ED}"/$(get_libdir)/libf2fs.{,l}a
41 - rm -f "${ED}"/$(get_libdir)/libf2fs_format.{,l}a
42 + econf \
43 + --prefix=/ \
44 + --includedir=/usr/include \
45 + --disable-static
46 }