2001-11-15 14:18:52 +01:00
|
|
|
# New ports collection makefile for: dbd_sqlite for DBD-for-Ruby
|
|
|
|
# Date created: 15 November 2001
|
|
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= dbd_sqlite
|
|
|
|
PORTVERSION= ${RUBY_DBI_PORTVERSION}
|
2007-01-08 11:04:51 +01:00
|
|
|
PORTREVISION= 1
|
2001-11-15 14:18:52 +01:00
|
|
|
CATEGORIES= databases ruby
|
|
|
|
MASTER_SITES= ${RUBY_DBI_MASTER_SITES}
|
2002-04-22 23:03:43 +02:00
|
|
|
MASTER_SITE_SUBDIR= ${RUBY_DBI_MASTER_SITE_SUBDIR}
|
2001-11-15 14:18:52 +01:00
|
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
|
|
DISTNAME= ${RUBY_DBI_DISTNAME}
|
|
|
|
DIST_SUBDIR= ruby
|
|
|
|
|
2006-05-09 09:37:57 +02:00
|
|
|
MAINTAINER= boumenot@gmail.com
|
2003-02-18 05:37:40 +01:00
|
|
|
COMMENT= SQLite driver for DBI-for-Ruby
|
2001-11-15 14:18:52 +01:00
|
|
|
|
2004-12-23 10:46:52 +01:00
|
|
|
LIB_DEPENDS= sqlite.2:${PORTSDIR}/databases/sqlite2
|
2001-11-15 14:18:52 +01:00
|
|
|
RUN_DEPENDS= ${RUBY_SITELIBDIR}/dbi.rb:${RUBY_DBI_PORTDIR}
|
|
|
|
|
|
|
|
USE_RUBY= yes
|
|
|
|
USE_RUBY_SETUP= yes
|
|
|
|
|
2005-07-26 00:15:13 +02:00
|
|
|
SLAVE_PORT= yes
|
|
|
|
MASTER_PORT= databases/ruby-dbi
|
|
|
|
|
2001-11-15 14:18:52 +01:00
|
|
|
WRKSRC= ${RUBY_DBI_WRKSRC}
|
|
|
|
CONFIGURE_ARGS= --with=ext/${PORTNAME}
|
|
|
|
|
2002-01-03 08:31:59 +01:00
|
|
|
DOCS_EN= ext/${PORTNAME}/README
|
2001-11-15 14:18:52 +01:00
|
|
|
|
|
|
|
.include "${.CURDIR}/../ruby-dbi/Makefile.common"
|
|
|
|
|
2002-01-03 08:31:59 +01:00
|
|
|
post-patch:
|
2007-01-08 11:04:51 +01:00
|
|
|
${RUBY} -i- -pe "gsub 'dir_config \'sqlite\'', 'dir_config \'sqlite\', \'${LOCALBASE}\''" \
|
2002-01-03 08:31:59 +01:00
|
|
|
${WRKSRC}/ext/${PORTNAME}/extconf.rb
|
|
|
|
|
|
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
2002-10-06 23:08:30 +02:00
|
|
|
${MKDIR} ${RUBY_MODDOCDIR}
|
2002-01-03 08:31:59 +01:00
|
|
|
.for f in ${DOCS_EN}
|
2002-10-06 23:08:30 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
|
2002-01-03 08:31:59 +01:00
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
2001-11-15 14:18:52 +01:00
|
|
|
.include <bsd.port.mk>
|