2002-02-06 23:36:19 +01:00
|
|
|
# New ports collection makefile for: ncurses-ruby
|
|
|
|
# Date created: 7 February 2002
|
|
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= ncurses
|
2004-08-12 11:12:12 +02:00
|
|
|
PORTVERSION= 0.9.1
|
2002-02-06 23:36:19 +01:00
|
|
|
CATEGORIES= devel ruby
|
|
|
|
MASTER_SITES= http://download.berlios.de/ncurses-ruby/
|
|
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
|
|
DISTNAME= ${PORTNAME}-ruby-${PORTVERSION}
|
|
|
|
DIST_SUBDIR= ruby
|
|
|
|
|
2005-11-11 02:18:01 +01:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-02-18 06:04:59 +01:00
|
|
|
COMMENT= A Ruby interface to ncurses
|
2002-02-06 23:36:19 +01:00
|
|
|
|
|
|
|
USE_BZIP2= yes
|
|
|
|
|
|
|
|
USE_RUBY= yes
|
|
|
|
USE_RUBY_EXTCONF= yes
|
|
|
|
|
|
|
|
INSTALL_TARGET= site-install
|
|
|
|
|
2004-05-22 20:05:29 +02:00
|
|
|
DOCS= Changes README THANKS TODO
|
2002-02-06 23:36:19 +01:00
|
|
|
|
|
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
2002-10-06 23:08:30 +02:00
|
|
|
${MKDIR} ${RUBY_MODDOCDIR}
|
2002-02-06 23:36:19 +01:00
|
|
|
.for f in ${DOCS}
|
2002-10-06 23:08:30 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
|
2002-02-06 23:36:19 +01:00
|
|
|
.endfor
|
2002-10-06 23:08:30 +02:00
|
|
|
${MKDIR} ${RUBY_MODEXAMPLESDIR}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/examples/* ${RUBY_MODEXAMPLESDIR}/
|
2002-02-06 23:36:19 +01:00
|
|
|
.endif
|
|
|
|
|
2004-08-12 11:12:12 +02:00
|
|
|
.include <bsd.port.mk>
|