summaryrefslogtreecommitdiff
path: root/repo/rarian
diff options
context:
space:
mode:
Diffstat (limited to 'repo/rarian')
-rw-r--r--repo/rarian/rarian.xibuild35
-rw-r--r--repo/rarian/user-segfault.patch14
2 files changed, 49 insertions, 0 deletions
diff --git a/repo/rarian/rarian.xibuild b/repo/rarian/rarian.xibuild
new file mode 100644
index 0000000..854539f
--- /dev/null
+++ b/repo/rarian/rarian.xibuild
@@ -0,0 +1,35 @@
+#!/bin/sh
+
+NAME="rarian"
+DESC="Documentation meta-data library, designed as a replacement for Scrollkeeper."
+
+MAKEDEPS="libxslt"
+
+PKG_VER=0.8.1
+SOURCE="https://download.gnome.org/sources/rarian/0.8/rarian-$PKG_VER.tar.bz2"
+
+ADDITIONAL="
+user-segfault.patch
+"
+
+prepare() {
+ cd "$BUILD_ROOT"
+ apply_patches
+}
+
+build() {
+ cd "$BUILD_ROOT"
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --enable-scrollkeeper-compat \
+ --disable-static
+ make
+}
+
+package() {
+ cd "$BUILD_ROOT"
+ make -j1 DESTDIR="$PKG_DEST" install
+}
+
diff --git a/repo/rarian/user-segfault.patch b/repo/rarian/user-segfault.patch
new file mode 100644
index 0000000..29ab1e5
--- /dev/null
+++ b/repo/rarian/user-segfault.patch
@@ -0,0 +1,14 @@
+--- rarian-0.8.1/util/rarian-sk-get-cl.cpp~ 2008-07-28 19:23:28.000000000 +0200
++++ rarian-0.8.1/util/rarian-sk-get-cl.cpp 2008-07-28 19:23:28.000000000 +0200
+@@ -160,6 +160,11 @@
+ {
+ char *filename = NULL;
+ char *user = getenv ("USERNAME");
++
++ if (user == NULL) {
++ user = getenv ("USER");
++ }
++
+ char *basepath = NULL;
+ int i=0;
+ int last = 0;