diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2009-02-15 23:15:12 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2009-02-15 23:15:12 +0000 |
commit | e72f81fdfa73ab546697957df93c55ad992119a0 (patch) | |
tree | dbfeb11f7ceb2a62c36b4579ebcb3e77456512fc /dev-libs/libgamin | |
parent | app-editors/katoob removal (Pending January 21st) see bug 251566 for reference. (diff) | |
download | gentoo-2-e72f81fdfa73ab546697957df93c55ad992119a0.tar.gz gentoo-2-e72f81fdfa73ab546697957df93c55ad992119a0.tar.bz2 gentoo-2-e72f81fdfa73ab546697957df93c55ad992119a0.zip |
Fix QA warnings: poor programming practices, bug #257281
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libgamin')
-rw-r--r-- | dev-libs/libgamin/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/libgamin/files/libgamin-0.1.10-compilewarnings.patch | 22 | ||||
-rw-r--r-- | dev-libs/libgamin/libgamin-0.1.10-r2.ebuild | 76 |
3 files changed, 105 insertions, 1 deletions
diff --git a/dev-libs/libgamin/ChangeLog b/dev-libs/libgamin/ChangeLog index ca36eae2c281..2f3cec2df80d 100644 --- a/dev-libs/libgamin/ChangeLog +++ b/dev-libs/libgamin/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/libgamin # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgamin/ChangeLog,v 1.13 2009/02/07 01:30:42 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgamin/ChangeLog,v 1.14 2009/02/15 23:15:12 eva Exp $ + +*libgamin-0.1.10-r2 (15 Feb 2009) + + 15 Feb 2009; Gilles Dartiguelongue <eva@gentoo.org> + +files/libgamin-0.1.10-compilewarnings.patch, +libgamin-0.1.10-r2.ebuild: + Fix QA warnings: poor programming practices, bug #257281 07 Feb 2009; Jeroen Roovers <jer@gentoo.org> libgamin-0.1.10-r1.ebuild: Stable for HPPA (bug #252350). diff --git a/dev-libs/libgamin/files/libgamin-0.1.10-compilewarnings.patch b/dev-libs/libgamin/files/libgamin-0.1.10-compilewarnings.patch new file mode 100644 index 000000000000..d3e0931391a7 --- /dev/null +++ b/dev-libs/libgamin/files/libgamin-0.1.10-compilewarnings.patch @@ -0,0 +1,22 @@ +--- gamin-0.1.9/lib/gam_error.h.1 2007-08-15 01:09:13.000000000 +0200 ++++ gamin-0.1.9/lib/gam_error.h 2007-08-15 01:09:27.000000000 +0200 +@@ -47,6 +47,9 @@ + + int gam_errno(void); + ++void gam_error_init(void); ++void gam_error_check(void); ++ + #ifdef GAM_DEBUG_ENABLED + + #ifdef GAMIN_DEBUG_API +@@ -70,9 +73,6 @@ + const char* format, ...); + #define GAM_DEBUG if (gam_debug_active) gam_debug + +-void gam_error_init(void); +-void gam_error_check(void); +- + #else + /* + * no debug, redefine the macro empty content diff --git a/dev-libs/libgamin/libgamin-0.1.10-r2.ebuild b/dev-libs/libgamin/libgamin-0.1.10-r2.ebuild new file mode 100644 index 000000000000..34e491b5fefa --- /dev/null +++ b/dev-libs/libgamin/libgamin-0.1.10-r2.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2009 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.1 2009/02/15 23:15:12 eva Exp $ + +EAPI="2" + +inherit autotools eutils flag-o-matic libtool python + +MY_PN=${PN//lib/} +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Library providing the FAM File Alteration Monitor API" +HOMEPAGE="http://www.gnome.org/~veillard/gamin/" +SRC_URI="http://www.gnome.org/~veillard/${MY_PN}/sources/${MY_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" + +RESTRICT="test" # need gam-server + +RDEPEND="python? ( virtual/python ) + !app-admin/fam + !<app-admin/gamin-0.1.10" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + # Fix QA warnings, bug #257281, upstream #466791 + epatch "${FILESDIR}/${P}-compilewarnings.patch" + + # Fix compile warnings; bug #188923 + epatch "${FILESDIR}/${MY_PN}-0.1.9-freebsd.patch" + + # Fix collision problem due to intermediate library, upstream bug #530635 + epatch "${FILESDIR}/${P}-noinst-lib.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 + + # disable pyc compiling + mv "${S}"/py-compile "${S}"/py-compile.orig + ln -s $(type -P true) "${S}"/py-compile +} + +src_configure() { + econf --disable-debug \ + --disable-server \ + $(use_enable kernel_linux inotify) \ + $(use_enable debug debug-api) \ + $(use_with python) +} + +src_install() { + emake DESTDIR="${D}" install || die "installation failed" + + dodoc AUTHORS ChangeLog README TODO NEWS doc/*txt || die "dodoc failed" + dohtml doc/* || die "dohtml failed" +} + +pkg_postinst() { + if use python; then + python_version + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages + fi +} + +pkg_postrm() { + python_mod_cleanup /usr/$(get_libdir)/python*/site-packages +} |