diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2010-03-08 08:47:08 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2010-03-08 08:47:08 +0000 |
commit | 40f157518da5bcd87fbb9fc59f00b6be73d81765 (patch) | |
tree | a3aa53b80cecd45081abdaf6e109ed2b7e53cc9c /dev-vcs | |
parent | Add support for xulrunner-1.9.2 to stable devhelp; fixes bug 304183 (diff) | |
download | gentoo-2-40f157518da5bcd87fbb9fc59f00b6be73d81765.tar.gz gentoo-2-40f157518da5bcd87fbb9fc59f00b6be73d81765.tar.bz2 gentoo-2-40f157518da5bcd87fbb9fc59f00b6be73d81765.zip |
initial commit, ebuild taken from Bazaar overlay, collaborate work from Mark Lee and myself...fixes bug 154959
(Portage version: 2.1.7.17/cvs/Linux i686)
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/bzr-gtk/ChangeLog | 11 | ||||
-rw-r--r-- | dev-vcs/bzr-gtk/bzr-gtk-0.98.0.ebuild | 44 | ||||
-rw-r--r-- | dev-vcs/bzr-gtk/metadata.xml | 17 |
3 files changed, 72 insertions, 0 deletions
diff --git a/dev-vcs/bzr-gtk/ChangeLog b/dev-vcs/bzr-gtk/ChangeLog new file mode 100644 index 000000000000..d53cb60a093b --- /dev/null +++ b/dev-vcs/bzr-gtk/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for dev-vcs/bzr-gtk +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bzr-gtk/ChangeLog,v 1.1 2010/03/08 08:47:08 fauli Exp $ + +*bzr-gtk-0.98.0 (08 Mar 2010) + + 08 Mar 2010; Christian Faulhammer <fauli@gentoo.org> + +bzr-gtk-0.98.0.ebuild, +metadata.xml: + initial commit, ebuild taken from Bazaar overlay, collaborate work from + Mark Lee and myself...fixes bug 154959 + diff --git a/dev-vcs/bzr-gtk/bzr-gtk-0.98.0.ebuild b/dev-vcs/bzr-gtk/bzr-gtk-0.98.0.ebuild new file mode 100644 index 000000000000..dfc0ddae6bb8 --- /dev/null +++ b/dev-vcs/bzr-gtk/bzr-gtk-0.98.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bzr-gtk/bzr-gtk-0.98.0.ebuild,v 1.1 2010/03/08 08:47:08 fauli Exp $ + +EAPI=1 +NEED_PYTHON=2.4 + +inherit python distutils + +MY_P="/${P/_rc/rc}" + +DESCRIPTION="A GTK+ interfaces to most Bazaar operations" +HOMEPAGE="http://bazaar-vcs.org/bzr-gtk" +SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gconf gnome-keyring gpg +sourceview libnotify nautilus" + +DEPEND=">=dev-vcs/bzr-1.6_rc1 + >=dev-python/pygtk-2.8 + nautilus? ( dev-python/nautilus-python ) + >=dev-python/pycairo-1.0" +RDEPEND="${DEPEND} + gnome-keyring? ( dev-python/gnome-keyring-python ) + gpg? ( app-crypt/seahorse ) + sourceview? ( + dev-python/pygtksourceview + gconf? ( dev-python/gconf-python ) + )" + +S="${WORKDIR}/${MY_P}" + +#TODO: src_test + +src_install() { + distutils_src_install + + if use libnotify; then + insinto /etc/xdg/autostart + doins bzr-notify.desktop + fi +} diff --git a/dev-vcs/bzr-gtk/metadata.xml b/dev-vcs/bzr-gtk/metadata.xml new file mode 100644 index 000000000000..0ed18363654e --- /dev/null +++ b/dev-vcs/bzr-gtk/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>bazaar</herd> + <longdescription lang="en"> + GTK+ Frontends to various Bazaar commands. Currently contains + dialogs for almost all common operations, including annotate and + visualise (log). Olive, the integrated version control application + is also part of bzr-gtk. + </longdescription> + <use> + <flag name="gconf">Enable GConf support</flag> + <flag name="gpg">Support signing with GnuPG.</flag> + <flag name="sourceview">Enable GtkSourceView support</flag> + <flag name="nautilus">Integrate with Nautilus file manager</flag> + </use> +</pkgmetadata> |