942aad2e6a
"INFO_FILES should be set to YES or yes." "Packages that install info files should set INFO_FILES." Makefile and PLIST warning, respectively.
33 lines
855 B
Makefile
33 lines
855 B
Makefile
# $NetBSD: Makefile,v 1.25 2013/04/06 20:27:19 rodent Exp $
|
|
|
|
DISTNAME= rx-1.5
|
|
PKGREVISION= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= #
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.gnu.org/software/rx/rx.html
|
|
COMMENT= Fast replacement for the GNU regex library
|
|
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
INFO_FILES= yes
|
|
|
|
# When the API changes and breaks binary-compatibility with the previous
|
|
# version, increment the MAJOR by 1 and reset the MINOR to 0. Otherwise,
|
|
# bump the MINOR when a new version comes out.
|
|
#
|
|
RX_MAJOR= 0
|
|
RX_MINOR= 0
|
|
MAKE_ENV+= RX_MAJOR=${RX_MAJOR:Q} RX_MINOR=${RX_MINOR:Q}
|
|
|
|
INSTALLATION_DIRS= ${PKGINFODIR}
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/doc; for f in rx.info rx.info-[0-9]*; do \
|
|
${TEST} ! -f "$$f" || \
|
|
${INSTALL_DATA} "$$f" ${DESTDIR}${PREFIX}/${PKGINFODIR}; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|