summaryrefslogtreecommitdiffstats
path: root/base/libev
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-02-02 20:19:57 +0100
committertnut <thierryn1 at hispeed dot ch>2010-02-02 20:19:57 +0100
commit75d43b981b54b7e54eb56893e5fdd83cc6dbbf73 (patch)
tree594188a6c160729e95ba4b2441fa002cfaf30784 /base/libev
parent7ab7b078079db0ec8713067bd21d26fb1df8ff62 (diff)
downloadnutyx-pakxe-75d43b981b54b7e54eb56893e5fdd83cc6dbbf73.tar.gz
nutyx-pakxe-75d43b981b54b7e54eb56893e5fdd83cc6dbbf73.tar.bz2
nutyx-pakxe-75d43b981b54b7e54eb56893e5fdd83cc6dbbf73.tar.xz
nutyx-pakxe-75d43b981b54b7e54eb56893e5fdd83cc6dbbf73.zip
libev, déplacé dans base et maj des manpage
Diffstat (limited to 'base/libev')
-rw-r--r--base/libev/.footprint15
-rw-r--r--base/libev/.md5sum1
-rw-r--r--base/libev/Pkgfile20
3 files changed, 36 insertions, 0 deletions
diff --git a/base/libev/.footprint b/base/libev/.footprint
new file mode 100644
index 000000000..f5aeeac1d
--- /dev/null
+++ b/base/libev/.footprint
@@ -0,0 +1,15 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/include/libev/
+-rw-r--r-- root/root usr/include/libev/ev++.h
+-rw-r--r-- root/root usr/include/libev/ev.h
+-rw-r--r-- root/root usr/include/libev/event.h
+drwxr-xr-x root/root usr/lib/
+-rwxr-xr-x root/root usr/lib/libev.la
+lrwxrwxrwx root/root usr/lib/libev.so -> libev.so.3.0.0
+lrwxrwxrwx root/root usr/lib/libev.so.3 -> libev.so.3.0.0
+-rwxr-xr-x root/root usr/lib/libev.so.3.0.0
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man3/
+-rw-r--r-- root/root usr/share/man/man3/ev.3.gz
diff --git a/base/libev/.md5sum b/base/libev/.md5sum
new file mode 100644
index 000000000..7c7a9a9eb
--- /dev/null
+++ b/base/libev/.md5sum
@@ -0,0 +1 @@
+8ad575ba379e3304b9b8b7e60a4ac0e0 libev-3.7.tar.gz
diff --git a/base/libev/Pkgfile b/base/libev/Pkgfile
new file mode 100644
index 000000000..32211f7e9
--- /dev/null
+++ b/base/libev/Pkgfile
@@ -0,0 +1,20 @@
+# Description: Modèle d'évènement à haute performance, etc.
+# URL: http://software.schmorp.de/pkg/libev
+# Packager: Bartlomiej Palmowski <rotwang at crux dot org dot pl>
+# Maintainer: Younes Hafri <ycrux@club-internet.fr>
+
+name=libev
+version=3.7
+release=2
+source=( http://dist.schmorp.de/$name/Attic/$name-$version.tar.gz )
+
+build () {
+ cd $name-$version
+ ./configure --prefix=/usr \
+ --includedir=$PKG/usr/include/libev \
+ --disable-static
+ # libev headers are installed to non standard dir
+ # due to libevent conflict
+ make
+ make prefix=$PKG/usr install
+}