diff options
author | Ben de Groot <yngwin@gentoo.org> | 2010-03-07 13:40:11 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2010-03-07 13:40:11 +0000 |
commit | f77abf3fc02d756adb310c88d2d2b0a2a2968c84 (patch) | |
tree | f50d670140580823eda5b260b66a5e4e74c84af8 /x11-misc/pcmanfm | |
parent | remove duplicate dependency on apache (diff) | |
download | gentoo-2-f77abf3fc02d756adb310c88d2d2b0a2a2968c84.tar.gz gentoo-2-f77abf3fc02d756adb310c88d2d2b0a2a2968c84.tar.bz2 gentoo-2-f77abf3fc02d756adb310c88d2d2b0a2a2968c84.zip |
Version bump
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/pcmanfm')
-rw-r--r-- | x11-misc/pcmanfm/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/pcmanfm/pcmanfm-0.9.1.ebuild | 47 |
2 files changed, 53 insertions, 1 deletions
diff --git a/x11-misc/pcmanfm/ChangeLog b/x11-misc/pcmanfm/ChangeLog index 7e491fd38819..478f0419dd3a 100644 --- a/x11-misc/pcmanfm/ChangeLog +++ b/x11-misc/pcmanfm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/pcmanfm # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/ChangeLog,v 1.16 2010/02/27 20:14:16 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/ChangeLog,v 1.17 2010/03/07 13:40:11 yngwin Exp $ + +*pcmanfm-0.9.1 (07 Mar 2010) + + 07 Mar 2010; Ben de Groot <yngwin@gentoo.org> +pcmanfm-0.9.1.ebuild: + Version bump *pcmanfm-0.9-r1 (27 Feb 2010) diff --git a/x11-misc/pcmanfm/pcmanfm-0.9.1.ebuild b/x11-misc/pcmanfm/pcmanfm-0.9.1.ebuild new file mode 100644 index 000000000000..b09c9b0519b8 --- /dev/null +++ b/x11-misc/pcmanfm/pcmanfm-0.9.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/pcmanfm-0.9.1.ebuild,v 1.1 2010/03/07 13:40:11 yngwin Exp $ + +EAPI="2" +inherit eutils fdo-mime + +DESCRIPTION="Fast lightweight tabbed filemanager" +HOMEPAGE="http://pcmanfm.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="2" +KEYWORDS="~amd64" +IUSE="debug" + +RDEPEND="dev-libs/glib:2 + x11-libs/gtk+:2 + >=lxde-base/menu-cache-0.3.2 + x11-misc/shared-mime-info + x11-libs/libfm" +DEPEND="${RDEPEND} + dev-util/pkgconfig + sys-devel/gettext" + +src_configure() { + strip-linguas -i "${S}/po" + econf --sysconfdir=/etc $(use_enable debug) +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS || die +} + +pkg_postinst() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update + + elog 'PCmanFM can optionally support the menu://applications/ location.' + elog 'You should install lxde-base/lxmenu-data for that functionality.' +} + +pkg_postrm() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update +} |