diff options
author | Serkan Kaba <serkan@gentoo.org> | 2009-02-14 07:13:42 +0000 |
---|---|---|
committer | Serkan Kaba <serkan@gentoo.org> | 2009-02-14 07:13:42 +0000 |
commit | 3636967a3bb47ef0d3b978107c6072d2b31c4aba (patch) | |
tree | 0aca00ae455eb8218a71ffd4ffbce97bc320a376 /gnome-extra | |
parent | remove old ebuilds (diff) | |
download | gentoo-2-3636967a3bb47ef0d3b978107c6072d2b31c4aba.tar.gz gentoo-2-3636967a3bb47ef0d3b978107c6072d2b31c4aba.tar.bz2 gentoo-2-3636967a3bb47ef0d3b978107c6072d2b31c4aba.zip |
Version bump.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/file-browser-applet/ChangeLog | 10 | ||||
-rw-r--r-- | gnome-extra/file-browser-applet/file-browser-applet-0.6.1.ebuild | 37 |
2 files changed, 45 insertions, 2 deletions
diff --git a/gnome-extra/file-browser-applet/ChangeLog b/gnome-extra/file-browser-applet/ChangeLog index 56026926e4c7..1d186277d4d9 100644 --- a/gnome-extra/file-browser-applet/ChangeLog +++ b/gnome-extra/file-browser-applet/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnome-extra/file-browser-applet -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/file-browser-applet/ChangeLog,v 1.7 2008/11/09 15:28:41 maekke Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/file-browser-applet/ChangeLog,v 1.8 2009/02/14 07:13:42 serkan Exp $ + +*file-browser-applet-0.6.1 (14 Feb 2009) + + 14 Feb 2009; Serkan Kaba <serkan@gentoo.org> + +file-browser-applet-0.6.1.ebuild: + Version bump. 09 Nov 2008; Markus Meier <maekke@gentoo.org> file-browser-applet-0.6.0-r1.ebuild: diff --git a/gnome-extra/file-browser-applet/file-browser-applet-0.6.1.ebuild b/gnome-extra/file-browser-applet/file-browser-applet-0.6.1.ebuild new file mode 100644 index 000000000000..9f0870a83f57 --- /dev/null +++ b/gnome-extra/file-browser-applet/file-browser-applet-0.6.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/file-browser-applet/file-browser-applet-0.6.1.ebuild,v 1.1 2009/02/14 07:13:42 serkan Exp $ + +inherit gnome2 cmake-utils + +DESCRIPTION="Browse and open files in your home directory from the GNOME panel." +HOMEPAGE="http://code.google.com/p/gnome-menu-file-browser-applet/" +SRC_URI="http://gnome-menu-file-browser-applet.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gtkhotkey" + +RDEPEND=">=x11-libs/gtk+-2.14 + >=gnome-base/gnome-panel-2.0 + >=gnome-base/libglade-2.0 + >=dev-libs/glib-2.16 + gtkhotkey? ( x11-libs/gtkhotkey )" + +DEPEND="${RDEPEND} + dev-util/pkgconfig + >=dev-util/cmake-2.4.8" + +src_compile() { + mycmakeargs="${mycmakeargs} -DCMAKE_INSTALL_GCONF_SCHEMA_DIR=/etc/gconf/schemas" + mycmakeargs="${mycmakeargs} $(cmake-utils_use_enable gtkhotkey GTK_HOTKEY)" + cmake-utils_src_compile +} + +src_install() { + export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" + cmake-utils_src_install + unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL + dodoc HISTORY README || die "dodoc failed" +} |