Ditz is a simple, light-weight distributed issue tracker designed to work with distributed version control systems like darcs and git. Ditz maintains an issue database file on disk, written in a line-based and human-editable format. This file can be kept under version control alongside project code, and issue state change can then be handled like code changes: modified as part of a commit, merged with other state changes from other developers, conflict-resolved in the standard manner, etc. Ditz provides a simple, console-based interface for creating and updating the issue database file, and some rudimentary HTML generation capabilities for producing world-readable status pages. It offers no central public method of bug submission.
17 lines
474 B
Makefile
17 lines
474 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2010/03/02 12:00:55 phonohawk Exp $
|
|
#
|
|
|
|
DISTNAME= ditz-0.5
|
|
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= pho@cielonegro.org
|
|
HOMEPAGE= http://ditz.rubyforge.org/
|
|
COMMENT= Simple, light-weight distributed issue tracker
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
BUILD_DEPENDS+= hoe-[0-9]*:../../devel/hoe
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-trollop-[0-9]*:../../wip/ruby-trollop
|
|
|
|
.include "../../misc/rubygems/rubygem.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|