summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2007-02-04 04:56:48 +0000
committerMart Raudsepp <leio@gentoo.org>2007-02-04 04:56:48 +0000
commit2c1ef51163eb62f1ec8cf47cc134a84ae23adaf5 (patch)
treeffc6d5298830e05194d9b80c388433b009db2c50 /app-admin/gamin/gamin-0.1.7.ebuild
parentUpdate to the newer version, keeping the wakeup fix and in-process applets on... (diff)
downloadgnome-perf-2c1ef51163eb62f1ec8cf47cc134a84ae23adaf5.tar.gz
gnome-perf-2c1ef51163eb62f1ec8cf47cc134a84ae23adaf5.tar.bz2
gnome-perf-2c1ef51163eb62f1ec8cf47cc134a84ae23adaf5.zip
Remove gamin from here. Version 0.1.8 in portage should contain all the perf and wakeup fixes and more
Diffstat (limited to 'app-admin/gamin/gamin-0.1.7.ebuild')
-rw-r--r--app-admin/gamin/gamin-0.1.7.ebuild73
1 files changed, 0 insertions, 73 deletions
diff --git a/app-admin/gamin/gamin-0.1.7.ebuild b/app-admin/gamin/gamin-0.1.7.ebuild
deleted file mode 100644
index eea8abe..0000000
--- a/app-admin/gamin/gamin-0.1.7.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/gamin/gamin-0.1.7.ebuild,v 1.15 2006/03/31 23:53:04 flameeyes Exp $
-
-inherit autotools eutils libtool
-
-DESCRIPTION="Library providing the FAM File Alteration Monitor API"
-HOMEPAGE="http://www.gnome.org/~veillard/gamin/"
-SRC_URI="http://www.gnome.org/~veillard/gamin/sources/${P}.tar.gz
- kernel_FreeBSD? ( mirror://gentoo/${P}-freebsd.patch.bz2 )"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
-IUSE="debug doc"
-
-RDEPEND=">=dev-libs/glib-2
- !app-admin/fam"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-PROVIDE="virtual/fam"
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}
-
- # Patches from Fedora Core 6 - http://cvs.fedora.redhat.com/viewcvs/rpms/gamin/devel/gamin.spec?rev=1.53&view=auto
- # They should be all upstream now, but "cvs diff -rTAG -Ddate" hates me and loaning these separate patches is easier
- epatch "${FILESDIR}/${PN}-dont-close-fd.patch"
- epatch "${FILESDIR}/${PN}-stdin-devnull.patch"
- epatch "${FILESDIR}/${PN}-flush-buffer-on-reset.patch"
- epatch "${FILESDIR}/${PN}-0.1.7-sigaction.patch"
- epatch "${FILESDIR}/${PN}-new-inotify-backend.patch"
- epatch "${FILESDIR}/${PN}-inotify-fix.patch"
- epatch "${FILESDIR}/${PN}-timer-on-demand.patch"
- epatch "${FILESDIR}/${PN}-no-timers.patch"
-
- use kernel_FreeBSD && epatch "${DISTDIR}/${P}-freebsd.patch.bz2"
-
- # Do not remove
- elibtoolize
-
- # New inotify backend changes Makefile.am (maybe others do too)
- eautoreconf
-}
-
-src_compile() {
- econf \
- $(use_enable kernel_linux inotify) \
- $(use_enable debug) \
- $(use_enable debug debug-api) \
- || die "econf failed"
-
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
-
- dodoc AUTHORS ChangeLog README TODO NEWS doc/*txt
- use doc && dohtml doc/*
-}
-
-pkg_postinst() {
- if use kernel_linux; then
- einfo "It is strongly suggested you use Gamin with an inotify enabled"
- einfo "kernel for best performance. For this release of gamin you need"
- einfo "at least gentoo-sources-2.6.13 or later."
- fi
-}