diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-09-11 18:22:01 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-09-11 18:22:01 +0000 |
commit | 6288beb4622134c1fe1f75c28f24174b64b1676e (patch) | |
tree | d25dfd096999fed8eea3270b0ee6b45202667c98 /lang/ruby16_static | |
parent | c1c2cadd4a20c0a7a077ed37a66aa694227185da (diff) | |
download | ports-6288beb4622134c1fe1f75c28f24174b64b1676e.tar.gz ports-6288beb4622134c1fe1f75c28f24174b64b1676e.zip |
Notes
Diffstat (limited to 'lang/ruby16_static')
-rw-r--r-- | lang/ruby16_static/Makefile | 49 |
1 files changed, 38 insertions, 11 deletions
diff --git a/lang/ruby16_static/Makefile b/lang/ruby16_static/Makefile index d36aa367a7f6..7e3c4105fc43 100644 --- a/lang/ruby16_static/Makefile +++ b/lang/ruby16_static/Makefile @@ -7,7 +7,7 @@ PORTNAME= ruby_static PORTVERSION= ${RUBY_PORTVERSION} -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= lang ruby ipv6 MASTER_SITES= # none DISTFILES= # none @@ -18,6 +18,8 @@ BUILD_DEPENDS= ${NONEXISTENT}:${.CURDIR}/../../${RUBY_PORT}:patch USE_RUBY= yes +.include <bsd.port.pre.mk> + # Beware, because gdbm is under GPL, you must treat the whole binary # as GPL says if you include gdbm in it. EXT_PORTS= archivers/ruby-zlib \ @@ -25,6 +27,14 @@ EXT_PORTS= archivers/ruby-zlib \ _PORTSDIR= ${.CURDIR}/../.. _RUBY_PORTDIR= ${_PORTSDIR}/${RUBY_PORT} +LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv + +.if ${RUBY_VER} < 1.7 +EXT_PORTS+= lang/ruby16-shim-ruby18 +.else +EXT_PORTS+= converters/ruby-iconv +.endif + .for p in ${EXT_PORTS} BUILD_DEPENDS+= ${NONEXISTENT}:${_PORTSDIR}/${p}:patch .endfor @@ -46,8 +56,6 @@ WRKSRC= ${RUBY_WRKSRC} DESCR= ${_RUBY_PORTDIR}/pkg-descr -.include <bsd.port.pre.mk> - # You can build a totally statically linked binary by defining STATIC, # although it is not capable of loading dynamic modules. @@ -85,21 +93,40 @@ do-extract: ${MKDIR} ${WRKDIR} ${LN} -sf `cd ${_RUBY_PORTDIR} && ${MAKE} -V WRKSRC` ${WRKSRC} .for p in ${EXT_PORTS} - m="${p:T:S,^ruby-,,}"; \ wrksrc=$$(cd ${_PORTSDIR}/${p} && ${MAKE} -V WRKSRC) ; \ - extdir=$$(${FIND} -L $$wrksrc -name extconf.rb | \ - ${XARGS} ${GREP} -l create_makefile | ${HEAD} -1 ); \ - extdir=$${extdir%/extconf.rb}; \ - ${CP} -RPp $$extdir ${WRKSRC}/ext/$$m; \ - ${TOUCH} ${WRKSRC}/ext/$$m/MANIFEST + ${FIND} -L $$wrksrc -name extconf.rb | \ + ${XARGS} ${GREP} -l create_makefile | \ + while read extdir; do \ + extdir=$${extdir%/extconf.rb}; \ + case "$p" in \ + lang/ruby16-shim-ruby18) \ + m=$$(basename $$extdir); \ + case $$extdir in \ + */racc/*) \ + ${MKDIR} ${WRKSRC}/ext/racc; \ + m=racc/$${m} ;; \ + */ext/features/ruby18/*) \ + ${MKDIR} ${WRKSRC}/ext/features/ruby18; \ + m=features/ruby18/$${m}_ruby18 ;; \ + esac ;; \ + *) \ + m="${p:T:S,^ruby-,,}" ;; \ + esac; \ + ${CP} -RPp $$extdir ${WRKSRC}/ext/$$m; \ + ${TOUCH} ${WRKSRC}/ext/$$m/MANIFEST; \ + done .endfor .if defined(STATIC) ${ECHO_CMD} "option nodynamic" > ${WRKSRC}/ext/Setup .else ${ECHO_CMD} "#option nodynamic" > ${WRKSRC}/ext/Setup .endif - (cd ${WRKSRC}/ext && \ - for x in *; do [ -d $$x ] && echo $$x >> Setup; done) + cd ${WRKSRC}/ext; ${FIND} * -name extconf.rb | \ + ${XARGS} ${GREP} -l create_makefile | \ + while read extdir; do \ + extdir=$${extdir%/extconf.rb}; \ + echo $$extdir; \ + done >> Setup .if defined(NEWAUTOCONF) pre-configure: |