32fd69431c
Version 7.0.0.6, by Aleksey Cheusov, Sun, 19 Jan 2020 01:45:59 +0300 Add support for Solaris-10 and -11 to a lot of utilities (almost all with the help of musl-fts library!). A lot of fixes for SunC compiler (versions 5.11 and 5.15). mk/mkc_imp.f_bsd_getopt.mk: fix for target "clean" Fix feature "efun" on SunOS-5.10. Add new feature "strsep" that provides portable strsep(3) and stresep(3) find, ls, mtree and xinstall: fix build failure on eglibc-2.13 ====================================================================== Version 7.0.0.5, by Aleksey Cheusov, Mon, 6 Jan 2020 01:43:19 +0300 Fix typos doc/INSTALL Fix bugs in the local feature "base64". As a result we fix some compilation issues on musl-based Linuxes (Alpine Linux). Fix compilation failures (seen on musl-based Alpine Linux) of the following programs: compress, sort, hexdump, id, leave, uudecode Implement new local feature "bsd_signal" that implements BSD functions "sigblock", "sigsetmask", "sigmask" and "siggetmask".
34 lines
926 B
Makefile
34 lines
926 B
Makefile
# $NetBSD: Makefile,v 1.4 2020/01/24 19:23:51 cheusov Exp $
|
|
#
|
|
|
|
DISTNAME= nbase-7.0.0.6
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=cheusov/}
|
|
|
|
MAINTAINER= cheusov@NetBSD.org
|
|
HOMEPAGE= https://github.com/cheusov/nbase
|
|
COMMENT= NetBSD userlevel portable to other UNIX-like systems
|
|
LICENSE= modified-bsd
|
|
|
|
GITHUB_PROJECT= nbase
|
|
BUILD_DEPENDS+= mk-configure>=0.31.0:../../devel/mk-configure \
|
|
byacc-[0-9]*:../../devel/byacc
|
|
|
|
USE_LANGUAGES= c
|
|
USE_TOOLS+= lex # native yacc on OpenBSD is not good
|
|
|
|
TEST_TARGET= test
|
|
|
|
.include "../../devel/mk-configure/mk-c.mk"
|
|
|
|
MAKE_FLAGS+= PREFIX=${PREFIX}/nbase \
|
|
MANDIR=${PREFIX}/nbase/${PKGMANDIR} \
|
|
LINKSPREFIX=${PREFIX}
|
|
|
|
# -Wno-error=unused-result -Werror=strict-aliasing(libnbcompat,)
|
|
MAKE_FLAGS+= WARNERR=no
|
|
|
|
.include "../../mk/curses.buildlink3.mk"
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|