jeremy ac78ad4e83 Make ruby 1.9 the default ruby for non-gem/extconf ports,
for consistency with the gem/extconf ports.

Update non-gem/extconf ports that relied on the previous
default of ruby 1.8 to explicitly specify it.

OK ajacoutot@
2013-03-20 19:13:50 +00:00

51 lines
1.1 KiB
Makefile

# $OpenBSD: Makefile,v 1.56 2013/03/20 19:13:50 jeremy Exp $
COMMENT= simplified wrapper and interface generator
SUBST_VARS= VERSION
VERSION= 1.3.36
DISTNAME= swig-${VERSION}
REVISION= 6
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=swig/}
HOMEPAGE= http://www.swig.org/
# BSD
PERMIT_PACKAGE_CDROM= Yes
WANTLIB= c m stdc++
MODULES= lang/python lang/tcl lang/ruby
MODRUBY_RUNDEP= No
MODRUBY_REV= 1.8
MODPY_RUNDEP= No
BUILD_DEPENDS= ${MODTCL_BUILD_DEPENDS} \
lang/guile
USE_GMAKE= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= --with-tclincl=${MODTCL_INCDIR} \
--with-tcllib=${MODTCL_LIBDIR} \
--with-guilelib=${LOCALBASE}/lib \
--with-python=${MODPY_BIN} \
--with-ruby=${RUBY} \
--without-mzscheme \
--without-php4 \
--without-ocaml
MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}/Tools/config
ALL_TARGET= swig
SWIG_EXAMPLES= ${PREFIX}/share/examples/swig
SWIG_DOCS= ${PREFIX}/share/doc/swig
post-install:
${INSTALL_DATA_DIR} ${SWIG_EXAMPLES}
${INSTALL_DATA_DIR} ${SWIG_DOCS}
cp -R ${WRKSRC}/Examples/* ${SWIG_EXAMPLES}
cp -R ${WRKSRC}/Doc/* ${SWIG_DOCS}
.include <bsd.port.mk>