freebsd-ports/devel/ruby-slang/Makefile
Akinori MUSHA 37f0f0aa36 Bump the PORTREVISION's of the ports which install architecture
dependent ruby modules, due to the RUBY_ARCH change I've just
committed.
2001-09-17 17:54:27 +00:00

64 lines
1.4 KiB
Makefile

# New ports collection makefile for: Ruby-slang (slanglib)
# Date created: 23 Aug 2000
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= slang
PORTVERSION= 0.51
PORTREVISION= 1
CATEGORIES+= devel ruby
MASTER_SITES= ${MASTER_SITE_LOCAL} \
http://www.kondara.org/~g/
MASTER_SITE_SUBDIR= knu
DISTNAME= ${PORTNAME}lib
DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
.if defined(WITH_JAPANESE)
LIB_DEPENDS= slang.2:${PORTSDIR}/japanese/libslang
.else
LIB_DEPENDS= slang.1:${PORTSDIR}/devel/libslang
.endif
USE_RUBY= yes
USE_RUBY_EXTCONF= yes
CONFIGURE_ARGS= --with-slang-include="${LOCALBASE}/include/slang" \
--with-slang-lib="${LOCALBASE}/lib"
INSTALL_TARGET= site-install
EXAMPLES_EN= fm.rb smgtest.rb urlview.rb
EXAMPLES_JA= pager.rb
DOCS_EN= README changes.txt
DOCS_JA= README.euc
.include <bsd.port.pre.mk>
.if defined(PKGNAMEPREFIX)
PKGNAMEPREFIX:= ${PKGNAMEPREFIX}${RUBY_PKGNAMEPREFIX}
.else
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
.endif
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${RUBY_EXAMPLESDIR}/slang/ja
.for f in ${EXAMPLES_EN}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_EXAMPLESDIR}/slang/
.endfor
.for f in ${EXAMPLES_JA}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_EXAMPLESDIR}/slang/ja/
.endfor
${MKDIR} ${RUBY_DOCDIR}/slang/ja
.for f in ${DOCS_EN}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/slang/
.endfor
.for f in ${DOCS_JA}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/slang/ja/
.endfor
.endif
.include <bsd.port.post.mk>