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
|
2007-07-25 08:06:12 +02:00
|
|
|
PORTVERSION= 1.1
|
2002-02-06 23:36:19 +01:00
|
|
|
CATEGORIES= devel ruby
|
2007-07-25 08:06:12 +02:00
|
|
|
MASTER_SITES= ${MASTER_SITE_BERLIOS}
|
|
|
|
MASTER_SITE_SUBDIR= ncurses-ruby
|
2002-02-06 23:36:19 +01:00
|
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
|
|
DISTNAME= ${PORTNAME}-ruby-${PORTVERSION}
|
|
|
|
DIST_SUBDIR= ruby
|
|
|
|
|
2007-07-25 08:06:12 +02:00
|
|
|
MAINTAINER= saurbier@math.uni-bielefeld.de
|
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
|
|
|
|
|
2007-07-25 08:06:12 +02:00
|
|
|
DOCS= COPYING 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>
|