blob: aec9f449bda5c404d9872c852bea1bdea4c4cb42 (
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
|
# New ports collection makefile for: tidy
# Version required: 0.1.98.9
# Date created: 27 Oct 1998
# Whom: Abel Chow <achow@transoft.net>
#
# $Id: Makefile,v 1.2 1998/11/10 01:33:44 steve Exp $
#
DISTNAME= tidy17dec98
PKGNAME= tidy-0.1.98.12
CATEGORIES= www
MASTER_SITES= http://www.w3.org/People/Raggett/
MAINTAINER= saken@rmta.ml.org
ALL_TARGET= tidy
WRKSRC= ${WRKDIR}/tidy17dec98
DOCFILES= Overview.html tidy.gif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/tidy ${PREFIX}/bin/tidy
.if !defined(NOPORTDOCS)
@echo "===> Installing documentation for ${PKGNAME}"
@${MKDIR} ${PREFIX}/share/doc/tidy
.for docfile in ${DOCFILES}
@${INSTALL_DATA} ${WRKSRC}/${docfile} ${PREFIX}/share/doc/tidy
.endfor
.endif
.include <bsd.port.mk>
|