diff options
author | knu <knu@FreeBSD.org> | 2002-10-22 20:16:59 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-10-22 20:16:59 +0000 |
commit | 5973cfd9c6a370ca8d5d7d79fe1ec49a40d1aea3 (patch) | |
tree | fd3e328ba03b6e3005506177f406a7b4e0008c45 /net/ruby-dict/Makefile | |
parent | e53cf46f13ede68cbab673568b9d33690dd5a98e (diff) | |
download | FreeBSD-ports-5973cfd9c6a370ca8d5d7d79fe1ec49a40d1aea3.zip FreeBSD-ports-5973cfd9c6a370ca8d5d7d79fe1ec49a40d1aea3.tar.gz |
Add ruby-dict, a client-side implementation of the DICT protocol in
Ruby.
PR: ports/43377
Submitted by: Kimura Fuyuki <fuyuki@hadaly.org>
Diffstat (limited to 'net/ruby-dict/Makefile')
-rw-r--r-- | net/ruby-dict/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/net/ruby-dict/Makefile b/net/ruby-dict/Makefile new file mode 100644 index 0000000..bbc6624 --- /dev/null +++ b/net/ruby-dict/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: Ruby/DICT +# Date created: 26 September 2002 +# Whom: Kimura Fuyuki <fuyuki@hadaly.org> +# +# $FreeBSD$ +# + +PORTNAME= dict +PORTVERSION= 0.9.0 +CATEGORIES= net ruby +MASTER_SITES= http://www.caliban.org/files/ruby/ +PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} +DISTNAME= ruby-${PORTNAME}-${PORTVERSION} +DIST_SUBDIR= ruby + +MAINTAINER= fuyuki@hadaly.org + +USE_RUBY= yes +USE_RUBY_SETUP= yes +RUBY_SETUP= install.rb + +RUBY_SHEBANG_FILES= ${WRKSRC}/rdict + +DOCS= README doc/dict.html doc/rdict.html + +post-install: + ${INSTALL_SCRIPT} ${WRKSRC}/rdict ${PREFIX}/bin/ +.if !defined(NOPORTDOCS) + ${MKDIR} ${RUBY_MODDOCDIR} +.for f in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ +.endfor +.endif + +.include <bsd.port.mk> |