svn commit: r490935 - in head/misc: . kookbook

Adriaan de Groot adridg at FreeBSD.org
Tue Jan 22 10:24:53 UTC 2019


Author: adridg
Date: Tue Jan 22 10:24:51 2019
New Revision: 490935
URL: https://svnweb.freebsd.org/changeset/ports/490935

Log:
  New port: misc/kookbook
  
  This is the spiritual successor to KRecipes, a simple Qt-based recipe
  manager. New in kookbook is managing the recipes as a bunch of Markdown
  documents, which makes it easier to build further tooling around them.

Added:
  head/misc/kookbook/
  head/misc/kookbook/Makefile   (contents, props changed)
  head/misc/kookbook/distinfo   (contents, props changed)
  head/misc/kookbook/pkg-descr   (contents, props changed)
  head/misc/kookbook/pkg-plist   (contents, props changed)
Modified:
  head/misc/Makefile

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Tue Jan 22 10:14:33 2019	(r490934)
+++ head/misc/Makefile	Tue Jan 22 10:24:51 2019	(r490935)
@@ -205,6 +205,7 @@
     SUBDIR += kf5-purpose
     SUBDIR += kgeography
     SUBDIR += klettres
+    SUBDIR += kookbook
     SUBDIR += ktouch
     SUBDIR += kwordquiz
     SUBDIR += lastools

Added: head/misc/kookbook/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/kookbook/Makefile	Tue Jan 22 10:24:51 2019	(r490935)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	kookbook
+DISTVERSION=	0.2.1
+CATEGORIES=	misc kde
+MASTER_SITES=	KDE/unstable/${PORTNAME}/
+
+MAINTAINER=	kde at FreeBSD.org
+COMMENT=	Recipes database with Markdown support
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+BUILD_DEPENDS=	${LOCALBASE}/lib/libmarkdown.a:textproc/discount
+
+USES=		cmake kde:5 qt:5 tar:xz
+USE_QT=		core declarative gui network printsupport widgets \
+		qmake_build buildtools_build
+USE_KDE=	ecm_build
+
+.include <bsd.port.mk>

Added: head/misc/kookbook/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/kookbook/distinfo	Tue Jan 22 10:24:51 2019	(r490935)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1548148746
+SHA256 (kookbook-0.2.1.tar.xz) = 86fb42ab2b5c19d0bee03a877271633aaa40fff55e6cc4be012f8c3204d78e49
+SIZE (kookbook-0.2.1.tar.xz) = 42968

Added: head/misc/kookbook/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/kookbook/pkg-descr	Tue Jan 22 10:24:51 2019	(r490935)
@@ -0,0 +1,8 @@
+Write and manage your kitchen recipes.
+
+Kookbook is a simple application viewer based on markdown formatted recipes.
+It supports import from KRecipes databases, and keeps its own database
+as a folder full of markdown-formatted documents, which makes it easy
+to script and to build tools around.
+
+WWW: https://pusling.com/blog/?p=499

Added: head/misc/kookbook/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/kookbook/pkg-plist	Tue Jan 22 10:24:51 2019	(r490935)
@@ -0,0 +1,12 @@
+bin/kookbook
+bin/kookbooktouch
+share/applications/kookbook.desktop
+share/applications/kookbooktouch.desktop
+share/icons/hicolor/128x128/apps/kookbook.png
+share/icons/hicolor/16x16/apps/kookbook.png
+share/icons/hicolor/22x22/apps/kookbook.png
+share/icons/hicolor/32x32/apps/kookbook.png
+share/icons/hicolor/48x48/apps/kookbook.png
+share/icons/hicolor/64x64/apps/kookbook.png
+share/icons/hicolor/scalable/apps/kookbook.svgz
+%%DATADIR%%/doc/krecipes.py


More information about the svn-ports-head mailing list