mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
49 lines
1020 B
Makefile
49 lines
1020 B
Makefile
# New ports collection makefile for: ruby-tk
|
|
# Date created: 15 March 1999
|
|
# Whom: Yasuhiro Fukuma <yasuf@big.or.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tk
|
|
PORTVERSION= ${RUBY_VERSION}
|
|
CATEGORIES+= x11-toolkits ruby tk${TK_VERSION}
|
|
MASTER_SITES= ${MASTER_SITE_RUBY}
|
|
MASTER_SITE_SUBDIR= ${RUBY_VER}
|
|
DISTNAME= ruby-${PORTVERSION}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER?= knu@FreeBSD.org
|
|
|
|
RUN_DEPENDS= ${RUBY_ARCHLIBDIR}/tcltklib.so:${PORTSDIR}/${TCLTKLIB_CATEGORY}/ruby-tcltklib
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBY_EXTCONF= yes
|
|
|
|
MD5_FILE= ${PORTSDIR}/lang/ruby/distinfo
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/ext/tk
|
|
|
|
TK_VERSION?= 82
|
|
.if defined(WITH_TCLTK_JP)
|
|
TCLTKLIB_CATEGORY?= japanese
|
|
.else
|
|
TCLTKLIB_CATEGORY?= lang
|
|
.endif
|
|
|
|
.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}/tk
|
|
${INSTALL_DATA} ${WRKSRC}/sample/* ${RUBY_EXAMPLESDIR}/tk/
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|