diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-05-05 20:12:37 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-05-08 19:03:33 +0200 |
commit | eb28e7699f4f12ecd42c8412e16f4386257f3990 (patch) | |
tree | 49dcbc8979ac5568a3b551c7d50641f2ddb7fc1f /app-arch/unshield/files | |
parent | app-arch/brotli: EAPI-7 bump (diff) | |
download | gentoo-eb28e7699f4f12ecd42c8412e16f4386257f3990.tar.gz gentoo-eb28e7699f4f12ecd42c8412e16f4386257f3990.tar.bz2 gentoo-eb28e7699f4f12ecd42c8412e16f4386257f3990.zip |
app-arch/unshield: 1.4.3 version bump, EAPI-7 bump
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-arch/unshield/files')
-rw-r--r-- | app-arch/unshield/files/unshield-1.4.3-mandir.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app-arch/unshield/files/unshield-1.4.3-mandir.patch b/app-arch/unshield/files/unshield-1.4.3-mandir.patch new file mode 100644 index 000000000000..49f634fa8631 --- /dev/null +++ b/app-arch/unshield/files/unshield-1.4.3-mandir.patch @@ -0,0 +1,21 @@ +From cf53f87fae324e1a4c5d9ebd49b88947a9b02267 Mon Sep 17 00:00:00 2001 +From: Dan Church <amphetamachine@gmail.com> +Date: Fri, 2 Nov 2018 11:00:20 -0500 +Subject: [PATCH] Fix man page install path + +Use the standard CMake variable to determine location. +--- + CMakeLists.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index e0c20d3..0aeecb5 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -87,5 +87,5 @@ endif () + add_subdirectory(lib) + add_subdirectory(src) + +-install(FILES man/unshield.1 DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/man/man1) ++install(FILES man/unshield.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libunshield.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) |