748b215206
pkgsrc changes: - Add license definition - Adjust dependencies Upstream changes: version: 0.68 date: 2009-03-21 changes: - (bug #20594) require CSS.pm version 1.07 to fix some 'make test' errors (eg, DokuWiki) - improve some documentation version: 0.67 date: 2009-03-16 changes: - add 'p_strict' attribute for enabling/disabling HTML::TreeBuilder's p_strict option (enabled by default) -- this was done for the Markdown dialect, specifically for bug #43997 - mention XML::Writer requirement in README if cgi app is installed - webapp-install script creates webapp directory if necessary - miscellaneous minor code cleanup version: 0.66 date: 2009-03-07 changes: - fix test suite: change html2wiki/test.html to html2wiki-old/test.html - rudimentary webapp-install script version: 0.65 date: 2009-03-07 changes: - web app fixes: comment-out the donation link in templates/main.html, improved docs in cgi/index.cgi version: 0.64 date: 2009-03-06 changes: - add web application, HTML::WikiConverter::WebApp - now requires CGI::Application (for the aforementioned web app) - (bug #40845, debian #506584) allow relative wiki_uri (eg, "/wiki/"); an absolute wiki_uri is constructed from a relative wiki_uri and a base_uri - add perl license to Makefile.PL
28 lines
915 B
Makefile
28 lines
915 B
Makefile
# $NetBSD: Makefile,v 1.6 2009/09/19 22:45:38 sno Exp $
|
|
#
|
|
|
|
DISTNAME= HTML-WikiConverter-0.68
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= www perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=HTML/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/HTML-WikiConverter/
|
|
COMMENT= Convert HTML to wiki markup
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= p5-Class-Data-Inheritable>=0.02:../../devel/p5-Class-Data-Inheritable
|
|
DEPENDS+= p5-CSS>=1.07:../../www/p5-CSS
|
|
DEPENDS+= p5-HTML-Parser>=1.27:../../www/p5-HTML-Parser
|
|
DEPENDS+= p5-HTML-Tagset>=3.04:../../www/p5-HTML-Tagset
|
|
DEPENDS+= p5-HTML-Tree>=3.18:../../www/p5-HTML-Tree
|
|
DEPENDS+= p5-Params-Validate>=0.77:../../devel/p5-Params-Validate
|
|
DEPENDS+= p5-URI>=1.35:../../www/p5-URI
|
|
|
|
USE_LANGUAGES= # empty
|
|
PERL5_PACKLIST= auto/HTML/WikiConverter/.packlist
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|