diff options
author | taca <taca@pkgsrc.org> | 2004-11-28 04:19:35 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2004-11-28 04:19:35 +0000 |
commit | 63eba2a622b306f18677ec16f752db23da0b976c (patch) | |
tree | 82a0ab8d95c4a31454c8cb75082a6e0747722673 | |
parent | 0c2e7bcfe0db487a4d937b2180c777b650b8a029 (diff) | |
download | pkgsrc-63eba2a622b306f18677ec16f752db23da0b976c.tar.gz |
Migrate ruby-tcpwrap to use new framework for Ruby packages.
-rw-r--r-- | security/ruby-tcpwrap/DESCR | 2 | ||||
-rw-r--r-- | security/ruby-tcpwrap/Makefile | 35 |
2 files changed, 11 insertions, 26 deletions
diff --git a/security/ruby-tcpwrap/DESCR b/security/ruby-tcpwrap/DESCR index 4f6aad1db38..eca38e38b20 100644 --- a/security/ruby-tcpwrap/DESCR +++ b/security/ruby-tcpwrap/DESCR @@ -1,3 +1 @@ ruby-tcpwrap -- TCP wrappers library for Ruby. - -Author: Shugo Maeda <shugo@ruby-lang.org> diff --git a/security/ruby-tcpwrap/Makefile b/security/ruby-tcpwrap/Makefile index 2dc355baafb..1b7dd111685 100644 --- a/security/ruby-tcpwrap/Makefile +++ b/security/ruby-tcpwrap/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.7 2004/03/16 02:01:11 taca Exp $ +# $NetBSD: Makefile,v 1.8 2004/11/28 04:19:35 taca Exp $ # FreeBSD: ports/security/ruby-tcpwrap/Makefile,v 1.6 2000/09/26 08:02:10 knu Exp DISTNAME= ruby-tcpwrap-0.6 -PKGNAME= ${RUBY_PKGNAMEPREFIX}tcpwrap-0.6 +PKGNAME= ${RUBY_PKGPREFIX}-tcpwrap-0.6 CATEGORIES= security ruby MASTER_SITES= http://www.shugo.net/archive/ruby-tcpwrap/ @@ -10,27 +10,12 @@ MAINTAINER= taca@NetBSD.org HOMEPAGE= # not available COMMENT= TCP wrappers library for Ruby -WRKSRC= ${WRKDIR}/ruby-tcpwrap - -.include "../../mk/bsd.prefs.mk" - -DEPENDS+= libident>=0.22:../../security/libident -.if ${OPSYS} != "NetBSD" -DEPENDS+= tcp_wrappers>=7.6:../../security/tcp_wrappers -.endif - -DIST_SUBDIR= ruby -USE_RUBY_EXTCONF= yes - -.if ${OPSYS} == "NetBSD" -CONFIGURE_ARGS+= --with-libwrap-dir="/usr" -.else -CONFIGURE_ARGS+= --with-libwrap-dir="${LOCALBASE}" -.endif -INSTALL_TARGET= site-install - -DOCS_EN= README.en doc/tcpwrap.html.en -DOCS_JA= README.ja doc/tcpwrap.html.ja +USE_BUILDLINK3= yes +USE_RUBY_EXTCONF= yes +WRKSRC= ${WRKDIR}/ruby-tcpwrap +INSTALL_TARGET= site-install +DOCS_EN= README.en doc/tcpwrap.html.en +DOCS_JA= README.ja doc/tcpwrap.html.ja post-install: ${INSTALL_DATA_DIR} ${RUBY_EXAMPLESDIR}/tcpwrap @@ -43,5 +28,7 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/tcpwrap/ja .endfor -.include "../../lang/ruby-base/Makefile.common" +.include "../../lang/ruby/modules.mk" +.include "../../security/libident/buildlink3.mk" +.include "../../security/tcp_wrappers/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |