pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/archivers/unshield



Module Name:    pkgsrc
Committed By:   nia
Date:           Wed Oct  2 07:02:06 UTC 2019

Modified Files:
        pkgsrc/archivers/unshield: Makefile PLIST distinfo
Added Files:
        pkgsrc/archivers/unshield/patches: patch-CMakeLists.txt

Log Message:
unshield: Use CMAKE_INSTALL_MANDIR.

While here, appease pkglint.

Bump PKGREVISION


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/archivers/unshield/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/archivers/unshield/PLIST
cvs rdiff -u -r1.7 -r1.8 pkgsrc/archivers/unshield/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/archivers/unshield/patches/patch-CMakeLists.txt

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/archivers/unshield/Makefile
diff -u pkgsrc/archivers/unshield/Makefile:1.8 pkgsrc/archivers/unshield/Makefile:1.9
--- pkgsrc/archivers/unshield/Makefile:1.8      Fri Sep 22 23:26:20 2017
+++ pkgsrc/archivers/unshield/Makefile  Wed Oct  2 07:02:05 2019
@@ -1,19 +1,20 @@
-# $NetBSD: Makefile,v 1.8 2017/09/22 23:26:20 wiedi Exp $
-
-DISTNAME=       unshield-1.4.2
-PKGREVISION=   1
-MASTER_SITES=   ${MASTER_SITE_GITHUB:=twogood/}
-GITHUB_TAG=     ${PKGVERSION_NOREV}
-EXTRACT_SUFX=   .zip
+# $NetBSD: Makefile,v 1.9 2019/10/02 07:02:05 nia Exp $
 
+DISTNAME=      unshield-1.4.2
+PKGREVISION=   2
 CATEGORIES=    archivers
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=twogood/}
+GITHUB_TAG=    ${PKGVERSION_NOREV}
+EXTRACT_SUFX=  .zip
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/twogood/unshield
 COMMENT=       Extract InstallShield .CAB files
 LICENSE=       mit
 
-USE_LIBTOOL=           yes
-USE_TOOLS+=            pkg-config
-USE_CMAKE=             yes
-USE_LANGUAGES+=                c++ c
+USE_CMAKE=     yes
+USE_TOOLS+=    pkg-config
+USE_LANGUAGES= c c++
 
 LDFLAGS+=      -liconv
 

Index: pkgsrc/archivers/unshield/PLIST
diff -u pkgsrc/archivers/unshield/PLIST:1.3 pkgsrc/archivers/unshield/PLIST:1.4
--- pkgsrc/archivers/unshield/PLIST:1.3 Tue Aug 29 11:18:40 2017
+++ pkgsrc/archivers/unshield/PLIST     Wed Oct  2 07:02:05 2019
@@ -1,8 +1,8 @@
-@comment $NetBSD: PLIST,v 1.3 2017/08/29 11:18:40 martin Exp $
+@comment $NetBSD: PLIST,v 1.4 2019/10/02 07:02:05 nia Exp $
 bin/unshield
 include/libunshield.h
 lib/libunshield.so
 lib/libunshield.so.0
 lib/libunshield.so.0.0.0
 lib/pkgconfig/libunshield.pc
-share/man/man1/unshield.1
+man/man1/unshield.1

Index: pkgsrc/archivers/unshield/distinfo
diff -u pkgsrc/archivers/unshield/distinfo:1.7 pkgsrc/archivers/unshield/distinfo:1.8
--- pkgsrc/archivers/unshield/distinfo:1.7      Tue Aug 29 11:18:40 2017
+++ pkgsrc/archivers/unshield/distinfo  Wed Oct  2 07:02:05 2019
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.7 2017/08/29 11:18:40 martin Exp $
+$NetBSD: distinfo,v 1.8 2019/10/02 07:02:05 nia Exp $
 
 SHA1 (unshield-1.4.2.zip) = 5246a79c1d94825818d035f7c0a66ab0d6648725
 RMD160 (unshield-1.4.2.zip) = c88591248b0e86a55e2ac19dafd6ee1aacd76277
 SHA512 (unshield-1.4.2.zip) = 28b31a634a77c674c7eaf85a18f16fe6c8f8ac4eb87f1464f08f894fd590ae6351a207e8dcc09b7cf9a7323aab312fb98835944f8a4c4f6a7764557b386031aa
 Size (unshield-1.4.2.zip) = 58815 bytes
+SHA1 (patch-CMakeLists.txt) = cbbcc0265d963e498522053f24557c505fd03539

Added files:

Index: pkgsrc/archivers/unshield/patches/patch-CMakeLists.txt
diff -u /dev/null pkgsrc/archivers/unshield/patches/patch-CMakeLists.txt:1.1
--- /dev/null   Wed Oct  2 07:02:06 2019
+++ pkgsrc/archivers/unshield/patches/patch-CMakeLists.txt      Wed Oct  2 07:02:06 2019
@@ -0,0 +1,13 @@
+$NetBSD: patch-CMakeLists.txt,v 1.1 2019/10/02 07:02:06 nia Exp $
+
+Use CMAKE_INSTALL_MANDIR.
+
+--- CMakeLists.txt.orig        2017-01-15 19:09:19.000000000 +0000
++++ CMakeLists.txt
+@@ -71,5 +71,5 @@ add_definitions(-fPIC)
+ 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)



Home | Main Index | Thread Index | Old Index