mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
c68548820c
or USE_LIBRUBY is defined, individual ruby ports no longer need to include it explicitly.
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
# New ports collection makefile for: Ruby-tcpwrap
|
|
# Date created: 15 Aug 2000
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tcpwrap
|
|
PORTVERSION= 0.1
|
|
CATEGORIES= security ruby
|
|
MASTER_SITES= http://www.ruby-lang.org/~shugo/ruby-tcpwrap/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libident.a:${PORTSDIR}/security/libident
|
|
.if !exists(/usr/include/tcpd.h)
|
|
LIB_DEPENDS= wrap.7:${PORTSDIR}/security/tcp_wrapper
|
|
.endif
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBY_EXTCONF= yes
|
|
|
|
WRKSRC= ${WRKDIR}/ruby-${PORTNAME}
|
|
CONFIGURE_ARGS= --with-ident-dir="${LOCALBASE}"
|
|
.if !exists(/usr/include/tcpd.h)
|
|
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
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${RUBY_EXAMPLESDIR}/tcpwrap
|
|
${INSTALL_DATA} ${WRKSRC}/sample/echod.rb ${RUBY_EXAMPLESDIR}/tcpwrap/
|
|
${MKDIR} ${RUBY_DOCDIR}/tcpwrap/ja
|
|
.for f in ${DOCS_EN}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/tcpwrap/
|
|
.endfor
|
|
.for f in ${DOCS_JA}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/tcpwrap/ja/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|