diff options
Diffstat (limited to 'graphics/ufraw/ufraw.SlackBuild')
-rw-r--r-- | graphics/ufraw/ufraw.SlackBuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/ufraw/ufraw.SlackBuild b/graphics/ufraw/ufraw.SlackBuild index 4f89bcbb51..6a77d6f771 100644 --- a/graphics/ufraw/ufraw.SlackBuild +++ b/graphics/ufraw/ufraw.SlackBuild @@ -26,7 +26,7 @@ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM="ufraw" -VERSION=${VERSION:-0.21} +VERSION=${VERSION:-0.22} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -86,6 +86,9 @@ CXXFLAGS="$SLKCFLAGS" \ --localstatedir=/var \ --mandir=/usr/man \ --enable-mime \ + --enable-extras \ + --enable-dst-correction \ + --enable-contrast \ --build=$ARCH-slackware-linux \ $gtk_option @@ -95,6 +98,9 @@ make install DESTDIR=$PKG find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +# remove dcraw executable - we have a separate package in SBo which provides this. +rm -f $PKG/usr/bin/dcraw + find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $(find $PKG/usr/man -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done |