51333dbf55
Tracking Systems allow individual or groups of developers to keep track of outstanding bugs in their product effectively. Most commercial defect-tracking software vendors charge enormous licensing fees. Despite being "free", Bugzilla has many features its expensive counterparts lack. Consequently, Bugzilla has quickly become a favorite of hundreds of organizations across the globe. What Does Bugzilla Do? - Track bugs and code changes - Communicate with teammates - Submit and review patches - Manage quality assurance (QA) Bugzilla can help you get a handle on the software development process. Successful projects often are the result of successful organization and communication. Bugzilla is a powerful tool that will help your team get organized and communicate effectively.
38 lines
978 B
Makefile
38 lines
978 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2005/01/02 13:39:55 adrianp Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.bugzilla
|
|
PKG_SUPPORTED_OPTIONS= ldap charts patchviewer xmlimportbugs
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Use OpenLDAP for authentication
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mldap)
|
|
DEPENDS+= p5-perl-ldap-[0-9]*:../../databases/p5-perl-ldap
|
|
.endif
|
|
|
|
###
|
|
### Generation of charts
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mcharts)
|
|
DEPENDS+= gd>=1.20:../../graphics/gd
|
|
DEPENDS+= p5-Chart>=1.0:../../graphics/p5-Chart
|
|
DEPENDS+= p5-GDTextUtil-[0-9]*:../../graphics/p5-GDTextUtil
|
|
DEPENDS+= p5-GDGraph-[0-9]*:../../graphics/p5-GDGraph
|
|
.endif
|
|
|
|
###
|
|
### Patchviewer support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mpatchviewer)
|
|
DEPENDS+= p5-PatchReader>=0.9.4:../../devel/p5-PatchReader
|
|
DEPENDS+= patchutils-[0-9]*:../../devel/patchutils
|
|
.endif
|
|
|
|
###
|
|
### Add support for bulk import/export of bugs in XML format
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mxmlimportbugs)
|
|
DEPENDS+= p5-XML-Parser-[0-9]*:../../textproc/p5-XML-Parser
|
|
.endif
|