aa67e11089
either because they themselves are not ready or because a dependency isn't. This is annotated by PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of x.y.z or PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-foo, py-bar respectively, please use the same style for other packages, and check during updates. Use versioned_dependencies.mk where applicable. Use REPLACE_PYTHON instead of handcoded alternatives, where applicable. Reorder Makefile sections into standard order, where applicable. Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default with the next commit. Whitespace cleanups and other nits corrected, where necessary.
29 lines
821 B
Makefile
29 lines
821 B
Makefile
# $NetBSD: Makefile,v 1.18 2014/01/25 10:30:01 wiz Exp $
|
|
|
|
DISTNAME= epydoc-2.1
|
|
PKGREVISION= 7
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=epydoc/}
|
|
|
|
MAINTAINER= darcy@NetBSD.org
|
|
HOMEPAGE= http://epydoc.sourceforge.net/
|
|
COMMENT= Python documentation framework
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-Tk-[0-9]*:../../x11/py-Tk
|
|
|
|
USE_LANGUAGES= #none
|
|
USE_TOOLS+= pax
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of 2.1
|
|
|
|
INSTALLATION_DIRS= ${PKGMANDIR}/man1 share/doc/epydoc
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/man/epydoc.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
${INSTALL_MAN} ${WRKSRC}/man/epydocgui.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
cd ${WRKSRC}/doc && \
|
|
pax -rw -pp -pm . ${DESTDIR}${PREFIX}/share/doc/epydoc
|
|
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|