pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/smake



Module Name:    pkgsrc
Committed By:   micha
Date:           Fri Jun  5 16:48:16 UTC 2020

Modified Files:
        pkgsrc/devel/smake: Makefile Makefile.common distinfo

Log Message:
devel/smake: Update to 1.3nb11

- Rebase to schilytools release 2020-05-25
- Add helper code for tbl (man page table preprocessor) to Makefile.common
- Add helper code for OS specific man page sections to Makefile.common
- Bump PKGREVISION


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/smake/Makefile \
    pkgsrc/devel/smake/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/smake/Makefile.common

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

Modified files:

Index: pkgsrc/devel/smake/Makefile
diff -u pkgsrc/devel/smake/Makefile:1.8 pkgsrc/devel/smake/Makefile:1.9
--- pkgsrc/devel/smake/Makefile:1.8     Mon May 11 13:54:31 2020
+++ pkgsrc/devel/smake/Makefile Fri Jun  5 16:48:16 2020
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.8 2020/05/11 13:54:31 micha Exp $
+# $NetBSD: Makefile,v 1.9 2020/06/05 16:48:16 micha Exp $
 
-DISTNAME=      schily-2020-05-11
+DISTNAME=      schily-2020-05-25
 PKGNAME=       smake-1.3
-PKGREVISION=   10
+PKGREVISION=   11
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=schilytools/}
 EXTRACT_SUFX=  .tar.bz2
Index: pkgsrc/devel/smake/distinfo
diff -u pkgsrc/devel/smake/distinfo:1.8 pkgsrc/devel/smake/distinfo:1.9
--- pkgsrc/devel/smake/distinfo:1.8     Mon May 11 13:54:31 2020
+++ pkgsrc/devel/smake/distinfo Fri Jun  5 16:48:16 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.8 2020/05/11 13:54:31 micha Exp $
+$NetBSD: distinfo,v 1.9 2020/06/05 16:48:16 micha Exp $
 
-SHA1 (schily-2020-05-11.tar.bz2) = 1992e23344880fb58443c5b89b24fded4039f7a7
-RMD160 (schily-2020-05-11.tar.bz2) = bdf3ac0349f00095d7e17f1b14a07f6dcb94a0e2
-SHA512 (schily-2020-05-11.tar.bz2) = a12f0a3caa14c35af150afb4354fbe7c5b1d6ad301d24efbed6f0ec7c38919fe2bf863a117d46107178d11f60b9dd93f72f173c722e2e129d86d348b01fc56ee
-Size (schily-2020-05-11.tar.bz2) = 4783976 bytes
+SHA1 (schily-2020-05-25.tar.bz2) = ba4f353ab3c3ecded4c417e8601f6986717508a9
+RMD160 (schily-2020-05-25.tar.bz2) = 56f9a9812f26ff80699bb1e5ed299e24a724ff18
+SHA512 (schily-2020-05-25.tar.bz2) = 73079c7c9c724911af10e641dfd82fb900c434c59a1d30fa34ac69f7f3e31dfe050cf718621574ce54cf5eb7189f32a5894fe070115c7eabc13c65e00b010b3b
+Size (schily-2020-05-25.tar.bz2) = 4794851 bytes

Index: pkgsrc/devel/smake/Makefile.common
diff -u pkgsrc/devel/smake/Makefile.common:1.3 pkgsrc/devel/smake/Makefile.common:1.4
--- pkgsrc/devel/smake/Makefile.common:1.3      Fri Oct  4 13:32:05 2019
+++ pkgsrc/devel/smake/Makefile.common  Fri Jun  5 16:48:16 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.3 2019/10/04 13:32:05 micha Exp $
+# $NetBSD: Makefile.common,v 1.4 2020/06/05 16:48:16 micha Exp $
 # used by archivers/star/Makefile
 # used by devel/smake/Makefile
 # used by shells/bosh/Makefile
@@ -56,3 +56,36 @@ pre-configure:
                        printf "(created)\n" ;                          \
                fi;                                                     \
        done
+
+# Man pages with documentation of file formats should go to section 4 on
+# SysV based systems. All supported systems that are treated by schilytools
+# with "MANSTYLE= sysv" in the RULES/os-${OPSYS}.def" files must be caught
+# by this check (IRIX and OSF/1 are treated with BSD style by schilytools).
+PLIST_VARS+=   bsd sysv
+.if ${OPSYS} == "AIX" ||       \
+       ${OPSYS} == "HPUX" ||   \
+       ${OPSYS} == "SunOS"
+PLIST.sysv=    yes
+.else
+PLIST.bsd=     yes
+.endif
+
+# tbl(1) of NetBSD 9 cannot be used and cripples the man pages, but man(1)
+# from mandoc uses a builtin tbl that is good enough.
+# This check should catch all supported OS that needs processed tables for
+# man pages and have a tbl that can be used to do that.
+.if ${OPSYS} == "AIX" ||               \
+       ${OPSYS} == "Cygwin" ||         \
+       ${OPSYS} == "Darwin" ||         \
+       ${OPSYS} == "DragonFly" ||      \
+       ${OPSYS} == "Haiku" ||          \
+       ${OPSYS} == "HPUX" ||           \
+       ${OPSYS} == "IRIX" ||           \
+       ${OPSYS} == "Linux" ||          \
+       ${OPSYS} == "Minix" ||          \
+       ${OPSYS} == "MirBSD" ||         \
+       ${OPSYS} == "OSF1" ||           \
+       ${OPSYS} == "QNX" ||            \
+       ${OPSYS} == "SunOS"
+USE_TOOLS+=    tbl
+.endif



Home | Main Index | Thread Index | Old Index