From owner-svn-ports-all@FreeBSD.ORG Sun Jun 1 20:08:54 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB57E669; Sun, 1 Jun 2014 20:08:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B8AE92C47; Sun, 1 Jun 2014 20:08:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s51K8siN051937; Sun, 1 Jun 2014 20:08:54 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s51K8s55051936; Sun, 1 Jun 2014 20:08:54 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201406012008.s51K8s55051936@svn.freebsd.org> From: Antoine Brodin Date: Sun, 1 Jun 2014 20:08:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356168 - head/devel/luabind X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2014 20:08:54 -0000 Author: antoine Date: Sun Jun 1 20:08:54 2014 New Revision: 356168 URL: http://svnweb.freebsd.org/changeset/ports/356168 QAT: https://qat.redports.org/buildarchive/r356168/ Log: Unbreak, it seems not compatible with lua52 Reported by: pkg-fallout Modified: head/devel/luabind/Makefile Modified: head/devel/luabind/Makefile ============================================================================== --- head/devel/luabind/Makefile Sun Jun 1 19:33:35 2014 (r356167) +++ head/devel/luabind/Makefile Sun Jun 1 20:08:54 2014 (r356168) @@ -12,7 +12,7 @@ COMMENT= Library that helps you create b LIB_DEPENDS= libboost_python.so:${PORTSDIR}/devel/boost-python-libs -USES= lua +USES= lua:51 USE_LDCONFIG= yes CPPFLAGS+= -I.. -I${LUA_INCDIR} -I${LOCALBASE}/include @@ -23,8 +23,6 @@ PORTDOCS= * OPTIONS_DEFINE= DOCS -.include - post-patch: @${FIND} ${WRKSRC} -name "*.orig" -delete @@ -35,7 +33,7 @@ do-build: @cd ${WRKSRC}/src && ${ECHO_CMD} *.cpp | \ ${XARGS} -n1 -t ${_MAKE_JOBS:C/j/P/} \ ${CXX} ${CXXFLAGS} ${CPPFLAGS} -c - cd ${WRKSRC}/src && ${CXX} -shared ${LDFLAGS} -llua -o libluabind.so *.o + cd ${WRKSRC}/src && ${CXX} -shared ${LDFLAGS} -llua-${LUA_VER} -o libluabind.so *.o cd ${WRKSRC}/src && ${AR} -rcs libluabind.a *.o do-install: