diff options
author | Lucian Poston <lucianposton@pm.me> | 2018-08-01 16:11:50 -0700 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-08-22 22:32:39 +0200 |
commit | 1dfcc35bd4fa8159f8824cbfa745896841626818 (patch) | |
tree | f2739577437689ec92f105c0edc91feabfdfdb40 /sys-fs/fragview/files | |
parent | app-misc/imgurbash2: New package (diff) | |
download | gentoo-1dfcc35bd4fa8159f8824cbfa745896841626818.tar.gz gentoo-1dfcc35bd4fa8159f8824cbfa745896841626818.tar.bz2 gentoo-1dfcc35bd4fa8159f8824cbfa745896841626818.zip |
sys-fs/fragview: New package
Closes: https://bugs.gentoo.org/662614
Closes: https://github.com/gentoo/gentoo/pull/9417
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'sys-fs/fragview/files')
-rw-r--r-- | sys-fs/fragview/files/fragview-0.1.1-fix-linking.patch | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/sys-fs/fragview/files/fragview-0.1.1-fix-linking.patch b/sys-fs/fragview/files/fragview-0.1.1-fix-linking.patch new file mode 100644 index 000000000000..2eadf02bfff7 --- /dev/null +++ b/sys-fs/fragview/files/fragview-0.1.1-fix-linking.patch @@ -0,0 +1,46 @@ +From 11ab3027fda015798b92fd7e44cb5e3289f41542 Mon Sep 17 00:00:00 2001 +From: Rinat <ibragimovrinat@mail.ru> +Date: Thu, 18 Jul 2013 12:03:30 +0400 +Subject: [PATCH] fix linking with "-Wl,--as-needed" + +https://github.com/i-rinat/fragview/issues/2 + + +https://github.com/i-rinat/fragview/commit/11ab3027fda015798b92fd7e44cb5e3289f41542 + + +--- + CMakeLists.txt | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index d7003e4..fbd7cbb 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -43,13 +43,13 @@ add_executable (fileseverity + ) + + target_link_libraries (fragview +- ${GTKMM_LIBRARIES} + clusters ++ ${GTKMM_LIBRARIES} + ) + + target_link_libraries (fileseverity +- ${GLIBMM_LIBRARIES} + clusters ++ ${GLIBMM_LIBRARIES} + ) + + add_executable (fragdb +@@ -57,9 +57,9 @@ add_executable (fragdb + ) + + target_link_libraries (fragdb ++ clusters + ${GLIBMM_LIBRARIES} + ${SQLITE3_LIBRARIES} +- clusters + ) + + install (TARGETS fileseverity fragdb fragview |