Fri May 22 14:23:41 2015 UTC ()
Remove the patch .orig file(s) to avoid PLIST problems. (How do other
python packages deal with this?)


(hauke)
diff -r1.18 -r1.19 pkgsrc/www/py-blosxom/Makefile

cvs diff -r1.18 -r1.19 pkgsrc/www/py-blosxom/Makefile (expand / switch to unified diff)

--- pkgsrc/www/py-blosxom/Makefile 2015/05/22 14:01:16 1.18
+++ pkgsrc/www/py-blosxom/Makefile 2015/05/22 14:23:41 1.19
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.18 2015/05/22 14:01:16 hauke Exp $ 1# $NetBSD: Makefile,v 1.19 2015/05/22 14:23:41 hauke Exp $
2 2
3PYBLOXSOMVERS= 1.5.3 3PYBLOXSOMVERS= 1.5.3
4DISTNAME= pyblosxom-${PYBLOXSOMVERS} 4DISTNAME= pyblosxom-${PYBLOXSOMVERS}
5PKGNAME= ${PYPKGPREFIX}-blosxom-${PYBLOXSOMVERS} 5PKGNAME= ${PYPKGPREFIX}-blosxom-${PYBLOXSOMVERS}
6PKGREVISION= 2 6PKGREVISION= 2
7CATEGORIES= www 7CATEGORIES= www
8MASTER_SITES= http://pyblosxom.github.com/download/ 8MASTER_SITES= http://pyblosxom.github.com/download/
9 9
10MAINTAINER= hauke@NetBSD.org 10MAINTAINER= hauke@NetBSD.org
11HOMEPAGE= http://pyblosxom.github.com/ 11HOMEPAGE= http://pyblosxom.github.com/
12COMMENT= PyBlosxom is a lightweight file-based weblog system 12COMMENT= PyBlosxom is a lightweight file-based weblog system
13 13
14LICENSE= mit 14LICENSE= mit
@@ -19,23 +19,27 @@ USE_LANGUAGES= #none @@ -19,23 +19,27 @@ USE_LANGUAGES= #none
19 19
20DOC_SUBDIR= share/doc/pyblosxom 20DOC_SUBDIR= share/doc/pyblosxom
21DOCDIR= ${PREFIX}/${DOC_SUBDIR} 21DOCDIR= ${PREFIX}/${DOC_SUBDIR}
22DOCFILES= AUTHORS INSTALL LICENSE README.rst UPGRADE WHATSNEW 22DOCFILES= AUTHORS INSTALL LICENSE README.rst UPGRADE WHATSNEW
23 23
24BUILD_DEPENDS+= ${PYPKGPREFIX}-docutils>=0.12:../../textproc/py-docutils 24BUILD_DEPENDS+= ${PYPKGPREFIX}-docutils>=0.12:../../textproc/py-docutils
25 25
26INSTALLATION_DIRS= ${DOC_SUBDIR} 26INSTALLATION_DIRS= ${DOC_SUBDIR}
27 27
28REPLACE_PYTHON= Pyblosxom/data/pyblosxom.cgi 28REPLACE_PYTHON= Pyblosxom/data/pyblosxom.cgi
29 29
30PYTHON_VERSIONS_INCOMPATIBLE= 33 34 30PYTHON_VERSIONS_INCOMPATIBLE= 33 34
31 31
 32pre-configure:
 33 cd ${WRKSRC} && ${FIND} Pyblosxom -type f -name '*.orig' \
 34 -exec ${RM} -f \{\} \;
 35
32# There is a set of manual files in docs/source that could be 36# There is a set of manual files in docs/source that could be
33# converted to HTML or PDF, and installed 37# converted to HTML or PDF, and installed
34post-install: 38post-install:
35.for f in ${DOCFILES} 39.for f in ${DOCFILES}
36 ${INSTALL_DATA} ${WRKSRC}/${f} ${DESTDIR}${DOCDIR}/${f} 40 ${INSTALL_DATA} ${WRKSRC}/${f} ${DESTDIR}${DOCDIR}/${f}
37.endfor 41.endfor
38 42
39.include "../../lang/python/application.mk" 43.include "../../lang/python/application.mk"
40.include "../../lang/python/egg.mk" 44.include "../../lang/python/egg.mk"
41.include "../../mk/bsd.pkg.mk" 45.include "../../mk/bsd.pkg.mk"