diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2011-06-14 09:15:05 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2011-06-14 09:15:05 +0000 |
commit | 9b4755aa8b8a60859c40ace597b53fe99c986a65 (patch) | |
tree | df95eab9b95a117b53a11069ce6d8ffab6228a17 /x11-misc | |
parent | Version bump. fix bug #327399 (diff) | |
download | gentoo-2-9b4755aa8b8a60859c40ace597b53fe99c986a65.tar.gz gentoo-2-9b4755aa8b8a60859c40ace597b53fe99c986a65.tar.bz2 gentoo-2-9b4755aa8b8a60859c40ace597b53fe99c986a65.zip |
New snapshot
(Portage version: 2.2.0_alpha39/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/pcmanfm/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/pcmanfm/pcmanfm-0.9.9_pre20110614.ebuild | 69 |
2 files changed, 76 insertions, 1 deletions
diff --git a/x11-misc/pcmanfm/ChangeLog b/x11-misc/pcmanfm/ChangeLog index c7bd6ca26571..7813ce407474 100644 --- a/x11-misc/pcmanfm/ChangeLog +++ b/x11-misc/pcmanfm/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/pcmanfm # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/ChangeLog,v 1.56 2011/06/02 12:16:12 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/ChangeLog,v 1.57 2011/06/14 09:15:05 hwoarang Exp $ + +*pcmanfm-0.9.9_pre20110614 (14 Jun 2011) + + 14 Jun 2011; Markos Chandras <hwoarang@gentoo.org> + +pcmanfm-0.9.9_pre20110614.ebuild: + New snapshot 02 Jun 2011; Markus Meier <maekke@gentoo.org> pcmanfm-0.9.9_pre20110422.ebuild: diff --git a/x11-misc/pcmanfm/pcmanfm-0.9.9_pre20110614.ebuild b/x11-misc/pcmanfm/pcmanfm-0.9.9_pre20110614.ebuild new file mode 100644 index 000000000000..f0bf1764003f --- /dev/null +++ b/x11-misc/pcmanfm/pcmanfm-0.9.9_pre20110614.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/pcmanfm-0.9.9_pre20110614.ebuild,v 1.1 2011/06/14 09:15:05 hwoarang Exp $ + +EAPI=2 + +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="git://pcmanfm.git.sourceforge.net/gitroot/pcmanfm/${PN}" + inherit autotools git + SRC_URI="" +else + inherit autotools + SRC_URI="http://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~ppc ~x86" +fi + +inherit fdo-mime + +DESCRIPTION="Fast lightweight tabbed filemanager" +HOMEPAGE="http://pcmanfm.sourceforge.net/" + +LICENSE="GPL-2" +SLOT="0" +IUSE="debug" + +COMMON_DEPEND=">=dev-libs/glib-2.18:2 + >=x11-libs/gtk+-2.22.1:2 + >=lxde-base/menu-cache-0.3.2 + >=x11-libs/libfm-0.1.15_pre20110202" +RDEPEND="${COMMON_DEPEND} + virtual/eject" +DEPEND="${COMMON_DEPEND} + >=dev-util/intltool-0.40 + dev-util/pkgconfig + sys-devel/gettext" + +src_prepare() { + intltoolize --force --copy --automake || die + # Fix tests. Bug #357125 + for x in about autorun desktop-pref pref; do + echo data/ui/${x}.ui >> po/POTFILES.in + done + # Fix desktop icons + sed -i -e "/MimeType/s:=.*normal;:=:" data/${PN}.desktop.in \ + || die "failed to fix desktop icon" + eautoreconf +} + +src_configure() { + econf \ + --sysconfdir=/etc \ + $(use_enable debug) +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS +} + +pkg_postinst() { + fdo-mime_desktop_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 +} |