741aecb607
and replace with appropriate references to PKGINFODIR instead. * Properly account for split info files during installation. * Move info file listings directly into the package PLISTs. This fixes info-file-related PLIST problems.
25 lines
630 B
Makefile
25 lines
630 B
Makefile
# $NetBSD: Makefile,v 1.20 2006/03/20 18:15:37 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= latex2rtf-1.9.16a
|
|
CATEGORIES= print
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=latex2rtf/} \
|
|
${MASTER_SITE_TEX_CTAN:=support/latex2rtf/}
|
|
|
|
MAINTAINER= brook@nmsu.edu
|
|
HOMEPAGE= http://latex2rtf.sourceforge.net/
|
|
COMMENT= LaTeX to RTF converter
|
|
|
|
USE_TOOLS+= perl
|
|
MAKE_FLAGS+= XCFLAGS=${CFLAGS:M*:Q}
|
|
INFO_FILES= # PLIST
|
|
|
|
INSTALLATION_DIRS= share/doc/latex2rtf ${PKGINFODIR}
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/doc; for f in *.info *.info-[0-9]*; do \
|
|
${TEST} ! -f "$$f" || \
|
|
${INSTALL_MAN} "$$f" ${PREFIX}/${PKGINFODIR}; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|