0c2dea861b
KDE Gear 23.04.2 Thursday, 8 June 2023 Over 120 individual programs plus dozens of programmer libraries and feature plugins are released simultaneously as part of KDE Gear. Today they all get new bugfix source releases with updated translations, including: * konsole: Adjust selection point coords when scrollback shrinks * neochat: Focus message search window's search field by default * yakuake: Prevent unnecessary tab switching when closing a tab Changelog: https://kde.org/announcements/changelogs/gear/23.04.2/
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
PORTNAME= ark
|
|
DISTVERSION= ${KDE_APPLICATIONS_VERSION}
|
|
CATEGORIES= archivers kde kde-applications
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Archiving tool for KDE
|
|
WWW= https://utils.kde.org/projects/ark/
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
USES= cmake compiler:c++11-lang desktop-file-utils gettext libarchive kde:5 \
|
|
cpe qt:5 tar:xz xorg
|
|
USE_KDE= archive auth bookmarks codecs completion config configwidgets \
|
|
coreaddons crash dbusaddons doctools i18n iconthemes \
|
|
itemmodels itemviews jobwidgets khtml kio parts pty service \
|
|
solid sonnet textwidgets widgetsaddons windowsystem xmlgui \
|
|
ecm:build
|
|
USE_QT= concurrent core dbus gui network widgets xml \
|
|
buildtools:build qmake:build
|
|
USE_XORG= x11
|
|
USE_LDCONFIG= yes
|
|
|
|
PATCH_STRIP= -p1
|
|
|
|
OPTIONS_DEFINE= 7ZIP RAR ZIP DOCS
|
|
OPTIONS_DEFAULT= 7ZIP ZIP DOCS
|
|
OPTIONS_DEFAULT_i386= RAR
|
|
OPTIONS_DEFAULT_amd64= RAR
|
|
OPTIONS_SUB= YES
|
|
|
|
# The 7ZIP and RAR options only need runtime dependencies;
|
|
# the port builds identically with or without them.
|
|
7ZIP_DESC= Support for 7-Zip archives (runtime)
|
|
7ZIP_RUN_DEPENDS= 7zz:archivers/7-zip
|
|
|
|
RAR_DESC= Support for RAR archives (runtime)
|
|
RAR_RUN_DEPENDS= unrar:archivers/unrar \
|
|
rar:archivers/rar
|
|
|
|
ZIP_DESC= Support for ZIP archives
|
|
ZIP_LIB_DEPENDS= libzip.so:archivers/libzip
|
|
ZIP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibZip
|
|
|
|
# Override shared library version
|
|
KDE_APPLICATIONS_SHLIB_VER= ${KDE_APPLICATIONS_VERSION}
|
|
|
|
.include <bsd.port.mk>
|