2001-08-30 09:26:32 +02:00
|
|
|
# New ports collection makefile for: ruby-termios
|
|
|
|
# Date created: 30 August 2001
|
|
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= termios
|
2002-10-08 13:16:04 +02:00
|
|
|
PORTVERSION= 0.9.1
|
|
|
|
PORTEPOCH= 1
|
2001-08-30 09:26:32 +02:00
|
|
|
CATEGORIES= comms ruby
|
2002-10-08 13:16:04 +02:00
|
|
|
MASTER_SITES= http://arika.org/archive/
|
2001-08-30 09:26:32 +02:00
|
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
2002-10-08 13:16:04 +02:00
|
|
|
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
|
2001-08-30 09:26:32 +02:00
|
|
|
DIST_SUBDIR= ruby
|
|
|
|
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
|
|
|
|
|
|
USE_RUBY= yes
|
|
|
|
USE_RUBY_EXTCONF= yes
|
2002-10-08 13:16:04 +02:00
|
|
|
USE_RUBY_RDTOOL= yes
|
2001-08-30 09:26:32 +02:00
|
|
|
|
|
|
|
INSTALL_TARGET= site-install
|
|
|
|
|
2002-10-08 13:16:04 +02:00
|
|
|
DOCS= ChangeLog README termios.html termios.rd
|
|
|
|
|
2001-08-30 09:26:32 +02:00
|
|
|
post-patch:
|
2002-10-08 13:16:04 +02:00
|
|
|
${RUBY} -i -pe 'gsub(/ttyS\d/, "cuaa0")' ${WRKSRC}/examples/*.rb
|
|
|
|
${RUBY} -i -pe 'gsub(/\.c_/, ".")' ${WRKSRC}/examples/*.rb
|
|
|
|
|
|
|
|
post-build:
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
cd ${WRKSRC}; ${RUBY_RD2} termios.rd > termios.html
|
|
|
|
.endif
|
2001-08-30 09:26:32 +02:00
|
|
|
|
|
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
2002-10-06 23:08:30 +02:00
|
|
|
${MKDIR} ${RUBY_MODEXAMPLESDIR}
|
2002-10-08 13:16:04 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.rb ${RUBY_MODEXAMPLESDIR}/
|
2002-10-06 23:08:30 +02:00
|
|
|
${MKDIR} ${RUBY_MODDOCDIR}
|
2002-10-08 13:16:04 +02:00
|
|
|
.for f in ${DOCS}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
|
|
|
|
.endfor
|
2001-08-30 09:26:32 +02:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|