1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/security/ruby-tcpwrap/Makefile
Akinori MUSHA 069ac36014 Change the libident dependency from BUILD_DEPENDS to LIB_DEPENDS.
The security/libident port now also installs a shared library and the
ruby-tcpwrap module is linked with it instead of a static library, so
ruby-tcpwrap requires libident runtime.

PR:		ports/73556
Submitted by:	rushani
2004-11-11 07:25:27 +00:00

48 lines
1.1 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.6
PORTREVISION= 1
CATEGORIES= security ruby
MASTER_SITES= http://www.shugo.net/archive/ruby-tcpwrap/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
COMMENT= TCP wrappers library for Ruby
LIB_DEPENDS= ident.0:${PORTSDIR}/security/libident
USE_RUBY= yes
USE_RUBY_EXTCONF= yes
WRKSRC= ${WRKDIR}/ruby-${PORTNAME}
CONFIGURE_ARGS= --with-libwrap-dir="/usr" \
--with-ident-dir="${LOCALBASE}"
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_MODEXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/sample/echod.rb ${RUBY_MODEXAMPLESDIR}/
${MKDIR} ${RUBY_MODDOCDIR}/ja
.for f in ${DOCS_EN}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
.for f in ${DOCS_JA}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ja/
.endfor
.endif
.include <bsd.port.mk>