diff options
Diffstat (limited to 'converters/ruby-iconv/Makefile')
-rw-r--r-- | converters/ruby-iconv/Makefile | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/converters/ruby-iconv/Makefile b/converters/ruby-iconv/Makefile new file mode 100644 index 000000000000..95b25dfcb4c4 --- /dev/null +++ b/converters/ruby-iconv/Makefile @@ -0,0 +1,53 @@ +# New ports collection makefile for: Ruby-iconv +# Date created: 7 Aug 2000 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= iconv +PORTVERSION= 0.4.1 +CATEGORIES= converters # ruby +MASTER_SITES= http://member.nifty.ne.jp/nokada/archive/ +PKGNAMEPREFIX= ruby- + +MAINTAINER= knu@FreeBSD.org + +BUILD_DEPENDS= ruby:${PORTSDIR}/lang/ruby +LIB_DEPENDS= giconv.2:${PORTSDIR}/converters/libiconv +RUN_DEPENDS= ruby:${PORTSDIR}/lang/ruby + +.if !defined(NOPORTDOCS) +BUILD_DEPENDS+= rd2:${PORTSDIR}/textproc/ruby-rdtool +.endif + +PLIST_SUB= RUBY_VER="${RUBY_VER}" RUBY_ARCH="${RUBY_ARCH}" + +RUBY= ${LOCALBASE}/bin/ruby +RUBY_VER= 1.4 +RUBY_ARCH= ${ARCH}-freebsd${OSREL} + +pre-patch: +# ${CHMOD} u+w ${WRKSRC}/extconf.rb + +do-configure: + @cd ${WRKSRC}; \ + ${SETENV} ${CONFIGURE_ENV} ${RUBY} extconf.rb + +.if !defined(NOPORTDOCS) +post-build: + @cd ${WRKSRC}; \ + rd2 iconv.c > iconv.html +.endif + +do-install: + ${INSTALL_DATA} ${WRKSRC}/iconv.so \ + ${PREFIX}/lib/ruby/site_ruby/${RUBY_VER}/${RUBY_ARCH}/ +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/ruby/iconv +.for f in iconv.html rd.css + ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/ruby/iconv/ +.endfor +.endif + +.include <bsd.port.mk> |