summaryrefslogtreecommitdiff
path: root/manualPorts/libunistring
diff options
context:
space:
mode:
Diffstat (limited to 'manualPorts/libunistring')
-rw-r--r--manualPorts/libunistring/.footprint29
-rw-r--r--manualPorts/libunistring/.md5sum1
-rw-r--r--manualPorts/libunistring/.signature5
-rw-r--r--manualPorts/libunistring/Pkgfile18
-rwxr-xr-xmanualPorts/libunistring/lastVersion.sh8
5 files changed, 61 insertions, 0 deletions
diff --git a/manualPorts/libunistring/.footprint b/manualPorts/libunistring/.footprint
new file mode 100644
index 0000000..1314943
--- /dev/null
+++ b/manualPorts/libunistring/.footprint
@@ -0,0 +1,29 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/unicase.h
+-rw-r--r-- root/root usr/include/uniconv.h
+-rw-r--r-- root/root usr/include/unictype.h
+-rw-r--r-- root/root usr/include/unigbrk.h
+-rw-r--r-- root/root usr/include/unilbrk.h
+-rw-r--r-- root/root usr/include/uniname.h
+-rw-r--r-- root/root usr/include/uninorm.h
+-rw-r--r-- root/root usr/include/unistdio.h
+-rw-r--r-- root/root usr/include/unistr.h
+drwxr-xr-x root/root usr/include/unistring/
+-rw-r--r-- root/root usr/include/unistring/cdefs.h
+-rw-r--r-- root/root usr/include/unistring/iconveh.h
+-rw-r--r-- root/root usr/include/unistring/inline.h
+-rw-r--r-- root/root usr/include/unistring/localcharset.h
+-rw-r--r-- root/root usr/include/unistring/stdbool.h
+-rw-r--r-- root/root usr/include/unistring/stdint.h
+-rw-r--r-- root/root usr/include/unistring/version.h
+-rw-r--r-- root/root usr/include/unistring/woe32dll.h
+-rw-r--r-- root/root usr/include/unitypes.h
+-rw-r--r-- root/root usr/include/uniwbrk.h
+-rw-r--r-- root/root usr/include/uniwidth.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libunistring.a
+-rwxr-xr-x root/root usr/lib/libunistring.la
+lrwxrwxrwx root/root usr/lib/libunistring.so -> libunistring.so.2.1.0
+lrwxrwxrwx root/root usr/lib/libunistring.so.2 -> libunistring.so.2.1.0
+-rwxr-xr-x root/root usr/lib/libunistring.so.2.1.0
diff --git a/manualPorts/libunistring/.md5sum b/manualPorts/libunistring/.md5sum
new file mode 100644
index 0000000..cc5eec8
--- /dev/null
+++ b/manualPorts/libunistring/.md5sum
@@ -0,0 +1 @@
+0d3274e9838396b12200f8b54ddaf43b libunistring-0.9.10.tar.gz
diff --git a/manualPorts/libunistring/.signature b/manualPorts/libunistring/.signature
new file mode 100644
index 0000000..a3a33db
--- /dev/null
+++ b/manualPorts/libunistring/.signature
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/deepthought.pub
+RWQxCptPusLGGldgnGLVn/XQoWMFU8F0Gvbd8vD9b9o+cXfx3oq8RW08PwAl2k8jsDTymJYGEgelMEwS06M5ISgxx+xrsS2fhwg=
+SHA256 (Pkgfile) = cc4bfcba62f764793261d6adf4441fdb23e61e9b5f3b5af7a97dbabc3c19bf29
+SHA256 (.footprint) = 6505c49675146db15c2b1529271dcee82829630100d4b331ef477d95ab485de8
+SHA256 (libunistring-0.9.10.tar.gz) = a82e5b333339a88ea4608e4635479a1cfb2e01aafb925e1290b65710d43f610b
diff --git a/manualPorts/libunistring/Pkgfile b/manualPorts/libunistring/Pkgfile
new file mode 100644
index 0000000..fbd13e0
--- /dev/null
+++ b/manualPorts/libunistring/Pkgfile
@@ -0,0 +1,18 @@
+# Description: Manipulate unicode and C strings according to the Unicode Standard.
+# URL: http//www.gnu.org/software/libunistring
+# Maintainer: Erich Eckner, crux at eckner dot net
+# Depends on:
+
+name=libunistring
+version=0.9.10
+release=1
+source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr --mandir=/usr/share/man
+ make
+ make DESTDIR=$PKG install
+ rm -rf $PKG/usr/share
+ rm -rf $PKG/usr/info
+}
diff --git a/manualPorts/libunistring/lastVersion.sh b/manualPorts/libunistring/lastVersion.sh
new file mode 100755
index 0000000..5c21b00
--- /dev/null
+++ b/manualPorts/libunistring/lastVersion.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+curl "ftp://ftp.gnu.org/gnu/libunistring/" 2> /dev/null | \
+ awk '{print $9}' | \
+ grep "^libunistring-[0-9.-]*\.tar\.[xg]z\$" | \
+ sed "s|^libunistring-\([0-9.-]*\)\.tar\.[xg]z\$|\1|" | \
+ sort -V | \
+ tail -n1