Changes: === New Features / Enhancements in Version 0.8.4 * Case is preserved on rakefile names. (patch from James M. Lawrence/quix) * Improved Rakefile case insensitivity testing (patch from Luis Lavena). * Windows system dir search order is now: HOME, HOMEDRIVE + HOMEPATH, APPDATA, USERPROFILE (patch from Luis Lavena) * MingGW is now recognized as a windows platform. (patch from Luis Lavena) === Bug Fixes in Version 0.8.4 * Removed reference to manage_gem to fix the warning produced by the gem package task. * Fixed stray ARGV option problem that was interfering with Test::Unit::Runner. (patch from Pivotal Labs) === Infrastructure Improvements in Version 0.8.4 * Numerous fixes to the windows test suite (patch from Luis Lavena). * Improved Rakefile case insensitivity testing (patch from Luis Lavena). * Better support for windows paths in the test task (patch from Simon Chiang/bahuvrihi)
23 lines
497 B
Makefile
23 lines
497 B
Makefile
# $NetBSD: Makefile,v 1.12 2009/03/04 17:39:22 minskim Exp $
|
|
|
|
DISTNAME= rake-0.8.4
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= minskim@NetBSD.org
|
|
HOMEPAGE= http://rake.rubyforge.org/
|
|
COMMENT= Ruby Make
|
|
|
|
USE_TOOLS+= gzip
|
|
GEM_BUILD= gemspec
|
|
|
|
INSTALLATION_DIRS= ${PKGMANDIR}/man1
|
|
|
|
post-extract:
|
|
cd ${WRKSRC}/doc && gzip -d < rake.1.gz > rake.1
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/doc/rake.1 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
.include "../../misc/rubygems/rubygem.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|