freebsd-ports/irc/xchat-ruby/Makefile

56 lines
1.3 KiB
Makefile
Raw Normal View History

# $FreeBSD$
PORTNAME= ruby
PORTVERSION= 1.2
2012-06-01 07:26:28 +02:00
PORTREVISION= 3
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
2010-06-04 15:49:15 +02:00
LICENSE= GPLv2
NO_STAGE= yes
USE_RUBY= yes
USE_LIBRUBY= 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
post-patch:
${REINPLACE_CMD} \
-e 's|^RUBY=.*|RUBY=${RUBY}|' \
-e 's|-lruby$$|-l${RUBY_NAME}|' \
-e 's|^ARCHDIR=.*|ARCHDIR=`$$(RUBY) ${FILESDIR}/rubypath.rb`|' \
${WRKSRC}/Makefile
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>