From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [69.77.167.62] (helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Ko5oH-0000Rc-I3 for garchives@archives.gentoo.org; Fri, 10 Oct 2008 00:24:49 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9B5EE0800; Fri, 10 Oct 2008 00:24:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 90B9BE0800 for ; Fri, 10 Oct 2008 00:24:48 +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 4C30E64BD1 for ; Fri, 10 Oct 2008 00:24:47 +0000 (UTC) Received: from robbat2 by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1Ko5oF-0000wV-3T for gentoo-commits@lists.gentoo.org; Fri, 10 Oct 2008 00:24:47 +0000 From: "Robin H. Johnson (robbat2)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, robbat2@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-db/libdbi/files: libdbi-0.8.3-doc-build-fix.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: libdbi-0.8.3-doc-build-fix.patch X-VCS-Directories: dev-db/libdbi/files X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson Content-Type: text/plain; charset=utf8 Message-Id: Sender: "Robin H. Johnson" Date: Fri, 10 Oct 2008 00:24:47 +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: d4af8056-fc2f-4745-8514-e53fb38478fa X-Archives-Hash: 2b7d2c188b73901cde2920cf37fadd50 robbat2 08/10/10 00:24:47 Added: libdbi-0.8.3-doc-build-fix.patch Log: Make documentation build properly optional instead of dependant on syst= em contents. (Portage version: 2.2_rc11/cvs/Linux 2.6.27-rc1-10246-gca5de40 x86_64) Revision Changes Path 1.1 dev-db/libdbi/files/libdbi-0.8.3-doc-build-fix.patch file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi/file= s/libdbi-0.8.3-doc-build-fix.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi/file= s/libdbi-0.8.3-doc-build-fix.patch?rev=3D1.1&content-type=3Dtext/plain Index: libdbi-0.8.3-doc-build-fix.patch =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 diff -Nuar libdbi-0.8.3.orig/configure.in libdbi-0.8.3/configure.in --- libdbi-0.8.3.orig/configure.in 2008-10-09 17:09:09.303141877 -0700 +++ libdbi-0.8.3/configure.in 2008-10-09 17:10:48.100635797 -0700 @@ -149,7 +149,8 @@ -ac_docs=3D"YES" +ac_docs=3D"no" AC_ARG_ENABLE(docs, [ --disable-docs do not build and install the documentation.], - [ ac_docs=3D"NO" ]) + [ ac_docs=3D"$enableval" ], + [ ac_docs=3D"no" ]) =20 -if test "$ac_docs" =3D "YES"; then +if test "$ac_docs" =3D "yes"; then dnl AC_PATH_PROGS(myjade, openjade jade)