0ea52f99b4
USE_KDE4=kdehier component has been deprecated, new components added: baloo - Baloo core libraries baloo-widgets - Baloo widgets library kfilemetadata - KDE library for extracting file metadata New ports: graphics/kqtquickcharts - QtQuick plugin to render interactive charts misc/artikulate - Pronunciation trainer for KDE (not usable currently, links to both GStreamer 1.x and 0.10.x via dependencies) sysutils/baloo[-widgets] - KDE framework for searching and managing user metadata sysutils/kfilemetadata - Library for extracting file metadata l10n ports: - Farsi (Persian) and Indonesian translations has been readded - Vietnamese didn't pass threshold for inclusion into release astro/kstars: - switch dependency from math/eigen2 to math/eigen3 - add PYKDE option for updating supernovae data deskutils/kdepim4: - update dependencies: add libkgapi and baloo, remove now needless clucene, link-grammar, strigi - add patch to fix build with gcc42 - update COMMENT and description for all KDE PIM ports devel/ruby-krossruby: - remove BROKEN, it builds with ruby 2.x now editors/kate: - add patch to disable memory-hungry build of the kate tests [1] graphics/okular: - add dependency on graphics/libkscreen math/cantor: - add optional dependency on lang/luajit for LuaJIT backend - fix gfortran detection [2] misc/kdehier4: - adapt to new pkg world. Now the purpose of kdehier4 only to link some stuff between KDE4_PREFIX and LOCALBASE. science/kalzium: - switch dependency from math/eigen2 to math/eigen3 - add dependence on science/chemical-mime-data x11-themes/kdeartwork4 - switch dependency from math/eigen2 to math/eigen3 among other changes: - drop deprecated USE_KDE4=kdehier - drop @dirrm from plist - clean up pkg-descr - convert to options helpers - other portlint fixes The area51 repository features commits by alonso, rakuco and myself. PR: 187150 [1] Reported by: pe.freethread@live.com Patch by: Tobias Berner <tcberner@gmail.com> PR: 180674 [2] Reported by: torsten.eichstaedt@web.de PR: 194316 Exp-run: antoine
63 lines
1.6 KiB
Makefile
63 lines
1.6 KiB
Makefile
# Created by: Martin Wilke <miwi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kde-l10n
|
|
PORTVERSION= ${KDE4_VERSION}
|
|
CATEGORIES= misc kde
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Localized messages and documentation for KDE SC 4
|
|
|
|
NO_BUILD= yes
|
|
NO_INSTALL= yes
|
|
NO_MTREE= yes
|
|
USE_KDE4= kdeprefix
|
|
|
|
KDE4_LANG_ALL= ar bg bs ca ca@valencia cs da de el en_GB es et eu fa \
|
|
fi fr ga gl he hi hr hu ia id is it ja kk km ko lt lv mr nb \
|
|
nds nl nn pa pl pt pt_BR ro ru sk sl sr sv tr ug \
|
|
uk wa zh_CN zh_TW
|
|
|
|
ar_PORT= arabic/kde4-l10n
|
|
ca@valencia_PORT= misc/kde4-l10n-ca_valencia
|
|
de_PORT= german/kde4-l10n
|
|
fr_PORT= french/kde4-l10n
|
|
he_PORT= hebrew/kde4-l10n
|
|
hu_PORT= hungarian/kde4-l10n
|
|
ja_PORT= japanese/kde4-l10n
|
|
ko_PORT= korean/kde4-l10n
|
|
pl_PORT= polish/kde4-l10n
|
|
pt_BR_PORT= portuguese/kde4-l10n-pt_BR
|
|
pt_PORT= portuguese/kde4-l10n
|
|
ru_PORT= russian/kde4-l10n
|
|
uk_PORT= ukrainian/kde4-l10n
|
|
vi_PORT= vietnamese/kde4-l10n
|
|
zh_CN_PORT= chinese/kde4-l10n-zh_CN
|
|
zh_TW_PORT= chinese/kde4-l10n-zh_TW
|
|
|
|
.include <${.CURDIR}/files/kde4-lang-names>
|
|
# kde4-lang-names is encoded in UTF, override with plain ASCII:
|
|
nb_NAME= Norwegian Bokmal
|
|
|
|
OPTIONS_DEFINE= ALL ${LANG_OPT_ALL}
|
|
OPTIONS_DEFAULT= ALL
|
|
|
|
ALL_DESC= All localizations
|
|
|
|
.for lang in ${KDE4_LANG_ALL}
|
|
${lang}_DETECT?= ${KDE4_PREFIX}/share/locale/${lang}/entry.desktop
|
|
${lang}_PORT?= misc/kde4-l10n-${lang}
|
|
${lang}_NAME?= ${lang}
|
|
|
|
${lang}_OPT= ${lang:S/@/_/}
|
|
LANG_OPT_ALL+= ${${lang}_OPT}
|
|
${${lang}_OPT}_DESC= ${${lang}_NAME} localization
|
|
${${lang}_OPT}_RUN_DEPENDS= ${${lang}_DETECT}:${PORTSDIR}/${${lang}_PORT}
|
|
.endfor
|
|
|
|
.for opt in ${LANG_OPT_ALL}
|
|
ALL_RUN_DEPENDS+= ${${opt}_RUN_DEPENDS}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|