media-sound/pamix: Fixed QA issues and compilation against ncurses[-tinfo].
authorLars Wendler <polynomial-c@gentoo.org>
Tue, 2 Jan 2018 21:17:32 +0000 (22:17 +0100)
committerLars Wendler <polynomial-c@gentoo.org>
Tue, 2 Jan 2018 21:17:52 +0000 (22:17 +0100)
Closes: https://bugs.gentoo.org/643148
Closes: https://bugs.gentoo.org/643150
Package-Manager: Portage-2.3.19, Repoman-2.3.6

media-sound/pamix/files/pamix-1.6-ncurses_pkgconfig.patch [new file with mode: 0644]
media-sound/pamix/pamix-1.6.ebuild
media-sound/pamix/pamix-9999.ebuild

diff --git a/media-sound/pamix/files/pamix-1.6-ncurses_pkgconfig.patch b/media-sound/pamix/files/pamix-1.6-ncurses_pkgconfig.patch
new file mode 100644 (file)
index 0000000..c059771
--- /dev/null
@@ -0,0 +1,34 @@
+From 90bd2ead3d88b5b24093cb76f9500b69bb0221dd Mon Sep 17 00:00:00 2001
+From: Lars Wendler <polynomial-c@gentoo.org>
+Date: Tue, 2 Jan 2018 21:24:05 +0100
+Subject: [PATCH] Use pkg-config to reliably find ncurses lib.
+
+Otherwise linking might fail when ncurses was built with separate tinfo lib.
+---
+ CMakeLists.txt | 7 +++++--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 38605f2..c7da94e 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -17,11 +17,14 @@ file(GLOB_RECURSE pamix_SRC
+ include_directories("include")
+ link_libraries("pulse" "pthread")
+ 
++find_package(PkgConfig REQUIRED QUIET)
+ IF (WITH_UNICODE)
+-    link_libraries("ncursesw")
++    pkg_search_module(NCURSESW REQUIRED ncursesw)
++    link_libraries(${NCURSESW_LDFLAGS})
+     add_definitions(-DFEAT_UNICODE)
+ ELSE ()
+-    link_libraries("ncurses")
++    pkg_search_module(NCURSES REQUIRED ncurses)
++    link_libraries(${NCURSES_LDFLAGS})
+ ENDIF ()
+ 
+ add_executable(pamix ${pamix_SRC})
+-- 
+2.16.0.rc0
+
index 19febfb88f4a25a1687eb6929b5e89a0bfafd25e..dbeb0e57cc75d8da27722adb793a8e3d50ead7dc 100644 (file)
@@ -28,13 +28,9 @@ DEPEND="sys-devel/autoconf-archive
        virtual/pkgconfig
        ${RDEPEND}"
 
-src_prepare() {
-       default
-
-       # ugly hackaround for split tinfo ncurses libs
-       sed '/link_libraries.*ncurses/s@\(")\)@" "tinfo\1@' \
-               -i CMakeLists.txt || die
-}
+PATCHES=(
+       "${FILESDIR}/${P}-ncurses_pkgconfig.patch"
+)
 
 src_configure() {
        local mycmakeargs=(
index acdf22771d05b0ca97261a5ce904894e04058950..a3da8fcc45fea6eb56eecc13900feeb2fc0e0c91 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -28,14 +28,6 @@ DEPEND="sys-devel/autoconf-archive
        virtual/pkgconfig
        ${RDEPEND}"
 
-src_prepare() {
-       default
-
-       # ugly hackaround for split tinfo ncurses libs
-       sed '/link_libraries.*ncurses/s@\(")\)@" "tinfo\1@' \
-               -i CMakeLists.txt || die
-}
-
 src_configure() {
        local mycmakeargs=(
                -DWITH_UNICODE="$(usex unicode)"