diff options
Diffstat (limited to 'freebsd/applications/office')
22 files changed, 732 insertions, 0 deletions
diff --git a/freebsd/applications/office/Makefile b/freebsd/applications/office/Makefile new file mode 100644 index 000000000..e5996973c --- /dev/null +++ b/freebsd/applications/office/Makefile @@ -0,0 +1,9 @@ + + SUBDIR = + SUBDIR += basket + SUBDIR += kbibtex + SUBDIR += kbookreader + SUBDIR += knowit + SUBDIR += tellico + +.include <bsd.port.subdir.mk> diff --git a/freebsd/applications/office/basket/Makefile b/freebsd/applications/office/basket/Makefile new file mode 100644 index 000000000..ed373eb9d --- /dev/null +++ b/freebsd/applications/office/basket/Makefile @@ -0,0 +1,37 @@ +# -*-mode: makefile-*- +# Created by: [email protected] +# $FreeBSD$ +# + +.include <../../../trinity.port.mk> + +PORTNAME= basket-trinity +COMMENT= Multi-purpose note-taking application for Trinity +TDE_PREVERSION= +MASTER_SITE_SUBDIR= b/${PORTNAME} +PORTREVISION= 0 +CATEGORIES= deskutils x11 +DIST_SUBDIR= TDE/applications/office + + +BUILD_DEPENDS+= ${TDE_PREFIX}/lib/libtdecore.so:${PORTSDIR}/x11/trinity/core/tdelibs \ + ${TDE_PREFIX}/lib/libkontact.so:${PORTSDIR}/x11/trinity/core/tdepim + +LIB_DEPENDS+= libtqt.so:${PORTSDIR}/x11/trinity/dependencies/tqtinterface + +LIB_DEPENDS+=\ + libgpgme.so:${PORTSDIR}/security/gpgme \ + +# Build +post-patch: tde-pathfix + +do-configure: tde-cmake-prepare + ${TDE_CMAKE_CONFIGURE} \ + -DBUILD_ALL="ON" \ + -DWITH_ALL_OPTIONS="ON" + +do-build: tde-cmake-build + +do-install: tde-cmake-install + +.include <bsd.port.mk> diff --git a/freebsd/applications/office/basket/distinfo b/freebsd/applications/office/basket/distinfo new file mode 100644 index 000000000..7971b5fb7 --- /dev/null +++ b/freebsd/applications/office/basket/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1635215761 +SHA256 (TDE/applications/office/basket-trinity_14.0.11.orig.tar.xz) = 0a23465b5b9c452fb7cb67f04015f846047b9b7add56a9508ba4b86f37ed9caf +SIZE (TDE/applications/office/basket-trinity_14.0.11.orig.tar.xz) = 3614936 diff --git a/freebsd/applications/office/basket/files/patch-bp000-fix-crash-on-export-basket-archive.diff b/freebsd/applications/office/basket/files/patch-bp000-fix-crash-on-export-basket-archive.diff new file mode 100644 index 000000000..172333cf3 --- /dev/null +++ b/freebsd/applications/office/basket/files/patch-bp000-fix-crash-on-export-basket-archive.diff @@ -0,0 +1,60 @@ +commit 6ccb5528ecff0cf0db5fe2f81b26a79959e87902 +Author: Slávek Banko <[email protected]> +Date: Fri Oct 29 03:47:53 2021 +0200 + + Prevent null pointer deference in methods for selection. + This resolves the crash when exporting the Basket archive. + + Signed-off-by: Slávek Banko <[email protected]> + (cherry picked from commit a08c6ac9e3c8ac162ce08b730fd6108e2f71213c) + +diff --git a/src/archive.cpp b/src/archive.cpp +index 3f3377c..aec789f 100644 +--- a/src/archive.cpp ++++ b/src/archive.cpp +@@ -228,7 +228,8 @@ void Archive::saveBasketToArchive(Basket *basket, bool recursive, KTar *tar, TQS + + // Recursively save child baskets: + BasketListViewItem *item = Global::bnpView->listViewItemForBasket(basket); +- if (recursive && item->firstChild()) { ++ if (recursive && item && item->firstChild()) ++ { + for (BasketListViewItem *child = (BasketListViewItem*) item->firstChild(); child; child = (BasketListViewItem*) child->nextSibling()) { + saveBasketToArchive(child->basket(), recursive, tar, backgrounds, tempFolder, progress); + } +diff --git a/src/basket.cpp b/src/basket.cpp +index a4edb31..67107d2 100644 +--- a/src/basket.cpp ++++ b/src/basket.cpp +@@ -4469,12 +4469,20 @@ void Basket::noteUngroup() + + void Basket::unplugSelection(NoteSelection *selection) + { ++ if (!selection) ++ { ++ return; ++ } + for (NoteSelection *toUnplug = selection->firstStacked(); toUnplug; toUnplug = toUnplug->nextStacked()) + unplugNote(toUnplug->note); + } + + void Basket::insertSelection(NoteSelection *selection, Note *after) + { ++ if (!selection) ++ { ++ return; ++ } + for (NoteSelection *toUnplug = selection->firstStacked(); toUnplug; toUnplug = toUnplug->nextStacked()) { + if (toUnplug->note->isGroup()) { + Note *group = new Note(this); +@@ -4496,6 +4504,10 @@ void Basket::insertSelection(NoteSelection *selection, Note *after) + + void Basket::selectSelection(NoteSelection *selection) + { ++ if (!selection) ++ { ++ return; ++ } + for (NoteSelection *toUnplug = selection->firstStacked(); toUnplug; toUnplug = toUnplug->nextStacked()) { + if (toUnplug->note->isGroup()) + selectSelection(toUnplug); diff --git a/freebsd/applications/office/basket/pkg-descr b/freebsd/applications/office/basket/pkg-descr new file mode 100644 index 000000000..65566a566 --- /dev/null +++ b/freebsd/applications/office/basket/pkg-descr @@ -0,0 +1,9 @@ +Multi-purpose note-taking application for Trinity + +This application provides as many baskets (drawers) as you wish; Several +kinds of objects (texts, URLs, images,...) can be drag-n-drop'd into it. + +Objects can be edited, copied, dragged... So, they can be arranged according to users' taste. Moreover, Basket allows you to keep all objects +you want in one place, keep data on hand, take notes... + +Homepage: http://basket.kde.org/ diff --git a/freebsd/applications/office/basket/pkg-plist b/freebsd/applications/office/basket/pkg-plist new file mode 100644 index 000000000..4586f04d9 --- /dev/null +++ b/freebsd/applications/office/basket/pkg-plist @@ -0,0 +1,125 @@ +bin/basket +lib/libbasketcommon.la +lib/libbasketcommon.so +lib/trinity/basketthumbcreator.la +lib/trinity/basketthumbcreator.so +lib/trinity/kcm_basket.la +lib/trinity/kcm_basket.so +lib/trinity/libbasketpart.la +lib/trinity/libbasketpart.so +lib/trinity/libkontact_basket.la +lib/trinity/libkontact_basket.so +share/applications/tde/basket.desktop +share/apps/basket/backgrounds/abstract.png +share/apps/basket/backgrounds/alien-artifact.png +share/apps/basket/backgrounds/alien-artifact.png.config +share/apps/basket/backgrounds/basket-title.png +share/apps/basket/backgrounds/green-curves.png +share/apps/basket/backgrounds/light.png +share/apps/basket/backgrounds/painting.png +share/apps/basket/backgrounds/pens.png +share/apps/basket/backgrounds/pins.png +share/apps/basket/backgrounds/previews/abstract.png +share/apps/basket/backgrounds/previews/alien-artifact.png +share/apps/basket/backgrounds/previews/basket-title.png +share/apps/basket/backgrounds/previews/green-curves.png +share/apps/basket/backgrounds/previews/light.png +share/apps/basket/backgrounds/previews/painting.png +share/apps/basket/backgrounds/previews/pens.png +share/apps/basket/backgrounds/previews/pins.png +share/apps/basket/backgrounds/previews/rainbow-balls.png +share/apps/basket/backgrounds/previews/rounds-line.png +share/apps/basket/backgrounds/previews/strings.png +share/apps/basket/backgrounds/previews/todo.png +share/apps/basket/backgrounds/previews/working.png +share/apps/basket/backgrounds/rainbow-balls.png +share/apps/basket/backgrounds/rounds-line.png +share/apps/basket/backgrounds/strings.png +share/apps/basket/backgrounds/todo.png +share/apps/basket/backgrounds/working.png +share/apps/basket/basket_part.rc +share/apps/basket/basketui.rc +share/apps/basket/images/insertion_help.png +share/apps/basket/images/tag_export_help.png +share/apps/basket/images/tag_export_on_every_lines_help.png +share/apps/basket/welcome/Welcome_de.baskets +share/apps/basket/welcome/Welcome_en_US.baskets +share/apps/basket/welcome/Welcome_fr.baskets +share/apps/basket/welcome/Welcome_it.baskets +share/apps/basket/welcome/Welcome_ja.baskets +share/apps/basket/welcome/Welcome_nn.baskets +share/apps/basket/welcome/Welcome_pt.baskets +share/apps/basket/welcome/Welcome_ru.baskets +share/apps/kontact/ksettingsdialog/kontact_basketplugin.setdlg +share/config/magic/basket.magic +share/config/magic/basket.magic.mgc +share/doc/tde/HTML/en/basket/common +share/doc/tde/HTML/en/basket/index.cache.bz2 +share/doc/tde/HTML/en/basket/index.docbook +share/icons/crystalsvg/128x128/apps/basket.png +share/icons/crystalsvg/128x128/mimetypes/baskets.png +share/icons/crystalsvg/128x128/mimetypes/baskett.png +share/icons/crystalsvg/16x16/actions/likeback_bug.png +share/icons/crystalsvg/16x16/actions/likeback_dislike.png +share/icons/crystalsvg/16x16/actions/likeback_feature.png +share/icons/crystalsvg/16x16/actions/likeback_like.png +share/icons/crystalsvg/16x16/actions/tag_checkbox.png +share/icons/crystalsvg/16x16/actions/tag_checkbox_checked.png +share/icons/crystalsvg/16x16/actions/tag_for_later.png +share/icons/crystalsvg/16x16/actions/tag_fun.png +share/icons/crystalsvg/16x16/actions/tag_important.png +share/icons/crystalsvg/16x16/actions/tag_preference_bad.png +share/icons/crystalsvg/16x16/actions/tag_preference_excelent.png +share/icons/crystalsvg/16x16/actions/tag_preference_good.png +share/icons/crystalsvg/16x16/actions/tag_priority_high.png +share/icons/crystalsvg/16x16/actions/tag_priority_low.png +share/icons/crystalsvg/16x16/actions/tag_priority_medium.png +share/icons/crystalsvg/16x16/actions/tag_progress_000.png +share/icons/crystalsvg/16x16/actions/tag_progress_025.png +share/icons/crystalsvg/16x16/actions/tag_progress_050.png +share/icons/crystalsvg/16x16/actions/tag_progress_075.png +share/icons/crystalsvg/16x16/actions/tag_progress_100.png +share/icons/crystalsvg/16x16/apps/basket.png +share/icons/crystalsvg/16x16/mimetypes/baskets.png +share/icons/crystalsvg/16x16/mimetypes/baskett.png +share/icons/crystalsvg/22x22/apps/basket.png +share/icons/crystalsvg/22x22/mimetypes/baskets.png +share/icons/crystalsvg/22x22/mimetypes/baskett.png +share/icons/crystalsvg/32x32/apps/basket.png +share/icons/crystalsvg/32x32/mimetypes/baskets.png +share/icons/crystalsvg/32x32/mimetypes/baskett.png +share/icons/crystalsvg/48x48/apps/basket.png +share/icons/crystalsvg/48x48/mimetypes/baskets.png +share/icons/crystalsvg/48x48/mimetypes/baskett.png +share/icons/crystalsvg/64x64/apps/basket.png +share/icons/crystalsvg/64x64/mimetypes/baskets.png +share/icons/crystalsvg/64x64/mimetypes/baskett.png +share/icons/crystalsvg/scalable/apps/basket.svg +share/locale/cs/LC_MESSAGES/basket.mo +share/locale/da/LC_MESSAGES/basket.mo +share/locale/de/LC_MESSAGES/basket.mo +share/locale/es/LC_MESSAGES/basket.mo +share/locale/fr/LC_MESSAGES/basket.mo +share/locale/it/LC_MESSAGES/basket.mo +share/locale/ja/LC_MESSAGES/basket.mo +share/locale/nl/LC_MESSAGES/basket.mo +share/locale/nn/LC_MESSAGES/basket.mo +share/locale/pl_PL/LC_MESSAGES/basket.mo +share/locale/pt/LC_MESSAGES/basket.mo +share/locale/ru/LC_MESSAGES/basket.mo +share/locale/sk/LC_MESSAGES/basket.mo +share/locale/tr/LC_MESSAGES/basket.mo +share/locale/uk/LC_MESSAGES/basket.mo +share/locale/zh_CN/LC_MESSAGES/basket.mo +share/locale/zh_TW/LC_MESSAGES/basket.mo +share/man/man1/basket.1.gz +share/mimelnk/application/x-basket-archive.desktop +share/mimelnk/application/x-basket-template.desktop +share/services/basket_config_apps.desktop +share/services/basket_config_baskets.desktop +share/services/basket_config_general.desktop +share/services/basket_config_new_notes.desktop +share/services/basket_config_notes_appearance.desktop +share/services/basket_part.desktop +share/services/basketthumbcreator.desktop +share/services/kontact/basket.desktop diff --git a/freebsd/applications/office/kbibtex/Makefile b/freebsd/applications/office/kbibtex/Makefile new file mode 100644 index 000000000..b7c51762d --- /dev/null +++ b/freebsd/applications/office/kbibtex/Makefile @@ -0,0 +1,37 @@ +# -*-mode: makefile-*- +# Created by: [email protected] +# $FreeBSD$ +# + +.include <../../../trinity.port.mk> + +PORTNAME= kbibtex-trinity +COMMENT= BibTeX editor for TDE +TDE_PREVERSION= +MASTER_SITE_SUBDIR= k/${PORTNAME} +PORTREVISION= 0 +CATEGORIES= x11 +DIST_SUBDIR= TDE/applications/office + + +BUILD_DEPENDS+= ${TDE_PREFIX}/lib/libtdecore.so:${PORTSDIR}/x11/trinity/core/tdelibs + +LIB_DEPENDS+= libtqt.so:${PORTSDIR}/x11/trinity/dependencies/tqtinterface + +LIB_DEPENDS+=\ + libxslt.so:${PORTSDIR}/textproc/libxslt \ + libyaz.so:${PORTSDIR}/net/yaz \ + +# Build +post-patch: tde-pathfix + +do-configure: tde-cmake-prepare + ${TDE_CMAKE_CONFIGURE} \ + -DBUILD_ALL="ON" \ + -DWITH_ALL_OPTIONS="ON" + +do-build: tde-cmake-build + +do-install: tde-cmake-install + +.include <bsd.port.mk> diff --git a/freebsd/applications/office/kbibtex/distinfo b/freebsd/applications/office/kbibtex/distinfo new file mode 100644 index 000000000..4f9f54567 --- /dev/null +++ b/freebsd/applications/office/kbibtex/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1635216124 +SHA256 (TDE/applications/office/kbibtex-trinity_14.0.11.orig.tar.xz) = 820b7230848b69f206b1a1f47b7fe8c987e0794d27bb4beeb25d233de9643739 +SIZE (TDE/applications/office/kbibtex-trinity_14.0.11.orig.tar.xz) = 285632 diff --git a/freebsd/applications/office/kbibtex/pkg-descr b/freebsd/applications/office/kbibtex/pkg-descr new file mode 100644 index 000000000..a7600726c --- /dev/null +++ b/freebsd/applications/office/kbibtex/pkg-descr @@ -0,0 +1,13 @@ +BibTeX editor for TDE + +An application to manage bibliography databases in the BibTeX format. KBibTeX +can be used as a standalone program, but can also be embedded into other TDE. +applications (e.g. as bibliography editor into Kile). + +KBibTeX can query online ressources (e.g. Google scholar) via customizable. +search URLs. It is also able to import complete datasets from NCBI Pubmed. +It also supports tagging references with keywords and manages references to +local files. + +BibTeX files can be exported into HTML, XML, PDF, PS and RTF format using a. +number of citation styles. diff --git a/freebsd/applications/office/kbibtex/pkg-plist b/freebsd/applications/office/kbibtex/pkg-plist new file mode 100644 index 000000000..069f863bf --- /dev/null +++ b/freebsd/applications/office/kbibtex/pkg-plist @@ -0,0 +1,27 @@ +bin/kbibtex +lib/trinity/libkbibtexpart.la +lib/trinity/libkbibtexpart.so +share/applications/tde/kbibtex.desktop +share/apps/kbibtex/kbibtex_shell.rc +share/apps/kbibtex/z3950-servers.cfg +share/apps/kbibtexpart/kbibtex_part.rc +share/apps/kbibtexpart/xslt/MARC21slim2MODS3.xsl +share/apps/kbibtexpart/xslt/MARC21slimUtils.xsl +share/apps/kbibtexpart/xslt/UNIMARC2MODS3.xsl +share/apps/kbibtexpart/xslt/html.xsl +share/doc/tde/HTML/en/kbibtex/common +share/doc/tde/HTML/en/kbibtex/index.cache.bz2 +share/doc/tde/HTML/en/kbibtex/index.docbook +share/icons/hicolor/128x128/apps/kbibtex.png +share/icons/hicolor/16x16/apps/kbibtex.png +share/icons/hicolor/22x22/apps/kbibtex.png +share/icons/hicolor/32x32/apps/kbibtex.png +share/icons/hicolor/48x48/apps/kbibtex.png +share/icons/hicolor/64x64/apps/kbibtex.png +share/locale/de/LC_MESSAGES/kbibtex.mo +share/locale/fr/LC_MESSAGES/kbibtex.mo +share/locale/it/LC_MESSAGES/kbibtex.mo +share/locale/pl/LC_MESSAGES/kbibtex.mo +share/locale/ru/LC_MESSAGES/kbibtex.mo +share/man/man1/kbibtex.1.gz +share/services/kbibtex_part.desktop diff --git a/freebsd/applications/office/kbookreader/Makefile b/freebsd/applications/office/kbookreader/Makefile new file mode 100644 index 000000000..6b6fea85c --- /dev/null +++ b/freebsd/applications/office/kbookreader/Makefile @@ -0,0 +1,33 @@ +# -*-mode: makefile-*- +# Created by: [email protected] +# $FreeBSD$ +# + +.include <../../../trinity.port.mk> + +PORTNAME= kbookreader-trinity +COMMENT= eBook reader for Trinity +TDE_PREVERSION= +MASTER_SITE_SUBDIR= k/${PORTNAME} +PORTREVISION= 0 +CATEGORIES= x11 +DIST_SUBDIR= TDE/applications/office + + +BUILD_DEPENDS+= ${TDE_PREFIX}/lib/libtdecore.so:${PORTSDIR}/x11/trinity/core/tdelibs + +LIB_DEPENDS+= libtqt.so:${PORTSDIR}/x11/trinity/dependencies/tqtinterface + +# Build +post-patch: tde-pathfix + +do-configure: tde-cmake-prepare + ${TDE_CMAKE_CONFIGURE} \ + -DBUILD_ALL="ON" \ + -DWITH_ALL_OPTIONS="ON" + +do-build: tde-cmake-build + +do-install: tde-cmake-install + +.include <bsd.port.mk> diff --git a/freebsd/applications/office/kbookreader/distinfo b/freebsd/applications/office/kbookreader/distinfo new file mode 100644 index 000000000..8f98521af --- /dev/null +++ b/freebsd/applications/office/kbookreader/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1635216175 +SHA256 (TDE/applications/office/kbookreader-trinity_14.0.11.orig.tar.xz) = 7e4b34318f6f525b032a50581c3874ea99dbab40dea2b505f2ca538135c2ac5b +SIZE (TDE/applications/office/kbookreader-trinity_14.0.11.orig.tar.xz) = 121896 diff --git a/freebsd/applications/office/kbookreader/pkg-descr b/freebsd/applications/office/kbookreader/pkg-descr new file mode 100644 index 000000000..a0e08ae4b --- /dev/null +++ b/freebsd/applications/office/kbookreader/pkg-descr @@ -0,0 +1,4 @@ +eBook reader for Trinity + +kbookreader is an application which allows you to view eBooks +within the Trinity Desktop Environment diff --git a/freebsd/applications/office/kbookreader/pkg-plist b/freebsd/applications/office/kbookreader/pkg-plist new file mode 100644 index 000000000..02d0c4a52 --- /dev/null +++ b/freebsd/applications/office/kbookreader/pkg-plist @@ -0,0 +1,16 @@ +bin/kbookreader +bin/kbookreader_client +share/applications/tde/kbookreader.desktop +share/apps/kbookreader/kbookreaderui.rc +share/apps/kbookreader/themes/default/bg.png +share/apps/kbookreader/themes/default/bookmark.png +share/apps/kbookreader/themes/default/splash.png +share/config.kcfg/kbookreader.kcfg +share/doc/tde/HTML/en/kbookreader/common +share/doc/tde/HTML/en/kbookreader/index.cache.bz2 +share/doc/tde/HTML/en/kbookreader/index.docbook +share/icons/hicolor/16x16/apps/kbookreader.png +share/icons/hicolor/32x32/apps/kbookreader.png +share/locale/cs/LC_MESSAGES/kbookreader.mo +share/locale/de/LC_MESSAGES/kbookreader.mo +share/locale/nl/LC_MESSAGES/kbookreader.mo diff --git a/freebsd/applications/office/knowit/Makefile b/freebsd/applications/office/knowit/Makefile new file mode 100644 index 000000000..36cd6f972 --- /dev/null +++ b/freebsd/applications/office/knowit/Makefile @@ -0,0 +1,34 @@ +# -*-mode: makefile-*- +# Created by: [email protected] +# $FreeBSD$ +# + +.include <../../../trinity.port.mk> + +PORTNAME= knowit-trinity +COMMENT= Tool for managing notes [Trinity] +TDE_PREVERSION= +MASTER_SITE_SUBDIR= k/${PORTNAME} +PORTREVISION= 0 +CATEGORIES= x11 +DIST_SUBDIR= TDE/applications/office + + +BUILD_DEPENDS+= ${TDE_PREFIX}/lib/libtdecore.so:${PORTSDIR}/x11/trinity/core/tdelibs + +LIB_DEPENDS+= libtqt.so:${PORTSDIR}/x11/trinity/dependencies/tqtinterface + + +# Build +post-patch: tde-pathfix + +do-configure: tde-cmake-prepare + ${TDE_CMAKE_CONFIGURE} \ + -DBUILD_ALL="ON" \ + -DWITH_ALL_OPTIONS="ON" + +do-build: tde-cmake-build + +do-install: tde-cmake-install + +.include <bsd.port.mk> diff --git a/freebsd/applications/office/knowit/distinfo b/freebsd/applications/office/knowit/distinfo new file mode 100644 index 000000000..3ac69cbbb --- /dev/null +++ b/freebsd/applications/office/knowit/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1635216256 +SHA256 (TDE/applications/office/knowit-trinity_14.0.11.orig.tar.xz) = 4acb05a20137a125b4d4d3b96e5fd7da660ffee335c7db34aeba9b9b5836bbc4 +SIZE (TDE/applications/office/knowit-trinity_14.0.11.orig.tar.xz) = 97308 diff --git a/freebsd/applications/office/knowit/pkg-descr b/freebsd/applications/office/knowit/pkg-descr new file mode 100644 index 000000000..ea3d4f35c --- /dev/null +++ b/freebsd/applications/office/knowit/pkg-descr @@ -0,0 +1,5 @@ +Tool for managing notes [Trinity] + +KnowIt is a tool for managing notes which are organized in +tree-like hierarchy. It is similar to TuxCards, +but TDE-based, and requires Trinity. diff --git a/freebsd/applications/office/knowit/pkg-plist b/freebsd/applications/office/knowit/pkg-plist new file mode 100644 index 000000000..b0db5f54b --- /dev/null +++ b/freebsd/applications/office/knowit/pkg-plist @@ -0,0 +1,21 @@ +bin/knowit +share/applications/tde/knowit.desktop +share/apps/knowit/knowitui.rc +share/apps/knowit/tips +share/doc/tde/HTML/en/knowit/common +share/doc/tde/HTML/en/knowit/index.cache.bz2 +share/doc/tde/HTML/en/knowit/index.docbook +share/doc/tde/HTML/en/knowit/screenshot.png +share/icons/hicolor/16x16/apps/knowit.png +share/icons/hicolor/32x32/apps/knowit.png +share/locale/de/LC_MESSAGES/knowit.mo +share/locale/es/LC_MESSAGES/knowit.mo +share/locale/fr/LC_MESSAGES/knowit.mo +share/locale/hu/LC_MESSAGES/knowit.mo +share/locale/nl/LC_MESSAGES/knowit.mo +share/locale/pl/LC_MESSAGES/knowit.mo +share/locale/ru/LC_MESSAGES/knowit.mo +share/locale/sk/LC_MESSAGES/knowit.mo +share/locale/zh_CN/LC_MESSAGES/knowit.mo +share/man/man1/knowit.1.gz +share/mimelnk/application/x-knowit.desktop diff --git a/freebsd/applications/office/tellico/Makefile b/freebsd/applications/office/tellico/Makefile new file mode 100644 index 000000000..8f597c35f --- /dev/null +++ b/freebsd/applications/office/tellico/Makefile @@ -0,0 +1,49 @@ +# -*-mode: makefile-*- +# Created by: [email protected] +# $FreeBSD$ +# + +.include <../../../trinity.port.mk> + +PORTNAME= tellico-trinity +COMMENT= Collection manager for books, videos, music [Trinity] +TDE_PREVERSION= +MASTER_SITE_SUBDIR= t/${PORTNAME} +PORTREVISION= 0 +CATEGORIES= x11 +DIST_SUBDIR= TDE/applications/office + + +BUILD_DEPENDS+= ${TDE_PREFIX}/lib/libtdecore.so:${PORTSDIR}/x11/trinity/core/tdelibs \ + ${TDE_PREFIX}/lib/libkcal.so:${PORTSDIR}/x11/trinity/core/tdepim \ + ${TDE_PREFIX}/lib/libkcddb.so:${PORTSDIR}/x11/trinity/core/tdemultimedia \ + ${TDE_PREFIX}/lib/libpoppler-tqt.so:${PORTSDIR}/x11/trinity/core/tdegraphics \ + +LIB_DEPENDS+= libtqt.so:${PORTSDIR}/x11/trinity/dependencies/tqtinterface + +BUILD_DEPENDS+= \ + ${LOCALBASE}/include/linux/videodev2.h:${PORTSDIR}/multimedia/v4l_compat \ + +LIB_DEPENDS+=\ + libbtparse.so:${PORTSDIR}/textproc/btparse \ + libexempi.so:${PORTSDIR}/textproc/exempi \ + libtag.so:${PORTSDIR}/audio/taglib \ + libxml2.so:${PORTSDIR}/textproc/libxml2 \ + libxslt.so:${PORTSDIR}/textproc/libxslt \ + libyaz.so:${PORTSDIR}/net/yaz \ + +# Build +post-patch: tde-pathfix + +do-configure: tde-cmake-prepare + ${TDE_CMAKE_CONFIGURE} \ + -DBUILD_ALL="ON" \ + -DWITH_ALL_OPTIONS="ON" + +do-build: tde-cmake-build + +post-build: tde-cmake-check + +do-install: tde-cmake-install + +.include <bsd.port.mk> diff --git a/freebsd/applications/office/tellico/distinfo b/freebsd/applications/office/tellico/distinfo new file mode 100644 index 000000000..8f6d1ce36 --- /dev/null +++ b/freebsd/applications/office/tellico/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1635216281 +SHA256 (TDE/applications/office/tellico-trinity_14.0.11.orig.tar.xz) = d51eadcedd9143cb7acc6f8953863699a67d64a884869e6c055086f899b01e00 +SIZE (TDE/applications/office/tellico-trinity_14.0.11.orig.tar.xz) = 2855480 diff --git a/freebsd/applications/office/tellico/pkg-descr b/freebsd/applications/office/tellico/pkg-descr new file mode 100644 index 000000000..0b62571bd --- /dev/null +++ b/freebsd/applications/office/tellico/pkg-descr @@ -0,0 +1,14 @@ +Collection manager for books, videos, music [Trinity] + +Tellico is a collection manager for TDE. It includes default collections for +books, bibliographies, comic books, videos, music, coins, stamps, trading +cards, and wines, and also allows custom collections; with unlimited +user-defined fields allowed. Automatically formatted names, sorting by any +property, filters, automatic ISBN validation and full customization for +printing or display through XSLT files are some of the features present. It +can import CSV, RIS, BibTeX, and BibTeXML files; and export CSV, HTML, BibTeX, +BibTeXML, and PilotDB. Tellico can also import data from Amazon, IMDb, CDDB, +or any US-MARC compliant z39.50 server. + +The files are stored in XML format, avoiding the need for database server. +It also makes it easy for other softwares to use the Tellico data. diff --git a/freebsd/applications/office/tellico/pkg-plist b/freebsd/applications/office/tellico/pkg-plist new file mode 100644 index 000000000..6906f6fa1 --- /dev/null +++ b/freebsd/applications/office/tellico/pkg-plist @@ -0,0 +1,224 @@ +bin/tellico +share/applications/tde/tellico.desktop +share/apps/tdeconf_update/tellico-1-3-update.pl +share/apps/tdeconf_update/tellico-rename.upd +share/apps/tdeconf_update/tellico.upd +share/apps/tellico/MARC21slim2MODS3.xsl +share/apps/tellico/MARC21slimUtils.xsl +share/apps/tellico/UNIMARC2MODS3.xsl +share/apps/tellico/amazon2tellico.xsl +share/apps/tellico/arxiv2tellico.xsl +share/apps/tellico/bibtex-translation.xml +share/apps/tellico/bluray-logo.png +share/apps/tellico/cassette-logo.png +share/apps/tellico/cd-logo.png +share/apps/tellico/crossref2tellico.xsl +share/apps/tellico/data-sources/boardgamegeek.rb +share/apps/tellico/data-sources/boardgamegeek.rb.spec +share/apps/tellico/data-sources/dark_horse_comics.py +share/apps/tellico/data-sources/dark_horse_comics.py.spec +share/apps/tellico/data-sources/fr.allocine.py +share/apps/tellico/data-sources/fr.allocine.py.spec +share/apps/tellico/data-sources/ministerio_de_cultura.py +share/apps/tellico/data-sources/ministerio_de_cultura.py.spec +share/apps/tellico/delicious2tellico.xsl +share/apps/tellico/discogs2tellico.xsl +share/apps/tellico/dvd-logo.png +share/apps/tellico/entry-templates/Album.xsl +share/apps/tellico/entry-templates/Compact.xsl +share/apps/tellico/entry-templates/Default.xsl +share/apps/tellico/entry-templates/Fancy.xsl +share/apps/tellico/entry-templates/Video.xsl +share/apps/tellico/gcstar2tellico.xsl +share/apps/tellico/griffith2tellico.py +share/apps/tellico/hddvd-logo.png +share/apps/tellico/isbndb2tellico.xsl +share/apps/tellico/mods2tellico.xsl +share/apps/tellico/pics/README.icons +share/apps/tellico/pics/README.quesnay +share/apps/tellico/pics/album.png +share/apps/tellico/pics/bibtex.png +share/apps/tellico/pics/boardgame.png +share/apps/tellico/pics/book.png +share/apps/tellico/pics/card.png +share/apps/tellico/pics/checkmark.png +share/apps/tellico/pics/coin.png +share/apps/tellico/pics/comic.png +share/apps/tellico/pics/file.png +share/apps/tellico/pics/game.png +share/apps/tellico/pics/nocover_album.png +share/apps/tellico/pics/nocover_bibtex.png +share/apps/tellico/pics/nocover_boardgame.png +share/apps/tellico/pics/nocover_book.png +share/apps/tellico/pics/nocover_comic.png +share/apps/tellico/pics/nocover_game.png +share/apps/tellico/pics/nocover_video.png +share/apps/tellico/pics/person-open.png +share/apps/tellico/pics/person.png +share/apps/tellico/pics/script.png +share/apps/tellico/pics/script.svg +share/apps/tellico/pics/stamp.png +share/apps/tellico/pics/star_off.png +share/apps/tellico/pics/star_on.png +share/apps/tellico/pics/stars1.png +share/apps/tellico/pics/stars10.png +share/apps/tellico/pics/stars2.png +share/apps/tellico/pics/stars3.png +share/apps/tellico/pics/stars4.png +share/apps/tellico/pics/stars5.png +share/apps/tellico/pics/stars6.png +share/apps/tellico/pics/stars7.png +share/apps/tellico/pics/stars8.png +share/apps/tellico/pics/stars9.png +share/apps/tellico/pics/tellico.png +share/apps/tellico/pics/tellico.svg +share/apps/tellico/pics/tellico_mime.svg +share/apps/tellico/pics/video.png +share/apps/tellico/pics/wine.png +share/apps/tellico/pubmed2tellico.xsl +share/apps/tellico/record-logo.png +share/apps/tellico/referencer2tellico.xsl +share/apps/tellico/report-templates/Column_View.xsl +share/apps/tellico/report-templates/Group_Summary.xsl +share/apps/tellico/report-templates/Group_View.xsl +share/apps/tellico/report-templates/Image_List.xsl +share/apps/tellico/report-templates/Loan_View.xsl +share/apps/tellico/report-templates/Title_Listing_(Horizontal).xsl +share/apps/tellico/report-templates/Title_Listing_(Vertical).xsl +share/apps/tellico/report-templates/Tri-Column.xsl +share/apps/tellico/shadowAlpha.png +share/apps/tellico/tellico-by-author.xsl +share/apps/tellico/tellico-by-title.xsl +share/apps/tellico/tellico-common.xsl +share/apps/tellico/tellico-printing.xsl +share/apps/tellico/tellico.dtd +share/apps/tellico/tellico.tips +share/apps/tellico/tellico2gcstar.xsl +share/apps/tellico/tellico2html.js +share/apps/tellico/tellico2html.xsl +share/apps/tellico/tellico2onix.xsl +share/apps/tellico/tellicoui.rc +share/apps/tellico/unixref2tellico.xsl +share/apps/tellico/vhs-logo.png +share/apps/tellico/welcome.html +share/apps/tellico/xmp2tellico.xsl +share/apps/tellico/yahoo2tellico.xsl +share/apps/tellico/z3950-servers.cfg +share/config.kcfg/tellico_config.kcfg +share/config/tellicorc +share/doc/tde/HTML/en/tellico/advanced.docbook +share/doc/tde/HTML/en/tellico/amazon-options.png +share/doc/tde/HTML/en/tellico/common +share/doc/tde/HTML/en/tellico/configuration.docbook +share/doc/tde/HTML/en/tellico/csv-dialog.png +share/doc/tde/HTML/en/tellico/details.docbook +share/doc/tde/HTML/en/tellico/entry-editor1.png +share/doc/tde/HTML/en/tellico/entry-editor3.png +share/doc/tde/HTML/en/tellico/entry-editor4.png +share/doc/tde/HTML/en/tellico/entry-editor5.png +share/doc/tde/HTML/en/tellico/export-bibtex.png +share/doc/tde/HTML/en/tellico/export-csv.png +share/doc/tde/HTML/en/tellico/export-html.png +share/doc/tde/HTML/en/tellico/export-options.png +share/doc/tde/HTML/en/tellico/export-pdb.png +share/doc/tde/HTML/en/tellico/externalexec-options.png +share/doc/tde/HTML/en/tellico/faqs.docbook +share/doc/tde/HTML/en/tellico/fetch-dialog.png +share/doc/tde/HTML/en/tellico/fields-dialog.png +share/doc/tde/HTML/en/tellico/filter-dialog.png +share/doc/tde/HTML/en/tellico/filter-view.png +share/doc/tde/HTML/en/tellico/fundamentals.docbook +share/doc/tde/HTML/en/tellico/general-options.png +share/doc/tde/HTML/en/tellico/hacking.docbook +share/doc/tde/HTML/en/tellico/imdb-options.png +share/doc/tde/HTML/en/tellico/importing-exporting.docbook +share/doc/tde/HTML/en/tellico/index.cache.bz2 +share/doc/tde/HTML/en/tellico/index.docbook +share/doc/tde/HTML/en/tellico/loan-dialog.png +share/doc/tde/HTML/en/tellico/loan-view.png +share/doc/tde/HTML/en/tellico/main-window.png +share/doc/tde/HTML/en/tellico/menus.docbook +share/doc/tde/HTML/en/tellico/openoffice-dialog.png +share/doc/tde/HTML/en/tellico/print-options.png +share/doc/tde/HTML/en/tellico/report-dialog.png +share/doc/tde/HTML/en/tellico/source-options.png +share/doc/tde/HTML/en/tellico/sru-options.png +share/doc/tde/HTML/en/tellico/template-options.png +share/doc/tde/HTML/en/tellico/z3950-options.png +share/doc/tde/HTML/fr/tellico/advanced.docbook +share/doc/tde/HTML/fr/tellico/amazon-options.png +share/doc/tde/HTML/fr/tellico/common +share/doc/tde/HTML/fr/tellico/configuration.docbook +share/doc/tde/HTML/fr/tellico/csv-dialog.png +share/doc/tde/HTML/fr/tellico/details.docbook +share/doc/tde/HTML/fr/tellico/entry-editor1.png +share/doc/tde/HTML/fr/tellico/entry-editor3.png +share/doc/tde/HTML/fr/tellico/entry-editor4.png +share/doc/tde/HTML/fr/tellico/entry-editor5.png +share/doc/tde/HTML/fr/tellico/export-bibtex.png +share/doc/tde/HTML/fr/tellico/export-csv.png +share/doc/tde/HTML/fr/tellico/export-html.png +share/doc/tde/HTML/fr/tellico/export-options.png +share/doc/tde/HTML/fr/tellico/export-pdb.png +share/doc/tde/HTML/fr/tellico/externalexec-options.png +share/doc/tde/HTML/fr/tellico/faqs.docbook +share/doc/tde/HTML/fr/tellico/fetch-dialog.png +share/doc/tde/HTML/fr/tellico/fields-dialog.png +share/doc/tde/HTML/fr/tellico/filter-dialog.png +share/doc/tde/HTML/fr/tellico/filter-view.png +share/doc/tde/HTML/fr/tellico/fundamentals.docbook +share/doc/tde/HTML/fr/tellico/general-options.png +share/doc/tde/HTML/fr/tellico/hacking.docbook +share/doc/tde/HTML/fr/tellico/imdb-options.png +share/doc/tde/HTML/fr/tellico/importing-exporting.docbook +share/doc/tde/HTML/fr/tellico/index.cache.bz2 +share/doc/tde/HTML/fr/tellico/index.docbook +share/doc/tde/HTML/fr/tellico/loan-dialog.png +share/doc/tde/HTML/fr/tellico/loan-view.png +share/doc/tde/HTML/fr/tellico/main-window.png +share/doc/tde/HTML/fr/tellico/menus.docbook +share/doc/tde/HTML/fr/tellico/openoffice-dialog.png +share/doc/tde/HTML/fr/tellico/print-options.png +share/doc/tde/HTML/fr/tellico/report-dialog.png +share/doc/tde/HTML/fr/tellico/source-options.png +share/doc/tde/HTML/fr/tellico/sru-options.png +share/doc/tde/HTML/fr/tellico/template-options.png +share/doc/tde/HTML/fr/tellico/z3950-options.png +share/icons/hicolor/128x128/apps/tellico.png +share/icons/hicolor/128x128/mimetypes/application-x-tellico.png +share/icons/hicolor/16x16/apps/tellico.png +share/icons/hicolor/16x16/mimetypes/application-x-tellico.png +share/icons/hicolor/22x22/apps/tellico.png +share/icons/hicolor/22x22/mimetypes/application-x-tellico.png +share/icons/hicolor/32x32/apps/tellico.png +share/icons/hicolor/32x32/mimetypes/application-x-tellico.png +share/icons/hicolor/48x48/apps/tellico.png +share/icons/hicolor/48x48/mimetypes/application-x-tellico.png +share/icons/hicolor/64x64/apps/tellico.png +share/icons/hicolor/64x64/mimetypes/application-x-tellico.png +share/icons/hicolor/scalable/apps/tellico.svg +share/icons/hicolor/scalable/mimetypes/application-x-tellico.svg +share/locale/bg/LC_MESSAGES/tellico.mo +share/locale/ca/LC_MESSAGES/tellico.mo +share/locale/cs/LC_MESSAGES/tellico.mo +share/locale/de/LC_MESSAGES/tellico.mo +share/locale/ee/LC_MESSAGES/tellico.mo +share/locale/en_GB/LC_MESSAGES/tellico.mo +share/locale/es/LC_MESSAGES/tellico.mo +share/locale/fi/LC_MESSAGES/tellico.mo +share/locale/fr/LC_MESSAGES/tellico.mo +share/locale/hu/LC_MESSAGES/tellico.mo +share/locale/it/LC_MESSAGES/tellico.mo +share/locale/nb/LC_MESSAGES/tellico.mo +share/locale/nl/LC_MESSAGES/tellico.mo +share/locale/nn/LC_MESSAGES/tellico.mo +share/locale/pl/LC_MESSAGES/tellico.mo +share/locale/pt/LC_MESSAGES/tellico.mo +share/locale/pt_BR/LC_MESSAGES/tellico.mo +share/locale/ro/LC_MESSAGES/tellico.mo +share/locale/ru/LC_MESSAGES/tellico.mo +share/locale/sv/LC_MESSAGES/tellico.mo +share/locale/tr/LC_MESSAGES/tellico.mo +share/locale/uk/LC_MESSAGES/tellico.mo +share/mime/packages/tellico.xml +share/mimelnk/application/x-tellico.desktop |