5393242c73
Performing substitutions during post-patch breaks tools such as mkpatches, making it very difficult to regenerate correct patches after making changes, and often leading to substituted string replacements being committed.
34 lines
981 B
Makefile
34 lines
981 B
Makefile
# $NetBSD: Makefile,v 1.6 2018/07/04 13:40:28 jperkin Exp $
|
|
#
|
|
|
|
DISTNAME= libnipper-0.12.1
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nipper/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
#HOMEPAGE= http://nipper.sourceforge.net/
|
|
COMMENT= Performs security audits of network device configuration
|
|
|
|
USE_LANGUAGES= c++
|
|
USE_CMAKE= yes
|
|
|
|
CONF_FILES+= ${PREFIX}/share/examples/nipper.conf \
|
|
${PKG_SYSCONFDIR}/nipper.conf
|
|
|
|
SUBST_CLASSES+= config
|
|
SUBST_STAGE.config= pre-configure
|
|
SUBST_FILES.config= CMakeLists.txt libnipper.cpp nipper.cpp
|
|
SUBST_SED.config= -e "s|@@PREFIX@@|${PREFIX}|g"
|
|
SUBST_SED.config+= -e "s|@@PKGMANDIR@@|${PKGMANDIR}|g"
|
|
SUBST_SED.config+= -e "s|/etc|${PKG_SYSONFDIR}|g"
|
|
SUBST_MESSAGE.config= Fixing configuration files.
|
|
|
|
INSTALLATION_DIRS+= share/examples
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/nipper.conf \
|
|
${DESTDIR}${PREFIX}/share/examples/nipper.conf
|
|
|
|
.include "../../devel/cmake/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|