View | Details | Raw Unified | Return to bug 100042
Collapse All | Expand All

(-)Makefile (-11 / +4 lines)
Lines 6-31 Link Here
6
#
6
#
7
7
8
PORTNAME=	tolua++
8
PORTNAME=	tolua++
9
PORTVERSION=	1.0.4
9
PORTVERSION=	1.0.92
10
CATEGORIES=	lang devel
10
CATEGORIES=	lang devel
11
MASTER_SITES=	http://www.codenix.com/~tolua/
11
MASTER_SITES=	http://www.codenix.com/~tolua/
12
DISTNAME=	tolua++-current
13
12
14
MAINTAINER=	aaron@FreeBSD.org
13
MAINTAINER=	aaron@FreeBSD.org
15
COMMENT=	An extended version of tolua, a tool to integrate C/C++ code with Lua
14
COMMENT=	An extended version of tolua, a tool to integrate C/C++ code with Lua
16
15
17
BUILD_DEPENDS=	${LOCALBASE}/bin/scons:${PORTSDIR}/devel/scons
18
LIB_DEPENDS=	lua:${PORTSDIR}/lang/lua50
16
LIB_DEPENDS=	lua:${PORTSDIR}/lang/lua50
19
17
20
WRKSRC=		${WRKDIR}/tolua++-${PORTVERSION}
21
USE_BZIP2=	yes
18
USE_BZIP2=	yes
22
INSTALLS_SHLIB=	yes
19
USE_LDCONFIG=	yes
23
NO_BUILD=	yes
20
USE_SCONS=	yes
24
21
25
do-build:
22
SCONS_ARGS=	prefix=${PREFIX}
26
	@cd ${WRKSRC} && scons
27
28
do-install:
29
	@cd ${WRKSRC} && scons prefix=${PREFIX} install
30
23
31
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (tolua++-current.tar.bz2) = 8785100f7c9d9253cb47b530d97a32f6
1
MD5 (tolua++-1.0.92.tar.bz2) = f4682e065b7d6d4de5eec13e6b7d347c
2
SHA256 (tolua++-current.tar.bz2) = 557d8efd248ca3a9bdb3ed221abd4be2b71010d9463983ec804e20b4b888638c
2
SHA256 (tolua++-1.0.92.tar.bz2) = fd2199f669d7d7c11f5451001ee1601add263203b2522363b3632411437e4fac
3
SIZE (tolua++-current.tar.bz2) = 171870
3
SIZE (tolua++-1.0.92.tar.bz2) = 153961
(-)files/patch-config_posix.py (-18 lines)
Removed Link Here
1
--- config_posix.py.orig	Thu Jan 20 20:01:08 2005
2
+++ config_posix.py	Wed Jan 18 11:05:32 2006
3
@@ -5,7 +5,7 @@
4
 
5
 # flags for the compiler
6
 #CCFLAGS = []
7
-CCFLAGS = ['-O2', '-ansi', '-Wall']
8
+CCFLAGS = ['-O2', '-ansi', '-Wall', '-I/usr/local/include']
9
 
10
 # this is the default directory for installation. Files will be installed on
11
 # <prefix>/bin, <prefix>/lib and <prefix>/include when you run 'scons install'
12
@@ -17,5 +17,5 @@
13
 
14
 # libraries
15
 LIBS = ['lua', 'lualib', 'm']
16
-
17
+LINKFLAGS = ['-L/usr/local/lib']
18
 

Return to bug 100042