diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2014-02-06 04:02:34 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2014-02-06 04:02:34 +0800 |
commit | 49d0426775658567f7a89db550d2669569cf1d4e (patch) | |
tree | 189b501d8ccb8e47faa9267cea079d243f56dfdd /graphics/ufraw | |
parent | 4df3cc3770768f0230b58c36fbcc5155dcfde9e2 (diff) | |
download | freebsd-ports-gnome-49d0426775658567f7a89db550d2669569cf1d4e.tar.gz freebsd-ports-gnome-49d0426775658567f7a89db550d2669569cf1d4e.tar.zst freebsd-ports-gnome-49d0426775658567f7a89db550d2669569cf1d4e.zip |
- Bump PORTREVISION for astro/cfitsio shlib change
- While I'm here, convert to new LIB_DEPENDS format
PR: ports/185951
Submitted by: Florian Degner <f.degner@gmx.de>
Diffstat (limited to 'graphics/ufraw')
-rw-r--r-- | graphics/ufraw/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/graphics/ufraw/Makefile b/graphics/ufraw/Makefile index 3e69c751207b..14c20ddb0235 100644 --- a/graphics/ufraw/Makefile +++ b/graphics/ufraw/Makefile @@ -3,6 +3,7 @@ PORTNAME= ufraw PORTVERSION= 0.19.2 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -47,25 +48,25 @@ CONFIGURE_ARGS+= --enable-dst-correction .endif .if ${PORT_OPTIONS:MEXIV2} -LIB_DEPENDS+= exiv2:${PORTSDIR}/graphics/exiv2 +LIB_DEPENDS+= libexiv2.so:${PORTSDIR}/graphics/exiv2 .else PC_FALSE+= exiv2 .endif .if ${PORT_OPTIONS:MLENSFUN} -LIB_DEPENDS+= lensfun:${PORTSDIR}/graphics/lensfun +LIB_DEPENDS+= liblensfun.so:${PORTSDIR}/graphics/lensfun .else PC_FALSE+= lensfun .endif .if ${PORT_OPTIONS:MFITS} -LIB_DEPENDS+= cfitsio:${PORTSDIR}/astro/cfitsio +LIB_DEPENDS+= libcfitsio.so:${PORTSDIR}/astro/cfitsio .else PC_FALSE+= cfitsio .endif .if ${PORT_OPTIONS:MGIMP} -LIB_DEPENDS+= gimp-2.0:${PORTSDIR}/graphics/gimp-app +LIB_DEPENDS+= libgimp-2.0.so:${PORTSDIR}/graphics/gimp-app PLIST_SUB+= GIMP="" .else CONFIGURE_ARGS+=--without-gimp @@ -74,7 +75,7 @@ PLIST_SUB+= GIMP="@comment " .endif .if ${PORT_OPTIONS:MGTK2} -LIB_DEPENDS+= gtkimageview:${PORTSDIR}/x11-toolkits/gtkimageview +LIB_DEPENDS+= libgtkimageview.so:${PORTSDIR}/x11-toolkits/gtkimageview PLIST_SUB+= MGTK2="" .else PLIST_SUB+= MGTK2="@comment " |