aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/sgmls/Makefile
blob: 44b6f4d7c8b4e0f8534d3efd3d4673a74f40a68f (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
# New ports collection makefile for:    sgmls
# Date created:             Jun 2, 2000
# Whom:                 Eugene Furs <justas@mbank.lv>
#
# $FreeBSD$
#

PORTNAME=   sgmls
PORTVERSION=    1.1.91
CATEGORIES= textproc
MASTER_SITES=   ftp://ftp.jclark.com/pub/sgmls/
EXTRACT_SUFX=   .tar.Z

MAINTAINER= ports@FreeBSD.org
COMMENT=    SGML parser

WRKSRC=     ${WRKDIR}/${PORTNAME}
HAS_CONFIGURE=  yes
INSTALL_TARGET= install install.man

MAN1=       sgmls.1 sgmlsasp.1 rast.1

PROGS=      sgmls sgmlsasp rast
DOCS=       ChangeLog INSTALL LICENSE NEWS README TODO

post-build:
.for file in ${PROGS}
    @${STRIP_CMD} ${WRKSRC}/${file}
.endfor
    @cd ${WRKSRC} && ${MAKE} test

post-install:
.if !defined(NOPORTDOCS)
    @${ECHO_MSG} "===>   Installing documentation for ${PKGNAME}"
    @-${MKDIR} ${PREFIX}/share/doc/${PORTNAME}
.for file in ${DOCS}
    @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/${PORTNAME}
.endfor
.endif

.include <bsd.port.mk>