pkgsrc-wip/trac-plugins-MasterTickets/Makefile
Greg Troxel 330697e6ee Add explicit casts to avoid WHERE clauses failing on pgsql 8.3 which
insists on int/text being correct in =.  Basically, "WHERE dest = 39"
is illegal because dest is of type text, and you need "WHERE dest =
text(39)" or "WHERE dest='39'".
2009-08-04 19:55:26 +00:00

38 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.4 2009/08/04 19:55:26 lexort Exp $
VERSION= 2.1.3.4179
DISTNAME= TracMasterTickets-${VERSION}
PKGNAME= trac-plugins-MasterTickets-${VERSION}
# Empty PKGREVISION because svn-package by default sets one.
PKGREVISION= 2
EGG_NAME= ${DISTNAME}
CATEGORIES= www
MASTER_SITES= # not defined
MAINTAINER= gdt@NetBSD.org
HOMEPAGE= http://trac-hacks.org/wiki/MasterTicketsPlugin
COMMENT= Ticket dependency plugin for Trac
PKG_DESTDIR_SUPPORT= user-destdir
DEPENDS+= {ja-,}trac>=0.11:../../www/trac
SVN_REPOSITORIES= mastertickets
SVN_ROOT.mastertickets= http://trac-hacks.org/svn/masterticketsplugin/0.11
SVN_TAG.mastertickets= 4179
NO_CHECKSUM= yes
WRKSRC= ${WRKDIR}/mastertickets
PRIVILEGED_STAGES+= clean
post-extract:
find ${WRKSRC} -type d -name .svn -print | xargs rm -r
# MasterTickets uses graphviz directly (rather than via the GraphViz plugin).
# \todo Make this optional.
.include "../../graphics/graphviz/buildlink3.mk"
.include "../../lang/python/egg.mk"
.include "../../wip/mk/svn-package.mk"
.include "../../mk/bsd.pkg.mk"