mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
d765f5df76
In the upgrade from ruby 1.8.6 to 1.8.7, the PLISTs changed due to differences in how RDoc processes files. This also has a number of changes to the regress tests to work with the changes to devel/ruby-rake. It moves most of the regress tests to use MODRUBY_REGRESS. OK jcs@, landry@, jasper@, sthen@
38 lines
784 B
Makefile
38 lines
784 B
Makefile
# $OpenBSD: Makefile,v 1.5 2010/09/23 22:30:25 jeremy Exp $
|
|
|
|
SHARED_ONLY = Yes
|
|
|
|
COMMENT = DataObjects driver for SQLite3
|
|
|
|
VERSION = 0.10.0
|
|
DISTNAME = do_sqlite3-${VERSION}
|
|
PKGNAME = ruby-${DISTNAME}
|
|
REVISION = 1
|
|
CATEGORIES = databases
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${MASTER_SITE_RUBYFORGE:=dorb/}
|
|
|
|
MODULES = lang/ruby
|
|
|
|
CONFIGURE_STYLE = ruby gem
|
|
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
RUN_DEPENDS = :ruby-data_objects->=${VERSION}:databases/ruby-data_objects
|
|
|
|
WANTLIB = c m
|
|
LIB_DEPENDS = ${MODRUBY_LIB_DEPENDS} \
|
|
sqlite3::databases/sqlite3
|
|
|
|
MODRUBY_REGRESS = rspec
|
|
REGRESS_DEPENDS = ::devel/ruby-rake \
|
|
::devel/ruby-rcov \
|
|
:${PKGNAME}:${BASE_PKGPATH}
|
|
|
|
.include <bsd.port.mk>
|