1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-14 23:46:10 +00:00
freebsd-ports/textproc/jade/Makefile
Satoshi Asami ffb21b5654 Rename INSTALLS_SHLIBS to INSTALLS_SHLIB. (There was a typo in the
previous commit message to bsd.port.mk, which said INSTALL_SHLIBS.  Boo.)

Line up the rhs of variable assignments nicely.  Remove a couple of extra
whitespaces while I'm here.

Suggested by:	 sobomax
2000-06-16 21:52:40 +00:00

53 lines
1.5 KiB
Makefile

# New ports collection makefile for: jade
# Date created: June 19, 1997
# Whom: jfieber
#
# $FreeBSD$
#
PORTNAME= jade
PORTVERSION= 1.2.1
CATEGORIES= textproc
MASTER_SITES= ftp://ftp.jclark.com/pub/jade/
PATCH_SITES= http://ftp.debian.org/debian/dists/unstable/main/source/text/
PATCHFILES= jade_1.2.1-13.diff.gz
PATCH_DIST_STRIP= -p1
MAINTAINER= jfieber@FreeBSD.org
.if ${MACHINE_ARCH} == "alpha"
BROKEN= nsgmls coredumps in static constructors
.endif
USE_GMAKE= yes
USE_LIBTOOL= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= CXXFLAGS="${CFLAGS}"
CONFIGURE_ARGS= --enable-default-catalog=${PREFIX}/share/sgml/catalog
post-extract:
@${CHMOD} u+w ${WRKSRC}/configure
pre-install:
@find ${WRKSRC} \( -name \*.orig -o -name \*~ \) -exec ${RM} -f \{} \;
post-install:
.for i in jade nsgmls sgmlnorm spam spent sx
strip ${PREFIX}/bin/$i
.endfor
${MKDIR} ${PREFIX}/include/sp
${INSTALL_DATA} ${WRKSRC}/include/* ${PREFIX}/include/sp
${MKDIR} ${PREFIX}/share/doc/jade
${INSTALL_DATA} ${WRKSRC}/doc/*.htm ${PREFIX}/share/doc/jade
${MKDIR} ${PREFIX}/share/sgml/jade
${INSTALL_DATA} ${WRKSRC}/dsssl/* ${PREFIX}/share/sgml/jade
@if [ ! -f ${PREFIX}/share/sgml/catalog ]; then \
${ECHO} "CATALOG \"${PREFIX}/share/sgml/jade/catalog\"" > ${PREFIX}/share/sgml/catalog; \
else \
${SETENV} LANG=C ${PERL} -ni -e 'print if !m|${PREFIX}/share/sgml/jade/catalog|;print "CATALOG \"${PREFIX}/share/sgml/jade/catalog\"\n" if eof;' ${PREFIX}/share/sgml/catalog; \
fi
.include <bsd.port.mk>