123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- # $OpenBSD: Makefile,v 1.26 2016/11/04 17:03:29 jeremy Exp $
- COMMENT-main = object oriented script language with threads
- COMMENT-gdbm = gdbm interface for ruby
- COMMENT-tk = tk interface for ruby
- COMMENT-ri_docs = ri documentation files for ruby
- VERSION = 2.1.9
- RUBYLIBREV = 2.1
- DISTNAME = ruby-${VERSION}
- SHARED_LIBS = ruby21 1.2
- PKGNAME-main = ruby-${VERSION}
- PKGNAME-gdbm = ruby21-gdbm-${VERSION}
- PKGNAME-tk = ruby21-tk-${VERSION}
- PKGNAME-ri_docs = ruby21-ri_docs-${VERSION}
- REVISION-main = 3
- PKG_ARCH-ri_docs = *
- WANTLIB-ri_docs = # empty
- NEXTVER = 2.2
- PKGSPEC-main = ruby->=${RUBYLIBREV},<${NEXTVER}
- CONFIGURE_ARGS = --program-suffix=21 \
- --with-soname=ruby21 \
- --with-ruby-version=minor \
- --with-mantype=doc \
- --enable-pthread \
- --enable-ipv6 \
- --disable-option-checking
- CONFIGURE_ENV = LIBruby21_VERSION=${LIBruby21_VERSION} \
- ac_cv_prog_DOXYGEN="" \
- ac_cv_prog_DOT="" \
- DLDFLAGS="-L${LOCALBASE}/lib"
- MAKE_ENV = DLDFLAGS="-I${LOCALBASE}/lib"
- ALL_TARGET = V=1 main
- INSTALL_TARGET = V=1 install-nodoc
- WANTLIB-main = c crypto ffi gmp m ncurses pthread readline ssl \
- util yaml z
- LIB_DEPENDS-main = devel/gmp \
- devel/libyaml \
- devel/libffi
- PSEUDO_FLAVORS= no_tk no_ri_docs bootstrap
- # Do not build the RI docs on slow arches
- # on alpha and hppa: miniruby abort trap when generating rdoc
- .if ${MACHINE_ARCH:Malpha} || ${MACHINE_ARCH:Marm} || ${MACHINE_ARCH:Mhppa}
- FLAVOR?= no_ri_docs bootstrap
- .else
- FLAVOR?=
- .endif
- MULTI_PACKAGES = -main -gdbm -tk -ri_docs
- .include <bsd.port.arch.mk>
- WANTLIB-gdbm = c m gdbm gmp pthread ruby21
- LIB_DEPENDS-gdbm = databases/gdbm \
- devel/gmp \
- lang/ruby/${REV},-main>=${VERSION},<${NEXTVER}
- RUN_DEPENDS-gdbm =
- .if ${BUILD_PACKAGES:M-tk}
- CONFIGURE_ARGS+= --with-tcl-include=${LOCALBASE}/include/tcl8.5 \
- --with-tk-include=${LOCALBASE}/include/tk8.5 \
- --with-tcllib=tcl85 \
- --with-tklib=tk85 \
- --with-X11-dir=${X11BASE}
- WANTLIB-tk = X11 c gmp m pthread ruby21 tcl85 tk85
- LIB_DEPENDS-tk = tk->=8.5,<8.6:x11/tk/8.5 \
- devel/gmp \
- lang/ruby/${REV},-main>=${VERSION},<${NEXTVER}
- RUN_DEPENDS-tk =
- .endif
- .if ${BUILD_PACKAGES:M-ri_docs}
- ALL_TARGET += rdoc
- INSTALL_TARGET += install-doc
- .endif
- SUBST_VARS += VERSION RUBYLIBREV
- TEST_DEPENDS = ${FULLPKGNAME-main}:${BUILD_PKGPATH}
- pre-install:
- find ${WRKSRC} -name '*.orig' -print0 | xargs -0r rm
- ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ruby \
- ${PREFIX}/lib/ruby/gems/${RUBYLIBREV}/extensions/${SUB} \
- ${PREFIX}/lib/ruby/gems/${RUBYLIBREV}/extensions/${SUB}/${RUBYLIBREV}
- post-install:
- ${FIX_RBCONFIG}
- do-test:
- -cd ${WRKSRC} && make test-sample
- -cd ${WRKSRC} && make btest-ruby
- cd ${WRKSRC} && make test-all TESTOPTS="-v -q -x test/ruby/test_io.rb \
- -x test/net/http/test_http.rb"
- .include <bsd.port.mk>
|