summaryrefslogtreecommitdiff
path: root/www/tidy/Makefile
diff options
context:
space:
mode:
authorwiz <wiz>2005-10-04 18:00:49 +0000
committerwiz <wiz>2005-10-04 18:00:49 +0000
commitda928db9b0731dfd2a6fdd1a351c5b9789c6444a (patch)
tree533e78449509daf12bf28b3a7b10b77cbe6b8b90 /www/tidy/Makefile
parentb5f5e80b7e5cfc7fe2fc050639c30e2fe2e6eb69 (diff)
downloadpkgsrc-da928db9b0731dfd2a6fdd1a351c5b9789c6444a.tar.gz
Update to 20050921, provided by Jeroen Ruigrok/asmodai in PR 31220.
fix crashes with nested framesets fix dmalloc conflicts fix crashes with invalid x/html tags fix memory corruptions fix attributes with null values replace tabs with spaces a lot generic stability fixes fix accessibility crashes accessibility missing output added use id= instead of a name= fix crashes with mixed php-like code in html fix memory leaks xml: was stripped from xml:lang make sure id and name are identical when used do not add xml:lang for XHTML 1.1 check validity of id/name values a lot of new options for finegrained control support align="char" fix 64 bit portability issues fix support for nested <sub> and <sup> make sure id's are unique be more resistant against malformed comments make sure attribute values are lowercase for xhtml specified values ensure xml declarations are present allow empty action="" to form area does not need a mandatory href
Diffstat (limited to 'www/tidy/Makefile')
-rw-r--r--www/tidy/Makefile26
1 files changed, 15 insertions, 11 deletions
diff --git a/www/tidy/Makefile b/www/tidy/Makefile
index b547bee843a..e3154f3ce20 100644
--- a/www/tidy/Makefile
+++ b/www/tidy/Makefile
@@ -1,20 +1,21 @@
-# $NetBSD: Makefile,v 1.19 2005/05/22 20:08:46 jlam Exp $
+# $NetBSD: Makefile,v 1.20 2005/10/04 18:00:49 wiz Exp $
#
-DISTNAME= tidy_src_040811
-PKGNAME= tidy-20040811
-PKGREVISION= 1
+DISTNAME= tidy_src_050921
+PKGNAME= tidy-20050921
CATEGORIES= www
MASTER_SITES= http://tidy.sourceforge.net/src/ \
- http://tidy.sourceforge.net/docs/ \
http://tidy.sourceforge.net/src/old/
+SITES_tidy_docs_050705.tgz= http://tidy.sourceforge.net/docs/
EXTRACT_SUFX= .tgz
-DISTFILES= ${DISTNAME}${EXTRACT_SUFX} tidy_docs_040810${EXTRACT_SUFX}
+DISTFILES= ${DISTNAME}${EXTRACT_SUFX} tidy_docs_050705${EXTRACT_SUFX}
-MAINTAINER= tech-pkg@NetBSD.org
+MAINTAINER= asmodai@in-nomine.org
HOMEPAGE= http://tidy.sourceforge.net/
COMMENT= Fixes and tidies up HTML files
+BUILD_DEPENDS= libxslt>=1.1.0:../../textproc/libxslt
+
WRKSRC= ${WRKDIR}/tidy
NO_CONFIGURE= yes
USE_TOOLS+= gmake
@@ -23,18 +24,21 @@ BUILD_DIRS= ${WRKSRC}/build/gmake
OPSYSVARS+= MAKEFLAGS
MAKEFLAGS.Darwin+= RANLIB=ranlib
-HTML_DOCFILES= Overview.html doxygen.cfg grid.gif quickref.html tidy.css \
+HTML_DOCFILES= Overview.html doxygen.cfg grid.gif quickref.html tidy.css \
faq.html license.html pending.html release-notes.html tidy.gif
HTML_DOCDIR= ${PREFIX}/share/doc/html/tidy
+post-build:
+ cd ${BUILD_DIRS} && ${GMAKE} doc
+
post-install:
${INSTALL_DATA_DIR} ${HTML_DOCDIR}
- for doc in ${HTML_DOCFILES}; do \
+ for doc in ${HTML_DOCFILES}; do \
${INSTALL_DATA} ${WRKSRC}/htmldoc/$$doc ${HTML_DOCDIR} ; \
done
${INSTALL_DATA_DIR} ${HTML_DOCDIR}/api
- for apifile in ${WRKSRC}/htmldoc/api/* ; do \
- ${INSTALL_DATA} $$apifile ${HTML_DOCDIR}/api ; \
+ for apifile in ${WRKSRC}/htmldoc/api/* ; do \
+ ${INSTALL_DATA} $$apifile ${HTML_DOCDIR}/api ; \
done
.include "../../mk/bsd.pkg.mk"