diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2011-08-10 11:29:29 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2011-08-10 11:29:29 +0000 |
commit | 3666b96c46da075a6f089e0ccbb8e77731cfb198 (patch) | |
tree | da94a3c715d12e6047fd0b22d00a5a01ae57252e /x11-libs | |
parent | Remove broken kernel, bug #378449 (diff) | |
download | gentoo-2-3666b96c46da075a6f089e0ccbb8e77731cfb198.tar.gz gentoo-2-3666b96c46da075a6f089e0ccbb8e77731cfb198.tar.bz2 gentoo-2-3666b96c46da075a6f089e0ccbb8e77731cfb198.zip |
Version bump
(Portage version: 2.2.0_alpha46/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/libfm/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/libfm/libfm-0.1.16.ebuild | 69 |
2 files changed, 75 insertions, 1 deletions
diff --git a/x11-libs/libfm/ChangeLog b/x11-libs/libfm/ChangeLog index 6b74b240ef5b..d3db6076f656 100644 --- a/x11-libs/libfm/ChangeLog +++ b/x11-libs/libfm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/libfm # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/ChangeLog,v 1.47 2011/08/10 10:19:22 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/ChangeLog,v 1.48 2011/08/10 11:29:29 hwoarang Exp $ + +*libfm-0.1.16 (10 Aug 2011) + + 10 Aug 2011; Markos Chandras <hwoarang@gentoo.org> +libfm-0.1.16.ebuild: + Version bump 10 Aug 2011; Markos Chandras <hwoarang@gentoo.org> libfm-0.1.15_pre20110422.ebuild, libfm-0.1.15_pre20110614.ebuild, diff --git a/x11-libs/libfm/libfm-0.1.16.ebuild b/x11-libs/libfm/libfm-0.1.16.ebuild new file mode 100644 index 000000000000..b8bdffa39ce7 --- /dev/null +++ b/x11-libs/libfm/libfm-0.1.16.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-libs/libfm/libfm-0.1.16.ebuild,v 1.1 2011/08/10 11:29:29 hwoarang Exp $ + +EAPI=4 + +inherit autotools fdo-mime + +DESCRIPTION="A library for file management" +HOMEPAGE="http://pcmanfm.sourceforge.net/" +SRC_URI="http://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz" + +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~x86 ~x86-linux" +LICENSE="GPL-2" +SLOT="0" +IUSE="debug doc examples udev" + +COMMON_DEPEND=">=dev-libs/glib-2.18:2 + >=x11-libs/gtk+-2.16:2 + udev? ( dev-libs/dbus-glib ) + >=lxde-base/menu-cache-0.3.2" +RDEPEND="${COMMON_DEPEND} + x11-misc/shared-mime-info + udev? ( sys-fs/udisks )" +DEPEND="${COMMON_DEPEND} + dev-util/gtk-doc-am + doc? ( + dev-util/gtk-doc + ) + >=dev-util/intltool-0.40 + dev-util/pkgconfig + sys-devel/gettext" + +src_prepare() { + if ! use doc; then + sed -ie '/SUBDIRS=/s#docs##' "${S}"/Makefile.am || die "sed failed" + sed -ie '/^[[:space:]]*docs/d' configure.ac || die "sed failed" + else + gtkdocize --copy || die + fi + eautoreconf +} + +src_configure() { + econf \ + --sysconfdir="${EPREFIX}/etc" \ + --disable-dependency-tracking \ + --disable-static \ + $(use_enable udev udisks) \ + $(use_enable examples demo) \ + $(use_enable debug) \ + # Documentation fails to build at the moment + # $(use_enable doc gtk-doc) \ + # $(use_enable doc gtk-doc-html) \ + --with-html-dir=/usr/share/doc/${PF}/html +} + +src_install() { + default + find "${D}" -name '*.la' -exec rm -f '{}' + +} + +pkg_postinst() { + fdo-mime_mime_database_update +} + +pkg_postrm() { + fdo-mime_mime_database_update +} |