diff options
author | Justin Lecher <jlec@gentoo.org> | 2016-12-27 10:52:46 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2016-12-27 10:52:59 +0000 |
commit | 28a687386ea87008f182ab0b1ebf7b9ed6978929 (patch) | |
tree | cebe0eb82d55d4a53f84d64a84cd0b2d9752a000 /sys-fs | |
parent | net-analyzer/suricata: Updated init script (diff) | |
download | gentoo-28a687386ea87008f182ab0b1ebf7b9ed6978929.tar.gz gentoo-28a687386ea87008f182ab0b1ebf7b9ed6978929.tar.bz2 gentoo-28a687386ea87008f182ab0b1ebf7b9ed6978929.zip |
sys-fs/f2fs-tools: Fix HOMEPAGE
Don't build static libs instead of deleting them at the end
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/f2fs-tools/f2fs-tools-1.7.0.ebuild | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/sys-fs/f2fs-tools/f2fs-tools-1.7.0.ebuild b/sys-fs/f2fs-tools/f2fs-tools-1.7.0.ebuild index beabc5eb8e75..740e86336a8e 100644 --- a/sys-fs/f2fs-tools/f2fs-tools-1.7.0.ebuild +++ b/sys-fs/f2fs-tools/f2fs-tools-1.7.0.ebuild @@ -7,7 +7,7 @@ EAPI="6" inherit multilib DESCRIPTION="Tools for Flash-Friendly File System (F2FS)" -HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/jaegeuk/f2fs-tools.git;a=summary" +HOMEPAGE="https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/about/" SRC_URI="https://dev.gentoo.org/~blueness/f2fs-tools/${P}.tar.xz" LICENSE="GPL-2" @@ -21,11 +21,8 @@ DEPEND=" src_configure() { #This is required to install to /sbin, bug #481110 - econf --prefix=/ --includedir=/usr/include -} - -src_install() { - default - rm -f "${ED}"/$(get_libdir)/libf2fs.{,l}a - rm -f "${ED}"/$(get_libdir)/libf2fs_format.{,l}a + econf \ + --prefix=/ \ + --includedir=/usr/include \ + --disable-static } |