diff options
Diffstat (limited to 'textproc/eruby/Makefile')
-rw-r--r-- | textproc/eruby/Makefile | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/textproc/eruby/Makefile b/textproc/eruby/Makefile new file mode 100644 index 0000000..2a3b50d --- /dev/null +++ b/textproc/eruby/Makefile @@ -0,0 +1,46 @@ +# New ports collection makefile for: eruby +# Date created: 14 Aug 2000 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= eruby +PORTVERSION= ${RELEASE_VER}.${SNAPSHOT_DATE} +CATEGORIES= textproc lang # ruby +MASTER_SITES= ${MASTER_SITE_LOCAL} +MASTER_SITE_SUBDIR= knu +DIST_SUBDIR= ruby + +MAINTAINER= knu@FreeBSD.org + +BUILD_DEPENDS= ruby:${PORTSDIR}/lang/ruby +RUN_DEPENDS= ruby:${PORTSDIR}/lang/ruby + +WRKSRC= ${WRKDIR}/${PORTNAME} + +RELEASE_VER= 0.0.8 +SNAPSHOT_DATE= 2000.08.03 + +RUBY?= ${LOCALBASE}/bin/ruby +RUBY_VER?= 1.4 +RUBY_ARCH?= ${ARCH}-freebsd${OSREL} + +DOCS_EN= ChangeLog README.en +DOCS_JA= README.ja + +do-configure: + @cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${RUBY} Makefile.RB + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/ruby/eruby/ja +.for f in ${DOCS_EN} + ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/ruby/eruby/ +.endfor +.for f in ${DOCS_JA} + ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/ruby/eruby/ja/ +.endfor +.endif + +.include <bsd.port.mk> |