mirror of
https://bitbucket.org/smil3y/katana.git
synced 2025-02-24 02:42:47 +00:00
38 lines
1.5 KiB
Makefile
38 lines
1.5 KiB
Makefile
# https://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/
|
|
|
|
PORTNAME = katana-extraapps
|
|
DISTVERSION = 4.24.0.d20230809
|
|
CATEGORIES = devel x11
|
|
MAINTAINER = xakepa10@gmail.com
|
|
COMMENT = Katana extra applications
|
|
LICENSE = GPLv2 LGPL21
|
|
LICENSE_COMB = multi
|
|
|
|
MASTER_SITES = https://google.com/
|
|
DISTFILES = index.html
|
|
DIST_SUBDIR = ${PORTNAME}
|
|
WRKSRC = ${WRKDIR}/kde-extraapps.git
|
|
|
|
USES = compiler:c++11-lang pkgconfig cmake xorg gettext-tools libarchive desktop-file-utils
|
|
USE_XORG = x11 xrender xdamage xext xfixes
|
|
USE_GETTEXT_TOOLS = build run
|
|
USE_LIBARCHIVE = build
|
|
USE_LDCONFIG = yes
|
|
# NOTE: lrzsz (which katana-workspace depends on) conflicts with lrzip
|
|
RUN_DEPENDS = qemu-system-i386:emulators/qemu
|
|
LIB_DEPENDS = libKtCore.so:katana/katie libkdecore.so:katana/katanalibs \
|
|
libplasmagenericshell.so:katana/katana-workspace libdeflate.so:archivers/libdeflate \
|
|
libtag.so:audio/taglib libffmpegthumbnailer.so:multimedia/ffmpegthumbnailer \
|
|
libspectre.so:print/libspectre libfreetype.so:print/freetype2 \
|
|
libdjvulibre.so:graphics/djvulibre libepub.so:textproc/ebook-tools \
|
|
libpoppler-cpp.so:graphics/poppler
|
|
CMAKE_ARGS = -Wno-dev -DBUILD_partitionmanager=FALSE
|
|
LDFLAGS += -Wl,--as-needed
|
|
|
|
do-extract:
|
|
@rm -vrf ${WRKSRC}
|
|
# @git clone --depth=1 https://scm.osdn.net/gitroot/kde/kde-extraapps.git ${WRKSRC}
|
|
@git clone --depth=1 https://bitbucket.org/smil3y/kde-extraapps.git ${WRKSRC}
|
|
# @git clone --depth=1 https://github.com/fluxer/kde-extraapps.git ${WRKSRC}
|
|
|
|
.include <bsd.port.mk>
|