aboutsummaryrefslogtreecommitdiffstats
path: root/security/ruby-tcpwrap/Makefile
blob: 2c3b23c08d643401381b4dc31504a27f5b507ae4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# 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>