From owner-svn-ports-head@FreeBSD.ORG Wed Apr 30 16:52:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 406D2C18; Wed, 30 Apr 2014 16:52:59 +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 2C8B51898; Wed, 30 Apr 2014 16:52:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3UGqxBE034152; Wed, 30 Apr 2014 16:52:59 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3UGqx2b034151; Wed, 30 Apr 2014 16:52:59 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201404301652.s3UGqx2b034151@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 30 Apr 2014 16:52:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r352688 - head/lang/onyx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Apr 2014 16:52:59 -0000 Author: bapt Date: Wed Apr 30 16:52:58 2014 New Revision: 352688 URL: http://svnweb.freebsd.org/changeset/ports/352688 QAT: https://qat.redports.org/buildarchive/r352688/ Log: chase libedit change with a simple bump as the port build system does not seems to support destdir at all With hat: portmgr Modified: head/lang/onyx/Makefile Modified: head/lang/onyx/Makefile ============================================================================== --- head/lang/onyx/Makefile Wed Apr 30 16:21:33 2014 (r352687) +++ head/lang/onyx/Makefile Wed Apr 30 16:52:58 2014 (r352688) @@ -3,7 +3,7 @@ PORTNAME= onyx PORTVERSION= 5.1.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang MASTER_SITES= http://www.canonware.com/download/onyx/ @@ -11,25 +11,18 @@ MAINTAINER= jasone@FreeBSD.org COMMENT= Embeddable stack-based threaded interpreted language BUILD_DEPENDS= cook:${PORTSDIR}/devel/cook -LIB_DEPENDS= edit.6:${PORTSDIR}/devel/libedit \ - pcre.3:${PORTSDIR}/devel/pcre +LIB_DEPENDS= libedit.so:${PORTSDIR}/devel/libedit \ + libpcre.so:${PORTSDIR}/devel/pcre -USE_BZIP2= yes +USES= desthack tar:bzip2 GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-libedit-prefix=${LOCALBASE} \ --with-pcre-prefix=${LOCALBASE} USE_LDCONFIG= yes -MAN1= onyx.1 onyx_config.1 - PLIST_SUB= ONYX_VERSION=${PORTVERSION} -NO_STAGE= yes -.include - -.if ${ARCH} == "ia64" -BROKEN= Coredump during build on ia64 -.endif +BROKEN_ia64= Coredump during build on ia64 post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure @@ -38,10 +31,7 @@ do-build: @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook) do-install: - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook install) - -post-install: + @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} DESTDIR=${STAGEDIR} cook install) @${STRIP_CMD} ${PREFIX}/bin/onyx - @${CAT} ${PKGMESSAGE} -.include +.include