Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/gam-server/
Date: Sun, 20 Feb 2022 05:27:33
Message-Id: 1645334698.8b0b20e339b05ce5a851af68f0653b48bcd57318.sam@gentoo
1 commit: 8b0b20e339b05ce5a851af68f0653b48bcd57318
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 20 05:05:50 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 20 05:24:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b0b20e3
7
8 app-admin/gam-server: drop 0.1.10-r2
9
10 Bug: https://bugs.gentoo.org/833737
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 app-admin/gam-server/gam-server-0.1.10-r2.ebuild | 88 ------------------------
14 1 file changed, 88 deletions(-)
15
16 diff --git a/app-admin/gam-server/gam-server-0.1.10-r2.ebuild b/app-admin/gam-server/gam-server-0.1.10-r2.ebuild
17 deleted file mode 100644
18 index 66a45bfa5661..000000000000
19 --- a/app-admin/gam-server/gam-server-0.1.10-r2.ebuild
20 +++ /dev/null
21 @@ -1,88 +0,0 @@
22 -# Copyright 1999-2022 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="5"
26 -
27 -GNOME_ORG_MODULE="gamin"
28 -GNOME_TARBALL_SUFFIX="bz2"
29 -inherit autotools epatch flag-o-matic multilib gnome.org
30 -
31 -DESCRIPTION="Library providing the FAM File Alteration Monitor API"
32 -HOMEPAGE="https://www.gnome.org/~veillard/gamin/"
33 -SRC_URI="${SRC_URI}
34 - mirror://gentoo/gamin-0.1.9-freebsd.patch.bz2
35 - https://pkgconfig.freedesktop.org/releases/pkg-config-0.26.tar.gz" # pkg.m4 for eautoreconf
36 -
37 -LICENSE="LGPL-2"
38 -SLOT="0"
39 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x86-solaris"
40 -IUSE="debug"
41 -
42 -RDEPEND=">=dev-libs/glib-2:2
43 - >=dev-libs/libgamin-0.1.10
44 - !app-admin/fam
45 - !<app-admin/gamin-0.1.10"
46 -
47 -DEPEND="${RDEPEND}"
48 -
49 -#S=${WORKDIR}/${MY_P}
50 -
51 -src_prepare() {
52 - mv -vf "${WORKDIR}"/pkg-config-*/pkg.m4 "${WORKDIR}"/ || die
53 -
54 - # Fix compile warnings; bug #188923
55 - epatch "${DISTDIR}/gamin-0.1.9-freebsd.patch.bz2"
56 -
57 - # Fix file-collision due to shared library, upstream bug #530635
58 - epatch "${FILESDIR}/${PN}-0.1.10-noinst-lib.patch"
59 -
60 - # Fix compilation with latest glib, bug #382783
61 - epatch "${FILESDIR}/${PN}-0.1.10-G_CONST_RETURN-removal.patch"
62 -
63 - # Fix crosscompilation issues, bug #267604
64 - epatch "${FILESDIR}/${PN}-0.1.10-crosscompile-fix.patch"
65 -
66 - # Enable linux specific features on armel, upstream bug #588338
67 - epatch "${FILESDIR}/${P}-armel-features.patch"
68 -
69 - # Fix deadlocks with glib-2.32, bug #413331, upstream #667230
70 - epatch "${FILESDIR}/${P}-ih_sub_cancel-deadlock.patch"
71 -
72 - # Drop DEPRECATED flags
73 - sed -i -e 's:-DG_DISABLE_DEPRECATED:$(NULL):g' server/Makefile.am || die
74 -
75 - sed -i \
76 - -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' \
77 - -e 's:AM_PROG_CC_STDC:AC_PROG_CC:' \
78 - configure.in || die #466948
79 -
80 - # autoconf is required as the user-cflags patch modifies configure.in
81 - # however, elibtoolize is also required, so when the above patch is
82 - # removed, replace the following call with a call to elibtoolize
83 - AT_M4DIR="${WORKDIR}" eautoreconf
84 -}
85 -
86 -src_configure() {
87 - # fixes bug 225403
88 - #append-flags "-D_GNU_SOURCE"
89 -
90 - # Solaris' patchs adds this to configure, but it conflicts with
91 - # Gentoo's FreeBSD patch.
92 - [[ ${CHOST} == *-solaris* ]] && append-libs socket nsl
93 -
94 - if ! has_version virtual/pkgconfig; then
95 - export DAEMON_CFLAGS="-I${EPREFIX}/usr/include/glib-2.0 -I${EPREFIX}/usr/$(get_libdir)/glib-2.0/include"
96 - export DAEMON_LIBS="-lglib-2.0"
97 - fi
98 -
99 - econf \
100 - --disable-debug \
101 - --disable-libgamin \
102 - --without-python \
103 - $(use_enable kernel_linux inotify) \
104 - $(use_enable debug debug-api)
105 -}
106 -
107 -src_install() {
108 - emake DESTDIR="${D}" install
109 -}