Update for new BUILD_DIR and SRC_DIR variables
[hvlinux.git] / stage5 / pkg / xsane
index 2616f35..9356fed 100644 (file)
@@ -1,24 +1,14 @@
-#!/bin/sh
-set -o errexit
-
-# First argument of this script is the package name.
-
-# Reading system configuration informations, functions and package versions.
-source ../sysinfos
-source ../functions
-source ../packages-list
-
-# Applying patches (if any)
-apply_patches ${1}
-
-cd ${LFS_TMP}/${1}
-./configure \
-    --prefix=/usr
-make
-make install
-ldconfig
-
-# Adding link for GIMP plugin (Base GIMP version hardcoded for now)
-ln -v -sf /usr/bin/xsane /usr/lib/gimp/2.0/plug-ins/
-
-exit $?
+#!/bin/bash
+
+hvconfig_pre()
+{
+    sed -i -e 's/png_ptr->jmpbuf/png_jmpbuf(png_ptr)/' \
+        ${SRC_DIR}/src/xsane-save.c
+}
+
+hvbuild_post()
+{
+    # Adding link for GIMP plugin (Base GIMP version hardcoded for now)
+    rm -f /usr/lib/gimp/2.0/plug-ins/xsane
+    ln -sv /usr/bin/xsane /usr/lib/gimp/2.0/plug-ins
+}