mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
Announcement: https://kde.org/announcements/gear/25.04.0/ Ports changes: kde.mk: - Simplify KDE_APPS_BASED_PATCHLEVEL definition and generalize it for unstable branch. devel/kopeninghours: - Use custom PLIST_SUB to reduce churn on updates. editors/ghostwriter: - Drop upstreamed patch. games/khangman: - Drop upstreamed patch. math/kcalc: - Depend on math/mpc. multimedia/kdenlive: - Prevent fetching during build. - Depends on KF6 Purpose unconditionally and remove no-op OPTIONS_SUB. - Depend on OpenTimelineIO. net/krdc: - Switch to freerdp3. x11-fm/dolphin: - Fix abuse of PLIST_SUB. */*: - Add missing and update KF6 dependencies and Qt components.
45 lines
1.3 KiB
Makefile
45 lines
1.3 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 cpe desktop-file-utils gettext gl \
|
|
kde:6 libarchive qt:6 tar:xz xorg
|
|
USE_KDE= bookmarks colorscheme completion config configwidgets \
|
|
coreaddons crash dbusaddons doctools filemetadata i18n \
|
|
iconthemes itemviews jobwidgets kio parts pty service solid \
|
|
widgetsaddons windowsystem xmlgui \
|
|
ecm:build
|
|
USE_GL= gl opengl
|
|
USE_QT= base
|
|
USE_XORG= x11
|
|
USE_LDCONFIG= yes
|
|
|
|
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>
|