aboutsummaryrefslogtreecommitdiff
path: root/libraries/libev/libev.SlackBuild
diff options
context:
space:
mode:
authorponce <matteo.bernardini@gmail.com>2012-05-28 09:54:18 +0200
committerRobby Workman <rworkman@slackbuilds.org>2012-08-21 08:55:33 -0500
commit4ff631ec0a3a1a336f9d5c328ca4c166f0b4ebc6 (patch)
treebfb25c716214505a974dc28efd17c3e37c9b7683 /libraries/libev/libev.SlackBuild
parentc983442ea0b7d411d6e3e1dfee0c1117d281fa41 (diff)
downloadslackbuilds-4ff631ec0a3a1a336f9d5c328ca4c166f0b4ebc6.tar.xz
libraries/libev: Updated for version 4.11.
This commit also moves the event.h header into /usr/include/libev/ to avoid conflicts with libevent (shouldn't break anything on SBo). Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries/libev/libev.SlackBuild')
-rw-r--r--libraries/libev/libev.SlackBuild9
1 files changed, 8 insertions, 1 deletions
diff --git a/libraries/libev/libev.SlackBuild b/libraries/libev/libev.SlackBuild
index 7090dcae37fc..c994d97a62f2 100644
--- a/libraries/libev/libev.SlackBuild
+++ b/libraries/libev/libev.SlackBuild
@@ -4,7 +4,7 @@
# Written by Šime Ramov <s@ramov.com>
PRGNAM=libev
-VERSION=${VERSION:-3.9}
+VERSION=${VERSION:-4.11}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -63,6 +63,13 @@ CXXFLAGS="$SLKCFLAGS" \
make
make install DESTDIR=$PKG
+# avoid conflicting with libevent, we move an header in a subfolder
+# and we will explicitly add CPPFLAGS="-I/usr/include/libev" when
+# building software depending on this, if needed: lighttpd2 and i3,
+# for example, don't need this header.
+mkdir -p $PKG/usr/include/libev
+mv $PKG/usr/include/event.h $PKG/usr/include/libev/
+
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true