From owner-svn-ports-all@FreeBSD.ORG Sat Dec 28 18:55:22 2013 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 C061AD36; Sat, 28 Dec 2013 18:55:22 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AC5C311F9; Sat, 28 Dec 2013 18:55:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBSItMPU007353; Sat, 28 Dec 2013 18:55:22 GMT (envelope-from johans@svn.freebsd.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBSItMar007352; Sat, 28 Dec 2013 18:55:22 GMT (envelope-from johans@svn.freebsd.org) Message-Id: <201312281855.rBSItMar007352@svn.freebsd.org> From: Johan van Selst Date: Sat, 28 Dec 2013 18:55:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337895 - head/lang/pike78 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.17 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: Sat, 28 Dec 2013 18:55:22 -0000 Author: johans Date: Sat Dec 28 18:55:22 2013 New Revision: 337895 URL: http://svnweb.freebsd.org/changeset/ports/337895 Log: - Depend on Nettle from ports - Actually do custom configuration during configuration phase - Bump PORTREVISION Modified: head/lang/pike78/Makefile Modified: head/lang/pike78/Makefile ============================================================================== --- head/lang/pike78/Makefile Sat Dec 28 18:48:49 2013 (r337894) +++ head/lang/pike78/Makefile Sat Dec 28 18:55:22 2013 (r337895) @@ -2,7 +2,7 @@ PORTNAME= pike78 PORTVERSION= 7.8.700 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang MASTER_SITES= http://pike.ida.liu.se/pub/pike/all/${PORTVERSION}/ \ ftp://pike.ida.liu.se/pub/pike/beta/${PORTVERSION}/ \ @@ -17,7 +17,8 @@ LIB_DEPENDS= libjpeg.so:${PORTSDIR}/grap libtiff.so:${PORTSDIR}/graphics/tiff \ libgdbm.so:${PORTSDIR}/databases/gdbm \ libpcre.so:${PORTSDIR}/devel/pcre \ - libgmp.so:${PORTSDIR}/math/gmp + libgmp.so:${PORTSDIR}/math/gmp \ + libnettle.so:${PORTSDIR}/security/nettle CONFLICTS= pike7[26]-[0-9]* @@ -30,6 +31,7 @@ MAN1= pike.1 CFLAGS+= -ffast-math -fomit-frame-pointer +GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS+=${PTHREAD_CFLAGS} M4="/usr/bin/m4 -g" CONFIGURE_ARGS+= --without-debug \ --with-thread-library=${PTHREAD_LIBS} \ @@ -71,9 +73,6 @@ CONFIGURE_ARGS+= --without-debug \ --without-sybase \ --prefix=${PREFIX} -MAKE_ARGS= "CONFIGUREARGS=${CONFIGURE_ARGS}" -MAKE_ENV= "ac_cv_lib_nettle_nettle_md5_init=no" - USES= bison gettext gmake perl5 PLIST_FILES= bin/pike bin/pike78 bin/hilfe @@ -112,8 +111,9 @@ CONFIGURE_ARGS+= --with-pgsql=${PREFIX} CONFIGURE_ARGS+= --without-pgsql .endif -pre-configure: - @${ECHO} ${CONFIGURE_ARGS} +do-configure: + @${MAKE} -C ${WRKSRC} configure CONFIGUREARGS="${CONFIGURE_ARGS}" + post-patch: @${REINPLACE_CMD} -e 's| -lgmp| -L${LOCALBASE}/lib -lgmp|' \