freebsd-ports/databases/ruby-interbase/Makefile

45 lines
973 B
Makefile
Raw Normal View History

# New ports collection makefile for: ruby-interbase
# Date created: 8 Nov 2001
# Whom: Sergey Skvortsov <skv@protey.ru>
#
# $FreeBSD$
#
PORTNAME= interbase
2002-01-28 12:46:50 +01:00
PORTVERSION= 0.05
PORTREVISION= 1
CATEGORIES= databases ruby
2002-01-15 16:55:44 +01:00
MASTER_SITES= http://www.rowlandresearch.com/ruby/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DIST_SUBDIR= ruby
2002-01-28 12:46:50 +01:00
MAINTAINER= skv@FreeBSD.org
COMMENT= Ruby interface to Interbase library
LIB_DEPENDS= gds:${PORTSDIR}/databases/firebird-client
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_RUBY= yes
USE_RUBY_EXTCONF= yes
CONFIGURE_ARGS= --with-interbase-include-dir="${LOCALBASE}/include" \
--with-interbase-lib-dir="${LOCALBASE}/lib"
INSTALL_TARGET= site-install
DOCS_EN= README
DOCS_JA= README.ja
post-install:
.if !defined(NOPORTDOCS)
2002-10-06 23:08:30 +02:00
${MKDIR} ${RUBY_MODDOCDIR}/ja
.for f in ${DOCS_EN}
2002-10-06 23:08:30 +02:00
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
.for f in ${DOCS_JA}
2002-10-06 23:08:30 +02:00
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ja/
.endfor
.endif
.include <bsd.port.mk>