aboutsummaryrefslogtreecommitdiffstats
path: root/irc/xchat-ruby/Makefile
blob: c35a2c94d264dd72ed5e3d88f3618dbd9d849543 (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:    XChat ruby
# Date created:     21 Jun 2008
# Whom:                 dirk.meyer@dinoex.sub.org
#
# $FreeBSD$

PORTNAME=   ruby
PORTVERSION=    1.2
PORTREVISION=   1
CATEGORIES= irc ruby
MASTER_SITES=   SF/xchat-${PORTNAME}/xchat-${PORTNAME}/${PORTVERSION}
PKGNAMEPREFIX=  xchat-
DISTNAME=   ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}-src

MAINTAINER= dinoex@FreeBSD.org
COMMENT=    An ruby-scripting plugin for XChat

RUN_DEPENDS=    xchat:${PORTSDIR}/irc/xchat

USE_RUBY=   yes
WRKSRC=     ${WRKDIR}/${DISTNAME}/src
DOCSRC=     ${WRKDIR}/${DISTNAME}
DOCSDIR=    ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
EXAMPLESDIR=    ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
PLIST_FILES=    lib/xchat/plugins/xchat-ruby.so
PORTDOCS=   README ChangeLog
PORTEXAMPLES=   embedify.rb TimerSample.rb JFilter.rb JBanner.rb

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/xchat-ruby.so \
        ${PREFIX}/lib/xchat/plugins/
.ifndef(NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}
.for doc in ${PORTDOCS}
    ${INSTALL_DATA} ${DOCSRC}/${doc} \
        ${DOCSDIR}/
.endfor
.endif
.if !defined(NOPORTEXAMPLES)
    ${MKDIR} ${EXAMPLESDIR}
.for doc in ${PORTEXAMPLES}
    ${INSTALL_DATA} ${DOCSRC}/*/${doc} \
        ${EXAMPLESDIR}/
.endfor
.endif

.include <bsd.port.mk>