From c12780e1bb9177de906288251faec5dce3013735 Mon Sep 17 00:00:00 2001 From: tnut Date: Fri, 18 Dec 2009 19:30:37 +0100 Subject: gamin, déplacé dans extra MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- base/gamin/.footprint | 27 --------------- base/gamin/.md5sum | 2 -- base/gamin/Pkgfile | 22 ------------ base/gamin/gamin-0.1.9-ucred-headers.patch | 52 ----------------------------- extra/gamin/.footprint | 27 +++++++++++++++ extra/gamin/.md5sum | 2 ++ extra/gamin/Pkgfile | 22 ++++++++++++ extra/gamin/gamin-0.1.9-ucred-headers.patch | 52 +++++++++++++++++++++++++++++ 8 files changed, 103 insertions(+), 103 deletions(-) delete mode 100644 base/gamin/.footprint delete mode 100644 base/gamin/.md5sum delete mode 100755 base/gamin/Pkgfile delete mode 100644 base/gamin/gamin-0.1.9-ucred-headers.patch create mode 100644 extra/gamin/.footprint create mode 100644 extra/gamin/.md5sum create mode 100755 extra/gamin/Pkgfile create mode 100644 extra/gamin/gamin-0.1.9-ucred-headers.patch diff --git a/base/gamin/.footprint b/base/gamin/.footprint deleted file mode 100644 index fbb25cd20..000000000 --- a/base/gamin/.footprint +++ /dev/null @@ -1,27 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/gam_server -drwxr-xr-x root/root usr/include/ --rw-r--r-- root/root usr/include/fam.h -drwxr-xr-x root/root usr/lib/ --rw-r--r-- root/root usr/lib/libfam.a --rwxr-xr-x root/root usr/lib/libfam.la -lrwxrwxrwx root/root usr/lib/libfam.so -> libfam.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libfam.so.0 -> libfam.so.0.0.0 --rwxr-xr-x root/root usr/lib/libfam.so.0.0.0 --rw-r--r-- root/root usr/lib/libgamin-1.a --rwxr-xr-x root/root usr/lib/libgamin-1.la -lrwxrwxrwx root/root usr/lib/libgamin-1.so -> libgamin-1.so.0.1.10 -lrwxrwxrwx root/root usr/lib/libgamin-1.so.0 -> libgamin-1.so.0.1.10 --rwxr-xr-x root/root usr/lib/libgamin-1.so.0.1.10 --rw-r--r-- root/root usr/lib/libgamin_shared.a -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/gamin.pc -drwxr-xr-x root/root usr/lib/python2.6/ -drwxr-xr-x root/root usr/lib/python2.6/site-packages/ --rw-r--r-- root/root usr/lib/python2.6/site-packages/_gamin.a --rwxr-xr-x root/root usr/lib/python2.6/site-packages/_gamin.la --rwxr-xr-x root/root usr/lib/python2.6/site-packages/_gamin.so --rw-r--r-- root/root usr/lib/python2.6/site-packages/gamin.py --rw-r--r-- root/root usr/lib/python2.6/site-packages/gamin.pyc --rw-r--r-- root/root usr/lib/python2.6/site-packages/gamin.pyo diff --git a/base/gamin/.md5sum b/base/gamin/.md5sum deleted file mode 100644 index 3c2d453c6..000000000 --- a/base/gamin/.md5sum +++ /dev/null @@ -1,2 +0,0 @@ -b4ec549e57da470c04edd5ec2876a028 gamin-0.1.10.tar.gz -82284f346a0b66bdd27c818b041b4871 gamin-0.1.9-ucred-headers.patch diff --git a/base/gamin/Pkgfile b/base/gamin/Pkgfile deleted file mode 100755 index 4a55b4589..000000000 --- a/base/gamin/Pkgfile +++ /dev/null @@ -1,22 +0,0 @@ -# Description: Surveillance de modification de fichiers -# URL: http://www.gnome.org/~veillard/gamin -# Maintainer: NuTyX core team -# Packager: thierryn1 at hispeed dot ch -# Depends on: python - -name=gamin -version=0.1.10 -release=1 -source=( http://www.gnome.org/~veillard/gamin/sources/$name-$version.tar.gz\ - gamin-0.1.9-ucred-headers.patch) - -build() { - cd $name-$version - patch -Np1 -i ../gamin-0.1.9-ucred-headers.patch - ./configure --prefix=/usr \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - --libexecdir=/usr/bin - make - make DESTDIR=$PKG install -} diff --git a/base/gamin/gamin-0.1.9-ucred-headers.patch b/base/gamin/gamin-0.1.9-ucred-headers.patch deleted file mode 100644 index 35b76e4a0..000000000 --- a/base/gamin/gamin-0.1.9-ucred-headers.patch +++ /dev/null @@ -1,52 +0,0 @@ -diff -up gamin-0.1.9/server/gam_channel.c.xxx gamin-0.1.9/server/gam_channel.c ---- gamin-0.1.9/server/gam_channel.c.xxx 2007-07-04 15:36:49.000000000 +0200 -+++ gamin-0.1.9/server/gam_channel.c 2008-02-14 10:00:38.654849392 +0100 -@@ -3,7 +3,6 @@ - #include - #include - #include --#include - #include - #include - #include -@@ -12,6 +11,14 @@ - #include "gam_channel.h" - #include "gam_protocol.h" - -+#ifdef HAVE_LINUX -+ /* Workaround for undefined struct ucred */ -+ #define __USE_GNU -+#endif -+ -+#include -+ -+ - /* #define CHANNEL_VERBOSE_DEBUGGING */ - /************************************************************************ - * * -diff -up gamin-0.1.9/libgamin/gam_api.c.xxx gamin-0.1.9/libgamin/gam_api.c ---- gamin-0.1.9/libgamin/gam_api.c.xxx 2007-07-04 15:36:48.000000000 +0200 -+++ gamin-0.1.9/libgamin/gam_api.c 2008-02-13 17:41:50.697896914 +0100 -@@ -11,7 +11,6 @@ - #include - #include - #include --#include - #include - #include - #include "fam.h" -@@ -20,6 +19,14 @@ - #include "gam_fork.h" - #include "gam_error.h" - -+#ifdef HAVE_LINUX -+ /* Workaround for undefined struct ucred */ -+ #define __USE_GNU -+#endif -+ -+#include -+ -+ - #define TEST_DEBUG - - #define MAX_RETRIES 25 diff --git a/extra/gamin/.footprint b/extra/gamin/.footprint new file mode 100644 index 000000000..fbb25cd20 --- /dev/null +++ b/extra/gamin/.footprint @@ -0,0 +1,27 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/gam_server +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/fam.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libfam.a +-rwxr-xr-x root/root usr/lib/libfam.la +lrwxrwxrwx root/root usr/lib/libfam.so -> libfam.so.0.0.0 +lrwxrwxrwx root/root usr/lib/libfam.so.0 -> libfam.so.0.0.0 +-rwxr-xr-x root/root usr/lib/libfam.so.0.0.0 +-rw-r--r-- root/root usr/lib/libgamin-1.a +-rwxr-xr-x root/root usr/lib/libgamin-1.la +lrwxrwxrwx root/root usr/lib/libgamin-1.so -> libgamin-1.so.0.1.10 +lrwxrwxrwx root/root usr/lib/libgamin-1.so.0 -> libgamin-1.so.0.1.10 +-rwxr-xr-x root/root usr/lib/libgamin-1.so.0.1.10 +-rw-r--r-- root/root usr/lib/libgamin_shared.a +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/gamin.pc +drwxr-xr-x root/root usr/lib/python2.6/ +drwxr-xr-x root/root usr/lib/python2.6/site-packages/ +-rw-r--r-- root/root usr/lib/python2.6/site-packages/_gamin.a +-rwxr-xr-x root/root usr/lib/python2.6/site-packages/_gamin.la +-rwxr-xr-x root/root usr/lib/python2.6/site-packages/_gamin.so +-rw-r--r-- root/root usr/lib/python2.6/site-packages/gamin.py +-rw-r--r-- root/root usr/lib/python2.6/site-packages/gamin.pyc +-rw-r--r-- root/root usr/lib/python2.6/site-packages/gamin.pyo diff --git a/extra/gamin/.md5sum b/extra/gamin/.md5sum new file mode 100644 index 000000000..3c2d453c6 --- /dev/null +++ b/extra/gamin/.md5sum @@ -0,0 +1,2 @@ +b4ec549e57da470c04edd5ec2876a028 gamin-0.1.10.tar.gz +82284f346a0b66bdd27c818b041b4871 gamin-0.1.9-ucred-headers.patch diff --git a/extra/gamin/Pkgfile b/extra/gamin/Pkgfile new file mode 100755 index 000000000..4a55b4589 --- /dev/null +++ b/extra/gamin/Pkgfile @@ -0,0 +1,22 @@ +# Description: Surveillance de modification de fichiers +# URL: http://www.gnome.org/~veillard/gamin +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: python + +name=gamin +version=0.1.10 +release=1 +source=( http://www.gnome.org/~veillard/gamin/sources/$name-$version.tar.gz\ + gamin-0.1.9-ucred-headers.patch) + +build() { + cd $name-$version + patch -Np1 -i ../gamin-0.1.9-ucred-headers.patch + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --libexecdir=/usr/bin + make + make DESTDIR=$PKG install +} diff --git a/extra/gamin/gamin-0.1.9-ucred-headers.patch b/extra/gamin/gamin-0.1.9-ucred-headers.patch new file mode 100644 index 000000000..35b76e4a0 --- /dev/null +++ b/extra/gamin/gamin-0.1.9-ucred-headers.patch @@ -0,0 +1,52 @@ +diff -up gamin-0.1.9/server/gam_channel.c.xxx gamin-0.1.9/server/gam_channel.c +--- gamin-0.1.9/server/gam_channel.c.xxx 2007-07-04 15:36:49.000000000 +0200 ++++ gamin-0.1.9/server/gam_channel.c 2008-02-14 10:00:38.654849392 +0100 +@@ -3,7 +3,6 @@ + #include + #include + #include +-#include + #include + #include + #include +@@ -12,6 +11,14 @@ + #include "gam_channel.h" + #include "gam_protocol.h" + ++#ifdef HAVE_LINUX ++ /* Workaround for undefined struct ucred */ ++ #define __USE_GNU ++#endif ++ ++#include ++ ++ + /* #define CHANNEL_VERBOSE_DEBUGGING */ + /************************************************************************ + * * +diff -up gamin-0.1.9/libgamin/gam_api.c.xxx gamin-0.1.9/libgamin/gam_api.c +--- gamin-0.1.9/libgamin/gam_api.c.xxx 2007-07-04 15:36:48.000000000 +0200 ++++ gamin-0.1.9/libgamin/gam_api.c 2008-02-13 17:41:50.697896914 +0100 +@@ -11,7 +11,6 @@ + #include + #include + #include +-#include + #include + #include + #include "fam.h" +@@ -20,6 +19,14 @@ + #include "gam_fork.h" + #include "gam_error.h" + ++#ifdef HAVE_LINUX ++ /* Workaround for undefined struct ucred */ ++ #define __USE_GNU ++#endif ++ ++#include ++ ++ + #define TEST_DEBUG + + #define MAX_RETRIES 25 -- cgit v1.2.3-54-g00ecf