diff options
Diffstat (limited to 'x11-libs/libfm/libfm-0.1.15_pre20110422.ebuild')
-rw-r--r-- | x11-libs/libfm/libfm-0.1.15_pre20110422.ebuild | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/x11-libs/libfm/libfm-0.1.15_pre20110422.ebuild b/x11-libs/libfm/libfm-0.1.15_pre20110422.ebuild new file mode 100644 index 000000000000..5e38c9c7db6d --- /dev/null +++ b/x11-libs/libfm/libfm-0.1.15_pre20110422.ebuild @@ -0,0 +1,86 @@ +# 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.15_pre20110422.ebuild,v 1.1 2011/04/22 09:07:20 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="~amd64 ~arm ~ppc ~x86" + S="${WORKDIR}" +fi + +inherit fdo-mime + +DESCRIPTION="A library for file management" +HOMEPAGE="http://pcmanfm.sourceforge.net/" + +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} + doc? ( + dev-util/gtk-doc + dev-util/gtk-doc-am + ) + >=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 + intltoolize --force --copy --automake || die + #disable unused translations. Bug #356029 + for trans in app-chooser ask-rename exec-file file-prop preferred-apps \ + progress;do + echo "data/ui/"${trans}.ui >> po/POTFILES.in + done + eautoreconf +} + +src_configure() { + econf \ + --sysconfdir=/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() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS TODO + + find "${D}" -name '*.la' -exec rm -f '{}' + +} + +pkg_postinst() { + fdo-mime_mime_database_update +} + +pkg_postrm() { + fdo-mime_mime_database_update +} |