blob: 0fe6db541e0296a96c872b6ac5a1f80b412f654d (
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
|
# New ports collection Makefile for: onyx
# Date created: 15 May 2001
# Whom: jasone
#
# $FreeBSD$
#
PORTNAME= onyx
PORTVERSION= 5.1.1
CATEGORIES= lang
MASTER_SITES= http://www.canonware.com/download/onyx/
MAINTAINER= jasone@canonware.com
COMMENT= Embeddable stack-based threaded interpreted language
BUILD_DEPENDS= cook:${PORTSDIR}/devel/cook
LIB_DEPENDS= edit.5:${PORTSDIR}/devel/libedit \
pcre.0:${PORTSDIR}/devel/pcre
USE_BZIP2= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --with-libedit-prefix=${LOCALBASE} \
--with-pcre-prefix=${LOCALBASE}
INSTALLS_SHLIB= yes
MAN1= onyx.1 onyx_config.1
PLIST_SUB= ONYX_VERSION=${PORTVERSION}
.include <bsd.port.pre.mk>
.if ${ARCH} == "ia64"
BROKEN= "Coredump during build on ia64"
.endif
post-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure
do-build:
@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook)
do-install:
@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook install)
post-install:
@${STRIP_CMD} ${PREFIX}/bin/onyx
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|