aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/ruby-htree/Makefile
blob: 567890e6c9caad3bbde61cd1efdd1a50af3a4295 (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
48
49
50
51
52
53
54
55
# New ports collection makefile for:    Ruby/htree
# Date created:     3 May 2004
# Whom:         Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#

PORTNAME=   htree
PORTVERSION=    0.3
CATEGORIES= textproc www ruby
MASTER_SITES=   ftp://ftp.rucus.ru.ac.za/pub/FreeBSD/distfiles/ruby/
PKGNAMEPREFIX=  ${RUBY_PKGNAMEPREFIX}
DIST_SUBDIR=    ruby

MAINTAINER= knu@FreeBSD.org
COMMENT=    A Ruby library to manipulate HTML/XML tree data structure

USE_RUBY=   yes
USE_RUBY_RD2=       yes
USE_RUBY_RDOC=      yes

LIB_FILES=  htree.rb htree

RUBY_RD_FILES=  README.rd

WRKSRC=     ${WRKDIR}/${PORTNAME}
DOCS=       ${RUBY_RD_FILES} \
        ${RUBY_RD_HTML_FILES} \
        doc

RUBY_REQUIRE=   Ruby > 180

.include <bsd.port.pre.mk>

.if !defined(RUBY_PROVIDED)
IGNORE=     only works with Ruby 1.8.0 or later
.endif

do-build:
.if !defined(NOPORTDOCS)
    cd ${BUILD_WRKSRC}; ${RUBY_RDOC} ${LIB_FILES}
.endif

do-install: doc-install
    cd ${INSTALL_WRKSRC}; ${CP} -R ${LIB_FILES} ${RUBY_SITELIBDIR}/

doc-install:
.if !defined(NOPORTDOCS)
    ${MKDIR} ${RUBY_MODDOCDIR}
.for f in ${DOCS}
    ${CP} -R ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
.endif

.include <bsd.port.post.mk>