freebsd-ports/comms/ruby-serialport/Makefile
Stanislav Sedov 35cb1975e5 - Fix ruby-serialport on amd64. Before this change untyped arguments were
promoted to incorrect types leading to segfaults.

Reported by:	Boris Lytochkin <lytboris@yandex-team.ru>
2009-08-17 08:29:07 +00:00

44 lines
949 B
Makefile

# New ports collection makefile for: Ruby/SerialPort
# Date created: 21 February 2003
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= serialport
PORTVERSION= 0.7.0
PORTREVISION= 1
CATEGORIES= comms ruby
MASTER_SITES= RF
MASTER_SITE_SUBDIR= ruby-${PORTNAME}
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
DIST_SUBDIR= ruby
MAINTAINER= ruby@FreeBSD.org
COMMENT= A Ruby library to communicate via the RS232 port
USE_RUBY= yes
USE_RUBY_EXTCONF= yes
RUBY_EXTCONF= ext/extconf.rb
INSTALL_TARGET= site-install
DOCS= ChangeLog README
EXAMPLES= examples/*.rb
post-install:
.if !defined(NOPORTEXAMPLES)
${MKDIR} ${RUBY_MODEXAMPLESDIR}
.for f in ${EXAMPLES}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODEXAMPLESDIR}/
.endfor
.endif
.if !defined(NOPORTDOCS)
${MKDIR} ${RUBY_MODDOCDIR}
.for f in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
.endif
.include <bsd.port.mk>