aboutsummaryrefslogtreecommitdiffstats
path: root/lang/ruby14-tcltklib/Makefile
blob: ce2f062e17a6c5bea155b89ef0e3bb54b2cb7504 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# New ports collection makefile for:    rubytk
# Version required:     1.4.0
# Date created:         15 March 1999
# Whom:                 Yasuhiro Fukuma <yasuf@big.or.jp>
#
# $Id: Makefile,v 1.1.1.1 1999/04/27 12:39:46 taoka Exp $
#

DISTNAME=   ruby-${VERSION}
PKGNAME?=   rubytk-${VERSION}
CATEGORIES?=    x11-toolkits
MASTER_SITES=   ftp://ftp.netlab.co.jp/pub/lang/ruby/${BRANCH_NAME}/ \
        ftp://ftp.TokyoNet.AD.JP/pub/misc/ruby/${BRANCH_NAME}/ \
        ftp://ftp.iij.ad.jp/pub/lang/ruby/${BRANCH_NAME}/ \
        ftp://blade.nagaokaut.ac.jp/pub/lang/ruby/${BRANCH_NAME}/ \
        ftp://ftp.krnet.ne.jp/pub/ruby/${BRANCH_NAME}/ \
        ftp://mirror.nucba.ac.jp/mirror/ruby/${BRANCH_NAME}/

MAINTAINER?=    yasuf@big.or.jp

BUILD_DEPENDS=  ruby:${PORTSDIR}/lang/ruby
RUN_DEPENDS=    ruby:${PORTSDIR}/lang/ruby
LIB_DEPENDS=    ${TCL_LIB}.1:${PORTSDIR}/${TCL_CATEGORY}/tcl${TCL_VERSION} \
        ${TK_LIB}.1:${PORTSDIR}/${TK_CATEGORY}/tk${TK_VERSION}

USE_XLIB=   yes
WRKSRC=     ${WRKDIR}/${DISTNAME}/ext
CONFIGURE_ARGS+= --with-tcllib="${TCL_LIB}" --with-tklib="${TK_LIB}" \
        --with-tcl-lib="${PREFIX}/lib/${TCL_DIR}" \
        --with-tk-lib="${PREFIX}/lib/${TK_DIR}" \
        --with-tcl-include="${PREFIX}/include/${TCL_DIR}" \
        --with-tk-include="${PREFIX}/include/${TK_DIR}" \
        --with-X11-dir="${X11BASE}"
PLIST_SUB+= RUBY_VER="${RUBY_VER}" RUBY_ARCH="${RUBY_ARCH}"

VERSION=    1.4.0
BRANCH_NAME=    .

RUBY_VER=   1.4
RUBY_ARCH=  ${ARCH}-freebsd${OSREL}

# Set these vars as the version numbers (without decimal points) of Tcl/Tk
# you want to use with Ruby/Tk.
# e.g.: make TCL_VERSION=42 TK_VERSION=76 WITH_TCL_JP=yes build
TCL_VERSION?=   80
TK_VERSION?=    80
.if defined(WITH_TCL_JP)
TCL_CATEGORY=   japanese
TK_CATEGORY=    japanese
TCL_JP=     jp
.else
TCL_CATEGORY=   lang
TK_CATEGORY=    x11-toolkits
TCL_JP=     # empty
.endif

TCL_LIB=    tcl${TCL_VERSION}${TCL_JP}
TK_LIB=     tk${TK_VERSION}${TCL_JP}
TCL_DIR=    `echo "${TCL_LIB}" | ${SED} 's/\([0-9]\)\([0-9]\)/\1.\2/'`
TK_DIR=     `echo "${TK_LIB}"  | ${SED} 's/\([0-9]\)\([0-9]\)/\1.\2/'`

RUBY=       ${PREFIX}/bin/ruby
EXTS=       tcltklib tk

do-configure:
.for dir in ${EXTS}
    @${ECHO_MSG} "Configuring in ${dir}..."
    @cd ${WRKSRC}/${dir}; ${SETENV} ${CONFIGURE_ENV} ${RUBY} extconf.rb ${CONFIGURE_ARGS}
.endfor

do-build:
.for dir in ${EXTS}
    @${ECHO_MSG} "Building in ${dir}..."
    @cd ${WRKSRC}/${dir}; ${SETENV} ${MAKE_ENV} ${MAKE} ${ALL_TARGET}
.endfor

do-install:
.for dir in ${EXTS}
    @${ECHO_MSG} "Installing in ${dir}..."
    @cd ${WRKSRC}/${dir}; ${SETENV} ${MAKE_ENV} ${MAKE} ${INSTALL_TARGET}
    ${MKDIR} ${PREFIX}/share/examples/ruby/${dir}
    ${INSTALL_DATA} ${WRKSRC}/${dir}/sample/* ${PREFIX}/share/examples/ruby/${dir}
.endfor

.include <bsd.port.mk>