pkgsrc/devel/ruby-debug-extra/Makefile
taca f856e3666a Update ruby-debug-extra package to 0.10.4.
2010-09-12 01:30  Rocky Bernstein

	* ChangeLog, doc/home-page.html, doc/rdebug-emacs.texi,
	  lib/ChangeLog, test/pm.rb: pm.rb: spelling mistake

2010-08-13 05:32  Rocky Bernstein

	* ChangeLog, cli/ruby-debug/commands/frame.rb,
	  cli/ruby-debug/helper.rb, cli/ruby-debug/processor.rb,
	  ext/ruby_debug.c, lib/ChangeLog: Add Debugger.inside_emacs?
	  Environment variable EMACS for inside Emacs is deprecated in
	  favor of INSIDE_EMACS. Rubyforge #28465.

2010-08-03 02:53  Rocky Bernstein

	* emacs/rdebug-breaks.el: Off by one on showing breakpoint
	  positions

2010-08-02 19:07  Rocky Bernstein

	* doc/rdebug-emacs.texi: More small document changes

2010-08-02 18:03  Rocky Bernstein

	* doc/rdebug-emacs.texi: A couple more small emacs doc changes

2010-08-02 17:45  Rocky Bernstein

	* doc/rdebug-emacs.texi, emacs/INSTALL, emacs/README: More small
	  changes to docs.

2010-08-02 12:51  Rocky Bernstein

	* CHANGES, ChangeLog, INSTALL.SVN, configure.ac, emacs/AUTHORS,
	  emacs/INSTALL, emacs/Makefile.am, emacs/README, emacs/rdebug.el,
	  lib/ChangeLog: Go over installation instructions for Emacs.
	  Add a basic files, README, INSTALL and AUTHORS.
	  Change version from 0.10.4vc to 0.10.4rc1

2009-11-28 22:56  Rocky Bernstein

	* ChangeLog, emacs/rdebug-annotate.el, emacs/rdebug-breaks.el,
	  emacs/rdebug-core.el, emacs/rdebug-info.el,
	  emacs/rdebug-source.el, emacs/rdebug-track.el, lib/ChangeLog: Fix
	  problem caused by gdb-ui renamed to gdb-mi. Rubyforge tracker
	  #27152
	  Remove all Emacs byte compile warning messages.

	  Note however all of this code will eventually be phased out in
	  favor
	  of emacs-dbgr (on github).

2009-03-31 09:49  Rocky Bernstein

	* emacs/rdebug-locring.el: Comment change

2009-03-11 18:57  Rocky Bernstein

	* cli/ruby-debug/commands/catchpoint.rb, emacs/rdebug-core.el,
	  emacs/rdebug-track.el, emacs/test/test-regexp.el: Update "catch"
	  command help string. Reindent some emacs files to make tests
	  happy.

2009-02-10 04:32  Rocky Bernstein

	* emacs/rdebug-core.el: Remove the annoying disappearing command
	  window when we there's an initial error in running the Ruby
	  program
2011-06-19 15:27:19 +00:00

41 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.2 2011/06/19 15:27:19 taca Exp $
DISTNAME= ruby-debug-extra-0.10.4
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/ruby-//}
CATEGORIES= devel
MASTER_SITES= http://rubyforge.org/frs/download.php/73086/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://rubyforge.org/projects/ruby-debug/
COMMENT= Emacs support and the Reference Manual for ruby-debug
LICENSE= 2-clause-bsd
PKG_DESTDIR_SUPPORT= user-destdir
RUBY_VERSION_SUPPORTED= 18
GNU_CONFIGURE= YES
INFO_FILES= YES
DOCS= ruby-debug.info ruby-debug.pdf
INFO= rdebug-emacs.info ruby-debug.info
MAKE_FLAGS+= DESTDIR=${DESTDIR:Q}
MAKE_FLAGS+= prefix=${PREFIX:Q}
MAKE_FLAGS+= EMACS=${EMACS_BIN:Q}
INSTALLATION_DIRS+= ${PKGMANDIR}/man1 ${PKGINFODIR} ${RUBY_DOC}/ruby-debug
post-install:
${INSTALL_MAN} ${WRKSRC}/doc/rdebug.1 \
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
.for f in ${INFO}
${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DESTDIR}${PREFIX}/${PKGINFODIR}
.endfor
.for f in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/doc/${f} \
${DESTDIR}${PREFIX}/${RUBY_DOC}/ruby-debug
.endfor
.include "../../editors/emacs/modules.mk"
.include "../../lang/ruby/modules.mk"
.include "../../mk/bsd.pkg.mk"