From owner-cvs-all@FreeBSD.ORG Sun Apr 24 15:37:53 2011 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4B7C106566C; Sun, 24 Apr 2011 15:37:53 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B54118FC08; Sun, 24 Apr 2011 15:37:53 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p3OFbrBV046178; Sun, 24 Apr 2011 15:37:53 GMT (envelope-from ohauer@repoman.freebsd.org) Received: (from ohauer@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p3OFbrUE046177; Sun, 24 Apr 2011 15:37:53 GMT (envelope-from ohauer) Message-Id: <201104241537.p3OFbrUE046177@repoman.freebsd.org> From: Olli Hauer Date: Sun, 24 Apr 2011 15:37:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/Mk bsd.apache.mk bsd.port.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2011 15:37:53 -0000 ohauer 2011-04-24 15:37:53 UTC FreeBSD ports repository Modified files: Mk bsd.apache.mk bsd.port.mk Log: Mk/bsd.apache.mk was rewritten with a new logic and some new parameters to support future apache versions and the transition to apache22. Existing and new USE_APACHE* parameters: USE_APACHE set apache and apxs as build and run dependency USE_APACHE_BUILD set apache and apxs as build dependency USE_APACHE_RUN set apache and apxs as run dependency The following example is representative of all three possible parameters to use: USE_APACHE= 22 specify exact version USE_APACHE= 1.3+ specify [min] version, no [max] version USE_APACHE= 13-22 specify [min]-[max] range USE_APACHE= -2.2 specify [max] version, no [min] version Values can be specified with and without "." (dot) between major and minor version numbers. For example 22 is equal to 2.2 For documentation and full changelist please take a look into Mk/bsd.apache.mk or http://wiki.freebsd.org/bsd.apache.mk Commit with hat apache@ PR: ports/156533 Submitted by: ohauer Revision Changes Path 1.28 +208 -93 ports/Mk/bsd.apache.mk 1.679 +3 -3 ports/Mk/bsd.port.mk