summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-08-01 19:33:12 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-08-01 19:33:12 +0000
commite601fdfa28303934e51b4e82275970e945ada5b6 (patch)
tree23f790f60e56d161d10e72007b9254ddfcbb29ff /app-admin/gamin
parentwhitespace (diff)
downloadgentoo-2-e601fdfa28303934e51b4e82275970e945ada5b6.tar.gz
gentoo-2-e601fdfa28303934e51b4e82275970e945ada5b6.tar.bz2
gentoo-2-e601fdfa28303934e51b4e82275970e945ada5b6.zip
remove old
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'app-admin/gamin')
-rw-r--r--app-admin/gamin/ChangeLog6
-rw-r--r--app-admin/gamin/gamin-0.1.9-r1.ebuild71
-rw-r--r--app-admin/gamin/gamin-0.1.9.ebuild52
3 files changed, 5 insertions, 124 deletions
diff --git a/app-admin/gamin/ChangeLog b/app-admin/gamin/ChangeLog
index c79c0e8b4cfa..561ba20fc47c 100644
--- a/app-admin/gamin/ChangeLog
+++ b/app-admin/gamin/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-admin/gamin
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/gamin/ChangeLog,v 1.98 2009/04/28 18:14:30 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/gamin/ChangeLog,v 1.99 2009/08/01 19:33:12 darkside Exp $
+
+ 01 Aug 2009; Jeremy Olexa <darkside@gentoo.org> -gamin-0.1.9.ebuild,
+ -gamin-0.1.9-r1.ebuild:
+ remove old
28 Apr 2009; Raúl Porcel <armin76@gentoo.org> gamin-0.1.10.ebuild:
m68k stable
diff --git a/app-admin/gamin/gamin-0.1.9-r1.ebuild b/app-admin/gamin/gamin-0.1.9-r1.ebuild
deleted file mode 100644
index eb1c6f5516a3..000000000000
--- a/app-admin/gamin/gamin-0.1.9-r1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/gamin/gamin-0.1.9-r1.ebuild,v 1.10 2008/09/21 11:47:00 vapier Exp $
-
-inherit autotools eutils flag-o-matic libtool python
-
-DESCRIPTION="Library providing the FAM File Alteration Monitor API"
-HOMEPAGE="http://www.gnome.org/~veillard/gamin/"
-SRC_URI="http://www.gnome.org/~veillard/${PN}/sources/${P}.tar.gz"
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
-IUSE="debug kernel_linux python"
-
-RDEPEND=">=dev-libs/glib-2
- python? ( virtual/python )
- !app-admin/fam"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-PROVIDE="virtual/fam"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Fix compile warnings; bug #188923
- epatch "${FILESDIR}"/${P}-compile-warnings.patch
- epatch "${FILESDIR}/${P}-user-cflags.patch"
- epatch "${FILESDIR}/${P}-freebsd.patch"
-
- # autoconf is required as the user-cflags patch modifies configure.in
- # however, elibtoolize is also required, so when the above patch is
- # removed, replace the following call with a call to elibtoolize
- eautoreconf
-}
-
-src_compile() {
- # fixes bug 225403
- append-flags "-D_GNU_SOURCE"
-
- econf --disable-debug \
- $(use_enable kernel_linux inotify) \
- $(use_enable debug debug-api) \
- $(use_with python) \
- || die "econf failed"
-
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
-
- dodoc AUTHORS ChangeLog README TODO NEWS doc/*txt
- dohtml doc/*
-}
-
-pkg_postinst() {
- if use python; then
- python_version
- python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages
- fi
-}
-
-pkg_postrm() {
- if use python; then
- python_version
- python_mod_cleanup /usr/$(get_libdir)/python${PYVER}/site-packages
- fi
-}
diff --git a/app-admin/gamin/gamin-0.1.9.ebuild b/app-admin/gamin/gamin-0.1.9.ebuild
deleted file mode 100644
index 0d7e51f2640e..000000000000
--- a/app-admin/gamin/gamin-0.1.9.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/gamin/gamin-0.1.9.ebuild,v 1.16 2009/03/18 14:37:03 ricmm 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"
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
-IUSE="debug kernel_linux"
-
-RDEPEND=">=dev-libs/glib-2
- !app-admin/fam"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-PROVIDE="virtual/fam"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Fix compile warnings; bug #188923
- epatch "${FILESDIR}"/${P}-compile-warnings.patch
- epatch "${FILESDIR}/${P}-user-cflags.patch"
- epatch "${FILESDIR}/${P}-freebsd.patch"
-
- # autoconf is required as the user-cflags patch modifies configure.in
- # however, elibtoolize is also required, so when the above patch is
- # removed, replace the following call with a call to elibtoolize
- eautoreconf
-}
-
-src_compile() {
- econf --disable-debug \
- $(use_enable kernel_linux inotify) \
- $(use_enable debug debug-api) \
- || die "econf failed"
-
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
-
- dodoc AUTHORS ChangeLog README TODO NEWS doc/*txt
- dohtml doc/*
-}