From owner-svn-ports-all@FreeBSD.ORG Sat Jun 7 10:00:55 2014 Return-Path: Delivered-To: svn-ports-all@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 E84ADB08; Sat, 7 Jun 2014 10:00:55 +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 BC9A72FA0; Sat, 7 Jun 2014 10:00:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s57A0tf9027847; Sat, 7 Jun 2014 10:00:55 GMT (envelope-from johans@svn.freebsd.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s57A0tT3027841; Sat, 7 Jun 2014 10:00:55 GMT (envelope-from johans@svn.freebsd.org) Message-Id: <201406071000.s57A0tT3027841@svn.freebsd.org> From: Johan van Selst Date: Sat, 7 Jun 2014 10:00:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356893 - in head: lang/pike78 www/caudium14 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: Sat, 07 Jun 2014 10:00:56 -0000 Author: johans Date: Sat Jun 7 10:00:54 2014 New Revision: 356893 URL: http://svnweb.freebsd.org/changeset/ports/356893 QAT: https://qat.redports.org/buildarchive/r356893/ Log: Make Caudium version automatically depend on the version of Pike 7.8 Added: head/lang/pike78/Makefile.common (contents, props changed) Modified: head/lang/pike78/Makefile head/www/caudium14/Makefile Modified: head/lang/pike78/Makefile ============================================================================== --- head/lang/pike78/Makefile Sat Jun 7 09:59:36 2014 (r356892) +++ head/lang/pike78/Makefile Sat Jun 7 10:00:54 2014 (r356893) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pike78 -PORTVERSION= 7.8.866 +PORTVERSION= ${PIKEVERSION} CATEGORIES= lang MASTER_SITES= http://pike.ida.liu.se/pub/pike/all/${PORTVERSION}/ \ ftp://pike.ida.liu.se/pub/pike/beta/${PORTVERSION}/ \ @@ -116,4 +116,5 @@ post-install: verify: cd ${WRKSRC}; ${GMAKE} verify +.include "Makefile.common" .include Added: head/lang/pike78/Makefile.common ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/pike78/Makefile.common Sat Jun 7 10:00:54 2014 (r356893) @@ -0,0 +1,6 @@ +# $FreeBSD$ + +# Also used by www/caudium14 + +PIKEVERSION= 7.8.866 + Modified: head/www/caudium14/Makefile ============================================================================== --- head/www/caudium14/Makefile Sat Jun 7 09:59:36 2014 (r356892) +++ head/www/caudium14/Makefile Sat Jun 7 10:00:54 2014 (r356893) @@ -2,24 +2,22 @@ # $FreeBSD$ PORTNAME= caudium14 -PORTVERSION= 1.4.18 -PORTREVISION= 1 +PORTVERSION= ${DISTVERSION}.${PIKEVERSION} +DISTVERSION= 1.4.18 CATEGORIES= www MASTER_SITES= http://caudium.googlecode.com/files/ -DISTNAME= Caudium-${PORTVERSION} +DISTNAME= Caudium-${DISTVERSION} MAINTAINER= johans@FreeBSD.org COMMENT= Free webserver based on the Roxen Challenger 1.3 code base -BROKEN= Fails to build - BUILD_DEPENDS= pike78:${PORTSDIR}/lang/pike78 LIB_DEPENDS= libsablot.so:${PORTSDIR}/textproc/sablotron RUN_DEPENDS= lsof:${PORTSDIR}/sysutils/lsof USES= tar:bzip2 gmake -PIKEVERSION= 7.8.852 +# Pike version included from lang/pike78 SUB_LIST+= PIKEVERSION=${PIKEVERSION} PLIST_SUB+= PIKEVERSION=${PIKEVERSION} @@ -56,4 +54,5 @@ post-configure: . endfor .endif +.include "../../lang/pike78/Makefile.common" .include