commit: 641226130f6ee8b1e390db562276c6f9045193ea Author: Michael Palimaka <kensington <AT> gentoo <DOT> org> AuthorDate: Wed Jun 29 18:25:13 2016 +0000 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org> CommitDate: Wed Jun 29 18:27:06 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64122613
dev-db/sqliteman: add patch to solve build failure on uclibc caused by underlinking Gentoo-bug: 587076 Package-Manager: portage-2.3.0 dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch | 19 +++++++++++++++++++ dev-db/sqliteman/sqliteman-1.2.2-r1.ebuild | 3 ++- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch b/dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch new file mode 100644 index 0000000..a9bf4f4 --- /dev/null +++ b/dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch @@ -0,0 +1,19 @@ +Resolves underlinking issue causing build failure on uclibc. + +Author: René Rhéaume <[email protected]> +Gentoo-bug: 587076 + +--- a/sqliteman/CMakeLists.txt ++++ b/sqliteman/CMakeLists.txt +@@ -183,7 +183,10 @@ IF (WIN32) + # don't use console subsystem + IF (MINGW) + TARGET_LINK_LIBRARIES(${EXE_NAME} "-mwindows") +- ENDIF (MINGW) ++ ENDIF (MINGW) ++ELSE (WIN32) ++ FIND_PACKAGE(Threads) ++ TARGET_LINK_LIBRARIES(${EXE_NAME} ${CMAKE_THREAD_LIBS_INIT}) + ENDIF (WIN32) + + diff --git a/dev-db/sqliteman/sqliteman-1.2.2-r1.ebuild b/dev-db/sqliteman/sqliteman-1.2.2-r1.ebuild index edadcb7..e10a0ca 100644 --- a/dev-db/sqliteman/sqliteman-1.2.2-r1.ebuild +++ b/dev-db/sqliteman/sqliteman-1.2.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -23,6 +23,7 @@ RDEPEND=" DEPEND="${RDEPEND}" DOCS=( AUTHORS README ) +PATCHES=( "${FILESDIR}/${P}-lpthread.patch" ) src_prepare() { # remove bundled lib
