sys-fs/f2fs-tools: Fix HOMEPAGE
authorJustin Lecher <jlec@gentoo.org>
Tue, 27 Dec 2016 10:52:46 +0000 (10:52 +0000)
committerJustin Lecher <jlec@gentoo.org>
Tue, 27 Dec 2016 10:52:59 +0000 (10:52 +0000)
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>
sys-fs/f2fs-tools/f2fs-tools-1.7.0.ebuild

index beabc5eb8e750efe1154927100afeaace4c0c957..740e86336a8ec8d94ef09ae3077a8857a324a3f0 100644 (file)
@@ -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
 }