mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
c68548820c
or USE_LIBRUBY is defined, individual ruby ports no longer need to include it explicitly.
43 lines
1004 B
Makefile
43 lines
1004 B
Makefile
# New ports collection makefile for: Ruby-uconv
|
|
# Date created: 9 Aug 2000
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= uconv
|
|
PORTVERSION= 0.4.4
|
|
CATEGORIES= japanese converters ruby
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL} \
|
|
http://www.bekkoame.ne.jp/~yoshidam/
|
|
MASTER_SITE_SUBDIR= knu
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBY_EXTCONF= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
INSTALL_TARGET= site-install
|
|
|
|
EXAMPLES= euc2unicode.rb test_euc.txt test_euc.xml \
|
|
trilang.xml unicode2euc.rb xmlconv.rb
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
PKGNAMEPREFIX:= ${PKGNAMEPREFIX}${RUBY_PKGNAMEPREFIX}
|
|
|
|
post-install:
|
|
${MKDIR} ${RUBY_EXAMPLESDIR}/uconv/ja
|
|
.for f in ${EXAMPLES}
|
|
${INSTALL_DATA} ${WRKSRC}/samples/${f} ${RUBY_EXAMPLESDIR}/uconv/ja
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${RUBY_DOCDIR}/uconv/ja
|
|
${INSTALL_DATA} ${WRKSRC}/README ${RUBY_DOCDIR}/uconv/
|
|
${INSTALL_DATA} ${WRKSRC}/README.ja ${RUBY_DOCDIR}/uconv/ja/
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|