From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1R2q09-0004WB-HA for garchives@archives.gentoo.org; Sun, 11 Sep 2011 19:47:37 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41A4721C0BE; Sun, 11 Sep 2011 19:47:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E65D321C0BE for ; Sun, 11 Sep 2011 19:47:29 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 63EF31B4008 for ; Sun, 11 Sep 2011 19:47:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 339218004A for ; Sun, 11 Sep 2011 19:47:28 +0000 (UTC) From: "Jonathan Callen" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jonathan Callen" Message-ID: <1200d2dc55f3a6a5591c2fc0f46a2898c56db437.abcd@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-base/dolphin-plugins/ X-VCS-Repository: proj/kde X-VCS-Files: kde-base/dolphin-plugins/dolphin-plugins-9999.ebuild X-VCS-Directories: kde-base/dolphin-plugins/ X-VCS-Committer: abcd X-VCS-Committer-Name: Jonathan Callen X-VCS-Revision: 1200d2dc55f3a6a5591c2fc0f46a2898c56db437 Date: Sun, 11 Sep 2011 19:47:28 +0000 (UTC) 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: X-Archives-Hash: 414408ff05877c1d952721a26e6df737 commit: 1200d2dc55f3a6a5591c2fc0f46a2898c56db437 Author: Jonathan Callen gentoo org> AuthorDate: Sun Sep 11 19:47:04 2011 +0000 Commit: Jonathan Callen gentoo org> CommitDate: Sun Sep 11 19:47:04 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/kde.git;a=3Dc= ommit;h=3D1200d2dc [kde-base/dolphin-plugins] Add bzr plugin --- .../dolphin-plugins/dolphin-plugins-9999.ebuild | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/kde-base/dolphin-plugins/dolphin-plugins-9999.ebuild b/kde-b= ase/dolphin-plugins/dolphin-plugins-9999.ebuild index c0d728c..90ba00a 100644 --- a/kde-base/dolphin-plugins/dolphin-plugins-9999.ebuild +++ b/kde-base/dolphin-plugins/dolphin-plugins-9999.ebuild @@ -9,13 +9,14 @@ inherit kde4-meta =20 DESCRIPTION=3D"Extra Dolphin plugins" KEYWORDS=3D"" -IUSE=3D"debug +git +subversion" +IUSE=3D"debug +bazaar +git +subversion" =20 DEPEND=3D" $(add_kdebase_dep libkonq) " RDEPEND=3D"${DEPEND} $(add_kdebase_dep kompare) + bazaar? ( dev-vcs/bzr ) git? ( dev-vcs/git ) subversion? ( dev-vcs/subversion ) " @@ -28,6 +29,7 @@ KMLOADLIBS=3D"libkonq" src_prepare() { echo 'macro_optional_add_subdirectory ( dolphin-plugins )' >> CMakeList= s.txt || die echo > dolphin-plugins/CMakeLists.txt || die + use bazaar && echo 'add_subdirectory ( bazaar )' >> dolphin-plugins/CMa= keLists.txt use git && echo 'add_subdirectory ( git )' >> dolphin-plugins/CMakeList= s.txt use subversion && echo 'add_subdirectory ( svn )' >> dolphin-plugins/CM= akeLists.txt =20 @@ -35,5 +37,5 @@ src_prepare() { } =20 src_install() { - { use git || use subversion; } && kde4-meta_src_install + { use bazaar || use git || use subversion; } && kde4-meta_src_install }