aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/opensp/Makefile
blob: 350387027e2e68e2384c21b854249687ad7bb39b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# New ports collection makefile for:    OpenSP
# Date created:     Jan 6, 2003
# Whom:         kuriyama
#
# $FreeBSD$
#

PORTNAME=   OpenSP
PORTVERSION=    1.5
PORTREVISION=   3
CATEGORIES= textproc
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= openjade

MAINTAINER= kuriyama@FreeBSD.org
COMMENT=    This package is a collection of SGML/XML tools called OpenSP

LIB_DEPENDS=    intl.5:${PORTSDIR}/devel/gettext \
        iconv.3:${PORTSDIR}/converters/libiconv

USE_GMAKE=  YES
USE_REINPLACE=  YES
USE_LIBTOOL=    YES
USE_PERL5=  yes
USE_AUTOCONF_VER=253
CONFIGURE_ARGS= --enable-default-catalog=${PREFIX}/share/sgml/catalog \
        --datadir=${PREFIX}/share/sgml/openjade
CONFIGURE_ENV=  CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
        LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib"

INSTALLS_SHLIB= yes

MAN1=       onsgmls.1 osgmlnorm.1 ospam.1 ospent.1 osx.1
DOC_FILES=  archform.htm autoconf.htm build.htm catalog.htm charset.htm \
        features.htm generic.htm ideas.htm index.htm new.htm \
        nsgmls.htm sgmldecl.htm sgmlnorm.htm sgmlsout.htm spam.htm \
        spcat.htm spent.htm sx.htm sysdecl.htm sysid.htm xml.htm \
        xmlwarn.htm
DOC_FILES2= NEWS AUTHORS README \
        releasenotes.html releasenotes.pdf releasenotes.ps

# Perhaps this better should be somewhere under ${PREFIX}/share/doc ?
DOCSDIR2=   ${PREFIX}/share/sgml/openjade/doc/OpenSP

.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*}

pre-install:
    @${REINPLACE_CMD} -e \
        's|install-man install-pkgdocDATA|install-man|g' \
        ${WRKSRC}/Makefile

post-install:

.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for doc in ${DOC_FILES}
    @${INSTALL_DATA} ${WRKSRC}/doc/${doc} ${DOCSDIR}
.endfor

    @${MKDIR} ${DOCSDIR2}
.for doc in ${DOC_FILES2}
    @${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR2}
.endfor

.endif

.include <bsd.port.post.mk>