CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
libpcre: updated to 8.40
[crossrootfs.git] / libpcre / Pkgfile
index dfab1eccf03789fc2198abce862694185856b5ba..95f159daf11991006d9bdf5cf27e842f1006149e 100644 (file)
@@ -5,31 +5,41 @@
 # Depends on:
 
 name=libpcre
-version=8.31
+version=8.40
 release=1
 source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$version.tar.bz2)
 
+
 build() {
   cd pcre-$version
 
   ./configure --build=$CHOST \
               --host=$CTARGET \
               --prefix=/usr \
-              --mandir=/usr/man \
               --enable-utf8 \
               --enable-unicode-properties \
-              --enable-jit
+              --enable-jit \
+              --with-sysroot=$CLFS
+
+  # get rid of host lib search dirs from Makefiles
+  for mk in $(find -name Makefile) ; do
+    sed -i 's|-L/usr/lib||' $mk
+  done
+
+  # use same type fix as done for gcc port, to prevent libtool
+  # from linking in host libraries
+  for lt_file in $(find -name 'libtool') ; do
+    sed -i 's/func_append add_dir \" /add_dir=\"/' $lt_file
+  done
+
 
   make
   make DESTDIR=$PKG install
   
   install -d $PKG/lib
-  local lib
-  for lib in libpcre libpcrecpp libpcreposix ; do
-    mv $PKG/usr/lib/${lib}.so* $PKG/lib
-    ln -sf ../../lib/$(readlink $PKG/lib/${lib}.so) $PKG/usr/lib/${lib}.so
-    rm $PKG/lib/${lib}.so
-  done
+  mv $PKG/usr/lib/libpcre.so.* $PKG/lib
+  ln -sf ../../lib/$(readlink $PKG/usr/lib/libpcre.so) $PKG/usr/lib/libpcre.so
 
-  rm -r $PKG/usr/share
+  rm -r $PKG/usr/share/doc
+  rm $PKG/usr/share/man/man3/{pcre{16,32}*,pcre_utf{16,32}*}
 }