diff options
Diffstat (limited to 'graphics/digikam/Makefile')
-rw-r--r-- | graphics/digikam/Makefile | 39 |
1 files changed, 26 insertions, 13 deletions
diff --git a/graphics/digikam/Makefile b/graphics/digikam/Makefile index 95c74965234e..0ea448097714 100644 --- a/graphics/digikam/Makefile +++ b/graphics/digikam/Makefile @@ -1,13 +1,14 @@ PORTNAME= digikam -DISTVERSION= 8.6.0 -PORTREVISION= 1 +DISTVERSION= 8.7.0 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} \ - https://files.kde.org/${PORTNAME}/%SUBDIR%/:aesthetic,autotags,face,yunet \ - https://kde-applicationdata.mirrors.omnilance.com/${PORTNAME}/%SUBDIR%/:aesthetic,autotags,face,yunet \ - https://mirrors.ocf.berkeley.edu/kde-applicationdata/${PORTNAME}/%SUBDIR%/:aesthetic,autotags,face,yunet + https://files.kde.org/${PORTNAME}/%SUBDIR%/:aitools,aesthetic,autotags,face,testimage,yunet \ + https://kde-applicationdata.mirrors.omnilance.com/${PORTNAME}/%SUBDIR%/:aitools,aesthetic,autotags,face,testimage,yunet \ + https://mirrors.ocf.berkeley.edu/kde-applicationdata/${PORTNAME}/%SUBDIR%/:aitools,aesthetic,autotags,face,testimage,yunet MASTER_SITE_SUBDIR= aestheticdetector/:aesthetic \ + aitools/:aitools \ autotags/:autotags \ + facesengine/:testimage \ facesengine/dnnface/:face \ facesengine/yunet/:yunet # One bit changed in the naming convention .. @@ -32,7 +33,7 @@ LIB_DEPENDS= libexiv2.so:graphics/exiv2 \ liblensfun.so:graphics/lensfun \ libopencv_core.so:graphics/opencv \ libheif.so:graphics/libheif \ - libpng.so:graphics/png \ + libpng16.so:graphics/png \ libtiff.so:graphics/tiff \ libx265.so:multimedia/x265 RUN_DEPENDS= exiftool:graphics/p5-Image-ExifTool @@ -43,13 +44,15 @@ USES= bison cmake compiler:c++20-lang desktop-file-utils eigen:3 \ USE_GL= opengl glu USE_GNOME= glib20 libxml2 libxslt USE_KDE= calendarcore colorscheme completion config configwidgets \ - coreaddons doctools filemetadata i18n iconthemes jobwidgets \ - kio libksane notifications notifyconfig service solid sonnet \ - texttemplate threadweaver widgetsaddons windowsystem xmlgui \ + coreaddons doctools filemetadata guiaddons i18n iconthemes \ + jobwidgets kio libksane notifications notifyconfig service \ + solid sonnet texttemplate threadweaver widgetsaddons \ + windowsystem xmlgui \ ecm:build USE_LDCONFIG= yes USE_QT= base declarative networkauth positioning scxml svg \ - webchannel webengine + webchannel webengine \ + imageformats:run USE_XORG= ice sm x11 xext SHEBANG_FILES= core/data/scripts/digitaglinktree/digitaglinktree @@ -69,7 +72,7 @@ WITH_CCACHE_BUILD= yes OPTIONS_DEFINE= KDEPIM MEDIAPLAYER OPTIONS_GROUP= DATA DATA_DESC= Binary data required for certain features -OPTIONS_GROUP_DATA= AESTHETIC AUTOTAGS FACEDETECT +OPTIONS_GROUP_DATA= AITOOLS AESTHETIC AUTOTAGS FACEDETECT OPTIONS_MULTI= DB DB_DESC= Database options OPTIONS_MULTI_DB= MYSQL MYSQL_INTERNAL SQLITE3 @@ -78,7 +81,10 @@ OPTIONS_DEFAULT= ${OPTIONS_DEFINE} \ OPTIONS_SUB= yes # Check core/data/dnnmodels/dnnmodels.conf for new and obsolete files -# for the AESTHETIC, AUTOTAGS and FACEDETECT options with each update. +# for the AITOOLS. AESTHETIC, AUTOTAGS and FACEDETECT options with each update. +AITOOLS_DESC= Install aitools (autorotate) data (~330 MiB) +AITOOLS_DISTFILES= deep-image-orientation-angle-detection.onnx:aitools + AESTHETIC_DESC= Install aesthetic detection data (~84 MiB) AESTHETIC_DISTFILES= weights_inceptionv3_299.pb:aesthetic @@ -90,7 +96,8 @@ AUTOTAGS_DISTFILES= classification_classes_ILSVRC2012.txt:autotags \ yolo11x.onnx:autotags FACEDETECT_DESC= Install face management data (~37 MiB) -FACEDETECT_DISTFILES= face_recognition_sface_2021dec.onnx:face \ +FACEDETECT_DISTFILES= dnntestimage.jpeg:testimage \ + face_recognition_sface_2021dec.onnx:face \ face_detection_yunet_2023mar.onnx:yunet KDEPIM_DESC= KDEPim Addressbook support @@ -116,6 +123,12 @@ MYSQL_INTERNAL_IMPLIES= MYSQL SQLITE3_USE= QT=sqldriver-sqlite:run +post-install-AITOOLS-on: + @${MKDIR} ${STAGEDIR}${DATADIR}/facesengine +.for f in ${AITOOLS_DISTFILES:C/:.*//} + ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${f} ${STAGEDIR}${DATADIR}/facesengine +.endfor + post-install-AESTHETIC-on: @${MKDIR} ${STAGEDIR}${DATADIR}/facesengine .for f in ${AESTHETIC_DISTFILES:C/:.*//} |