X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage5%2Fpkg%2Fxsane;h=4e1db05766ac0e6ca860e02e54e7e51d27023751;hb=59d689076b8aa617893e6fc647d7c0c0ecd5902a;hp=2616f3584eb214e9866c5409ea615f4d370d1472;hpb=3dae4c554ec18f465eb6ee5e6efdbdbe8557e13c;p=hvlinux.git diff --git a/stage5/pkg/xsane b/stage5/pkg/xsane index 2616f35..4e1db05 100644 --- a/stage5/pkg/xsane +++ b/stage5/pkg/xsane @@ -1,24 +1,13 @@ -#!/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)/' ${LFS_TMP}/${PACKAGE}/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 +}