From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1JWcHk-0005Hq-Cn for garchives@archives.gentoo.org; Tue, 04 Mar 2008 18:54:44 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9250EE04B5; Tue, 4 Mar 2008 18:54:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6DE71E04B5 for ; Tue, 4 Mar 2008 18:54:43 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 99B0E657DE for ; Tue, 4 Mar 2008 18:54:42 +0000 (UTC) Received: from hollow by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1JWcHh-0007H4-Ix for gentoo-commits@lists.gentoo.org; Tue, 04 Mar 2008 18:54:41 +0000 From: "Benedikt Boehm (hollow)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, hollow@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: webapp.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: webapp.eclass X-VCS-Directories: eclass X-VCS-Committer: hollow X-VCS-Committer-Name: Benedikt Boehm Content-Type: text/plain; charset=utf8 Message-Id: Sender: Benedikt Boehm Date: Tue, 04 Mar 2008 18:54:41 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 340f9c54-0281-478d-a50e-beaefee17ba0 X-Archives-Hash: 678fdc5c20af1c9e6573e9da20782706 hollow 08/03/04 18:54:41 Modified: webapp.eclass Log: provide WEBAPP_DEPEND for ebuilds with WEBAPP_OPTIONAL Revision Changes Path 1.62 eclass/webapp.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/webapp.ecla= ss?rev=3D1.62&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/webapp.ecla= ss?rev=3D1.62&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/webapp.ecla= ss?r1=3D1.61&r2=3D1.62 Index: webapp.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v retrieving revision 1.61 retrieving revision 1.62 diff -u -r1.61 -r1.62 --- webapp.eclass 4 Mar 2008 18:44:01 -0000 1.61 +++ webapp.eclass 4 Mar 2008 18:54:41 -0000 1.62 @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.61 2008/03/0= 4 18:44:01 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.62 2008/03/0= 4 18:54:41 hollow Exp $ # # @ECLASS: webapp.eclass # @MAINTAINER: @@ -10,6 +10,12 @@ # The webapp eclass contains functions to handle web applications with # webapp-config. Part of the implementation of GLEP #11 =20 +# @ECLASS-VARIABLE: WEBAPP_DEPEND +# @DESCRIPTION: +# An ebuild should use WEBAPP_DEPEND if a custom DEPEND needs to be buil= d, most +# notably in combination with WEBAPP_OPTIONAL. +WEBAPP_DEPEND=3D">=3Dapp-admin/webapp-config-1.50.15" + # @ECLASS-VARIABLE: WEBAPP_NO_AUTO_INSTALL # @DESCRIPTION: # An ebuild sets this to `yes' if an automatic installation and/or upgra= de is @@ -24,7 +30,7 @@ if [[ "${WEBAPP_OPTIONAL}" !=3D "yes" ]]; then [[ "${WEBAPP_NO_AUTO_INSTALL}" =3D=3D "yes" ]] || IUSE=3D"vhosts" SLOT=3D"${PVR}" - DEPEND=3D">=3Dapp-admin/webapp-config-1.50.15" + DEPEND=3D"${WEBAPP_DEPEND}" RDEPEND=3D"${DEPEND}" fi =20 --=20 gentoo-commits@lists.gentoo.org mailing list