# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libgamin/libgamin-0.1.10-r2.ebuild,v 1.18 2012/04/30 14:29:54 grobian Exp $ EAPI="3" PYTHON_DEPEND="python? 2" SUPPORT_PYTHON_ABIS="1" RESTRICT_PYTHON_ABIS="3.* *-jython" GNOME_ORG_MODULE="gamin" inherit autotools eutils flag-o-matic libtool python gnome.org DESCRIPTION="Library providing the FAM File Alteration Monitor API" HOMEPAGE="http://www.gnome.org/~veillard/gamin/" SRC_URI="${SRC_URI} mirror://gentoo/gamin-0.1.9-freebsd.patch.bz2 http://dev.gentoo.org/~grobian/patches/libgamin-0.1.10-opensolaris.patch.bz2 http://pkgconfig.freedesktop.org/releases/pkg-config-0.26.tar.gz" # pkg.m4 for eautoreconf LICENSE="LGPL-2" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris" IUSE="debug kernel_linux python static-libs" RESTRICT="test" # needs gam-server RDEPEND="!app-admin/fam !py-compile } src_configure() { econf \ $(use_enable static-libs static) \ --disable-debug \ --disable-server \ $(use_enable kernel_linux inotify) \ $(use_enable debug debug-api) \ $(use_with python) } src_compile() { default if use python; then python_copy_sources python building() { emake \ PYTHON_INCLUDES="${EPREFIX}$(python_get_includedir)" \ PYTHON_SITE_PACKAGES="${EPREFIX}$(python_get_sitedir)" \ PYTHON_VERSION="$(python_get_version)" } python_execute_function -s --source-dir python building fi } src_install() { emake DESTDIR="${D}" install || die if use python; then installation() { emake \ DESTDIR="${D}" \ PYTHON_SITE_PACKAGES="${EPREFIX}$(python_get_sitedir)" \ PYTHON_VERSION="$(python_get_version)" \ install } python_execute_function -s --source-dir python installation python_clean_installation_image fi dodoc AUTHORS ChangeLog README TODO NEWS doc/*txt || die dohtml doc/* || die find "${D}" -name '*.la' -exec rm -f {} + } pkg_postinst() { if use python; then python_mod_optimize gamin.py fi } pkg_postrm() { if use python; then python_mod_cleanup gamin.py fi }