diff options
author | Ben de Groot <yngwin@gentoo.org> | 2010-02-22 21:42:03 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2010-02-22 21:42:03 +0000 |
commit | b51dda7bae589492a971fc6a6d6833c3a75607de (patch) | |
tree | 7e1c3414e9662c027ec105ba3539ae6cd1c82282 /x11-misc/pcmanfm | |
parent | Initial import. Ebuild by me. (diff) | |
download | gentoo-2-b51dda7bae589492a971fc6a6d6833c3a75607de.tar.gz gentoo-2-b51dda7bae589492a971fc6a6d6833c3a75607de.tar.bz2 gentoo-2-b51dda7bae589492a971fc6a6d6833c3a75607de.zip |
New experimental version of the rewritten-from-scratch pcmanfm. Dropping keywords.
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/pcmanfm')
-rw-r--r-- | x11-misc/pcmanfm/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/pcmanfm/pcmanfm-0.9.ebuild | 44 |
2 files changed, 51 insertions, 1 deletions
diff --git a/x11-misc/pcmanfm/ChangeLog b/x11-misc/pcmanfm/ChangeLog index 16e6d52c3734..dc1ea55da2e2 100644 --- a/x11-misc/pcmanfm/ChangeLog +++ b/x11-misc/pcmanfm/ChangeLog @@ -1,6 +1,12 @@ # 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.13 2010/01/24 18:20:02 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/ChangeLog,v 1.14 2010/02/22 21:42:03 yngwin Exp $ + +*pcmanfm-0.9 (22 Feb 2010) + + 22 Feb 2010; Ben de Groot <yngwin@gentoo.org> +pcmanfm-0.9.ebuild: + New experimental version of the rewritten-from-scratch pcmanfm. Dropping + keywords. 24 Jan 2010; Raúl Porcel <armin76@gentoo.org> pcmanfm-0.5.2.ebuild: Add ~arm diff --git a/x11-misc/pcmanfm/pcmanfm-0.9.ebuild b/x11-misc/pcmanfm/pcmanfm-0.9.ebuild new file mode 100644 index 000000000000..4174f25dfbe0 --- /dev/null +++ b/x11-misc/pcmanfm/pcmanfm-0.9.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/x11-misc/pcmanfm/pcmanfm-0.9.ebuild,v 1.1 2010/02/22 21:42:03 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="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="dev-libs/glib:2 + x11-libs/gtk+:2 + lxde-base/menu-cache + 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 +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS || die +} + +pkg_postinst() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update +} |