mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
22ad022125
1.8 or later. Like this one, there are a bunch of ruby ports that don't support 1.8 yet, and I'll take care of them in near future, too. Sorry for the inconvenience.
41 lines
902 B
Makefile
41 lines
902 B
Makefile
# New ports collection makefile for: NodeDump for Ruby
|
|
# Date created: 10 November 2002
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nodedump
|
|
PORTVERSION= 0.1.7
|
|
CATEGORIES= devel ruby
|
|
MASTER_SITES= http://www.pragmaticprogrammer.com/ruby/downloads/files/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DISTNAME= nodeDump-${PORTVERSION}
|
|
EXTRACT_SUFX= .tgz
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
COMMENT= Displays the internal structure of a parsed Ruby program
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBY_EXTCONF= yes
|
|
|
|
INSTALL_TARGET= site-install
|
|
|
|
RUBY_REQUIRE= Ruby < 170
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(RUBY_PROVIDED)
|
|
IGNORE= only works with Ruby 1.6
|
|
RUBY_VER= 1.6 # This gets in effect when NO_IGNORE is defined
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${RUBY_MODDOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${RUBY_MODDOCDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|