diff options
author | 2010-06-22 09:22:10 +0000 | |
---|---|---|
committer | 2010-06-22 09:22:10 +0000 | |
commit | 88de27ab8010b93c954be284eb200e5f234118a7 (patch) | |
tree | b4a3b2d1483ab3879ea6d9e37816298de39b2082 /x11-misc | |
parent | Moved live ebuild from lxde-overlay (diff) | |
download | gentoo-2-88de27ab8010b93c954be284eb200e5f234118a7.tar.gz gentoo-2-88de27ab8010b93c954be284eb200e5f234118a7.tar.bz2 gentoo-2-88de27ab8010b93c954be284eb200e5f234118a7.zip |
Moved live ebuild from lxde-overlay
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/pcmanfm/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/pcmanfm/pcmanfm-9999.ebuild | 61 |
2 files changed, 67 insertions, 1 deletions
diff --git a/x11-misc/pcmanfm/ChangeLog b/x11-misc/pcmanfm/ChangeLog index d8f91a8e1fbf..b734fd7cd144 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.25 2010/06/03 21:36:02 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/ChangeLog,v 1.26 2010/06/22 09:22:10 hwoarang Exp $ + +*pcmanfm-9999 (22 Jun 2010) + + 22 Jun 2010; Markos Chandras <hwoarang@gentoo.org> +pcmanfm-9999.ebuild: + Moved live ebuild from lxde-overlay 03 Jun 2010; Markos Chandras <hwoarang@gentoo.org> pcmanfm-0.9.7-r1.ebuild, metadata.xml: diff --git a/x11-misc/pcmanfm/pcmanfm-9999.ebuild b/x11-misc/pcmanfm/pcmanfm-9999.ebuild new file mode 100644 index 000000000000..5b519ba1ef21 --- /dev/null +++ b/x11-misc/pcmanfm/pcmanfm-9999.ebuild @@ -0,0 +1,61 @@ +# 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-9999.ebuild,v 1.1 2010/06/22 09:22:10 hwoarang Exp $ + +EAPI="2" + +inherit autotools eutils fdo-mime git + +DESCRIPTION="Fast lightweight tabbed filemanager" +HOMEPAGE="http://pcmanfm.sourceforge.net/" +EGIT_REPO_URI="git://pcmanfm.git.sourceforge.net/gitroot/pcmanfm/${PN}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" +IUSE="debug hal udev" + +RDEPEND="dev-libs/glib:2 + x11-libs/gtk+:2 + gnome-base/gnome-mount + gnome-base/gvfs[hal?,udev?] + lxde-base/menu-cache + x11-misc/shared-mime-info + x11-libs/libfm" +DEPEND="${RDEPEND} + >=dev-util/intltool-0.40 + dev-util/pkgconfig + sys-devel/gettext" + +src_prepare() { + # add missing files to traslation file. Fixes tests + for i in about.ui autorun.ui desktop-pref.ui pref.ui; do + echo "data/ui/${i}" >> po/POTFILES.in + done + eautoreconf + einfo "Running intltoolize ..." + intltoolize --force --copy --automake || die + strip-linguas -i "${S}/po" +} + +src_configure() { + 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 +} |