app-i18n/opencc: add patch to avoid conflicting copy
authorNaohiro Aota <naota@gentoo.org>
Tue, 9 Oct 2018 17:56:23 +0000 (02:56 +0900)
committerNaohiro Aota <naota@gentoo.org>
Tue, 9 Oct 2018 17:57:31 +0000 (02:57 +0900)
copy command is only necessary in VS build, and it's causing conflict on
parallel build. Dropping the command is safe on Linux.

Closes: https://bugs.gentoo.org/666904
Signed-off-by: Naohiro Aota <naota@gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

app-i18n/opencc/files/opencc-stop-copy.patch [new file with mode: 0644]
app-i18n/opencc/opencc-1.0.5.ebuild
app-i18n/opencc/opencc-9999.ebuild

diff --git a/app-i18n/opencc/files/opencc-stop-copy.patch b/app-i18n/opencc/files/opencc-stop-copy.patch
new file mode 100644 (file)
index 0000000..4793951
--- /dev/null
@@ -0,0 +1,18 @@
+We don't need this copy command on Linux (or other than Visual Studio
+build).  Since it is colliding each other on parallel build, drop the
+command for now.
+
+See https://bugs.gentoo.org/666904
+diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt
+index 1516775..2deb764 100644
+--- a/data/CMakeLists.txt
++++ b/data/CMakeLists.txt
+@@ -109,8 +109,6 @@ foreach(DICT ${DICTS})
+       ${DICT}.ocd
+     COMMENT
+       "Building ${DICT}.ocd"
+-    COMMAND
+-      ${CMAKE_COMMAND} -E copy "$<TARGET_FILE:libopencc>" "$<TARGET_FILE_DIR:${OPENCC_DICT_BIN}>"
+     COMMAND
+       ${OPENCC_DICT_BIN}
+         --input ${DICT_${DICT}_INPUT}
index ba948e2bf80d3798ac7095bd012b55f0810b6a35..2ddcaab943f2bfb6eda42ac5264ec037db538420 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -26,7 +26,10 @@ IUSE="doc test"
 DEPEND="doc? ( app-doc/doxygen )"
 
 DOCS="AUTHORS *.md"
-PATCHES=( "${FILESDIR}"/${PN}-test.patch )
+PATCHES=(
+       "${FILESDIR}"/${PN}-test.patch
+       "${FILESDIR}"/${PN}-stop-copy.patch
+)
 
 src_prepare() {
        sed -i "s|\${DIR_SHARE_OPENCC}/doc|share/doc/${PF}|" doc/CMakeLists.txt
index 9ec1cbd5d8b77ff39a31faf19268157df904fbca..857d6dd70b8e4be6ce2d929ecb8ef71cb3f00d22 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -26,7 +26,10 @@ IUSE="doc test"
 DEPEND="doc? ( app-doc/doxygen )"
 
 DOCS="AUTHORS *.md"
-PATCHES=( "${FILESDIR}"/${PN}-test.patch )
+PATCHES=(
+       "${FILESDIR}"/${PN}-test.patch
+       "${FILESDIR}"/${PN}-stop-copy.patch
+)
 
 src_prepare() {
        sed -i "s|\${DIR_SHARE_OPENCC}/doc|share/doc/${PF}|" doc/CMakeLists.txt