fced66043b
Pointed out by: naddy
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# New ports collection makefile for: OpenJade
|
|
# Date created: May 19, 2000
|
|
# Whom: kuriyama
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= openjade
|
|
PORTVERSION= 1.3.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
|
|
LIB_DEPENDS= osp.3:${PORTSDIR}/textproc/opensp
|
|
RUN_DEPENDS= ${MKCATALOG}:${PORTSDIR}/textproc/mkcatalog
|
|
|
|
USE_GMAKE= YES
|
|
USE_LIBTOOL= YES
|
|
USE_PERL5= yes
|
|
CONFIGURE_ARGS= --enable-default-catalog=${PREFIX}/share/sgml/catalog \
|
|
--datadir=${PREFIX}/share/sgml/openjade
|
|
INSTALLS_SHLIB= yes
|
|
PLIST_SUB= MKCATALOG=${MKCATALOG}
|
|
|
|
MKCATALOG= ${PREFIX}/sbin/mkcatalog
|
|
|
|
post-install:
|
|
@${INSTALL_DATA} ${WRKSRC}/dsssl/* ${PREFIX}/share/sgml/openjade
|
|
@${MKCATALOG} -q install openjade
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# This port cannot be CFLAGS safe, using optimizations such as
|
|
# 'march=-mpentium -Os' produces core dumps with certain input files
|
|
# Therefore, we'd better remove all machine optimizations and any -O
|
|
# other than -O{0,1,}. Idea taken from palm/prc-tools-gcc.
|
|
CPPFLAGS:= -O ${CFLAGS:N-O*:N-m*}
|
|
|
|
.include <bsd.port.post.mk>
|