New features with AN-2020-02-11: - star: fixed typos in star.1 and star.4 Thanks to Eric Ackermann for reporting as a side effect of a code review for SchilliX-ON - star: fixed typos in header.c Thanks to Eric Ackermann for reporting - star: translated some German comment to English in diff.c, extract.c, list.c, remove.c, restore.c, fifo.c Thanks to Eric Ackermann for reporting as a side effect of a code review for SchilliX-ON - star: create.c: #ifdef __what_people_would_expect__ changed to: #ifdef __wrong_but_what_people_would_expect__ for better readability. - libschily: new man pages starthandlecond.3 and unhandlecond.3 - libschily: handlecond.3 and raisecond.3 now correctly mention handlecond() & raisecond() instead of handle()/raise(). The old names from 1980 had to be renamed because os an unfriendly actt from the C standard commitee. Thanks to Eric Ackermann for reporting as a side effect of a code review for SchilliX-ON - libschily: various small fixes in various man pages from libschily. Thanks to Eric Ackermann for reporting as a side effect of a code review for SchilliX-ON
87 lines
2.7 KiB
Makefile
87 lines
2.7 KiB
Makefile
# $NetBSD: Makefile,v 1.45 2020/03/04 11:35:10 micha Exp $
|
|
|
|
DISTNAME= schily-2020-02-11
|
|
PKGNAME= star-1.6.1
|
|
PKGREVISION= 5
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=schilytools/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://s-tar.sf.net/
|
|
COMMENT= Unique standard tape archiver
|
|
LICENSE= cddl-1.0
|
|
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
USE_TOOLS+= tbl
|
|
TOOL_DEPENDS+= smake-[0-9]*:../../devel/smake
|
|
SMAKE= MAKEFLAGS= smake
|
|
MAKE_FLAGS+= DESTDIR=${DESTDIR} INS_BASE=${PREFIX} DEFMANBASE=. MANDIR=${PKGMANDIR}
|
|
# Honor CPPFLAGS, CFLAGS and LDFLAGS
|
|
MAKE_FLAGS+= CPPOPTX=${CPPFLAGS:Q} COPTX=${CFLAGS:Q} LDOPTX=${LDFLAGS:Q}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# The default location is /etc/default/star
|
|
# We patch the documentation appropriately. Additionally, we also install
|
|
# INSTALL.pkgsrc stating the reasons we do this, as required by the license.
|
|
STAR_CONF?= ${PKG_SYSCONFDIR}/star
|
|
|
|
CONF_FILES= ${PREFIX}/share/examples/star/star ${STAR_CONF}
|
|
AUTO_MKDIRS= yes
|
|
|
|
# Configure config file location
|
|
SUBST_CLASSES+= fix
|
|
SUBST_STAGE.fix= pre-configure
|
|
SUBST_FILES.fix+= star/star.1
|
|
SUBST_FILES.fix+= star/star.dfl
|
|
SUBST_FILES.fix+= star/defaults.c
|
|
SUBST_SED.fix= -e "s,/etc/default/star,${STAR_CONF},g"
|
|
SUBST_MESSAGE.fix= Replace defaults file paths.
|
|
|
|
# Configure INSTALL.pkgsrc (formerly displayed as MESSAGE)
|
|
SUBST_CLASSES+= install
|
|
SUBST_STAGE.install= post-configure
|
|
SUBST_MESSAGE.install= Preparing INSTALL.pkgsrc file ...
|
|
SUBST_FILES.install= ${WRKDIR}/INSTALL.pkgsrc
|
|
SUBST_SED.install= -e 's,PKGNAME_NOREV,${PKGNAME_NOREV},'
|
|
SUBST_SED.install+= -e 's,STAR_CONF,${STAR_CONF:Q},'
|
|
|
|
# Shared platform specific code for schilytools (provided by smake package)
|
|
.include "../../devel/smake/Makefile.common"
|
|
|
|
do-configure:
|
|
${CP} ${FILESDIR}/INSTALL.pkgsrc ${WRKDIR}
|
|
cd ${WRKSRC}/inc && ${SMAKE} ${MAKE_FLAGS}
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && for library in \
|
|
libschily libdeflt libfind librmt; \
|
|
do \
|
|
cd ${WRKSRC}/$${library} && ${SMAKE} ${MAKE_FLAGS}; \
|
|
done
|
|
cd ${WRKSRC}/star && ${SMAKE} ${MAKE_FLAGS}
|
|
|
|
# Process tables in manpage
|
|
post-build:
|
|
cd ${WRKSRC} && if ${TEST} -f star/pkgsrc_tbl.done; then :; \
|
|
else \
|
|
${TBL} star/spax.1 >star/spax.1.tmp && \
|
|
${MV} -f star/spax.1.tmp star/spax.1 && \
|
|
${TBL} star/star.4 >star/star.4.tmp && \
|
|
${MV} -f star/star.4.tmp star/star.4 && \
|
|
${TOUCH} star/pkgsrc_tbl.done; \
|
|
fi
|
|
|
|
do-test:
|
|
cd ${WRKSRC}/star && cd tests ; ${SMAKE} ${MAKE_FLAGS} tests
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/star && ${SMAKE} ${MAKE_FLAGS} install
|
|
${INSTALL_DATA} ${WRKSRC}/star/star.dfl \
|
|
${DESTDIR}${PREFIX}/share/examples/star/star
|
|
${INSTALL_DATA} ${WRKDIR}/INSTALL.pkgsrc \
|
|
${DESTDIR}${PREFIX}/share/doc/star/INSTALL.pkgsrc
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|