1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

A tree-structured outliner, note-taker. Written up on unixreview.com this

month.
This commit is contained in:
Alan Eldridge 2003-01-01 15:06:38 +00:00
parent e3da4f3432
commit 85103fb63d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=72008
7 changed files with 86 additions and 0 deletions

View File

@ -22,6 +22,7 @@
SUBDIR += ithought
SUBDIR += jlj
SUBDIR += kdepim3
SUBDIR += knowit
SUBDIR += kronolith
SUBDIR += krss
SUBDIR += logjam

33
deskutils/knowit/Makefile Normal file
View File

@ -0,0 +1,33 @@
# ex:ts=8
#
# New ports collection makefile for: knowit
# Date created: 2002/12/08
# Whom: Alan Eldridge <ports@geeksrus.net>
#
# $FreeBSD$
#
PORTNAME= knowit
PORTVERSION= 0.4
PORTREVISION= 0
#PORTEPOCH=
CATEGORIES= deskutils
MASTER_SITES= http://www.uw.edu.pl/~mrudolf/files/
MAINTAINER= alane@FreeBSD.org
USE_KDELIBS_VER=3
PREFIX= ${KDE_PREFIX}
USE_BZIP2= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
BINDIR= ${PREFIX}/bin
post-install:
cd ${BINDIR}; rm -f ${PORTNAME}; \
ln -sf ${CONFIGURE_TARGET}-${PORTNAME} ${PORTNAME}
.include <bsd.port.mk>
#EOF

View File

@ -0,0 +1 @@
MD5 (knowit-0.4.tar.bz2) = 244f4878be346980e0ccd40372606f0c

View File

@ -0,0 +1,22 @@
--- knowit/notes.cpp.orig Sun Dec 8 01:24:02 2002
+++ knowit/notes.cpp Sun Dec 8 01:50:11 2002
@@ -80,12 +80,13 @@
bool TNotesCollection::changeNote(QListViewItem* item, const QString& s)
{
TNote* changed = find(item);
- if (!changed) qWarning("Internal error: change note\n");
- else {
- bool change = changed->change(s);
- modified = modified or change;
- return change;
- }
+ if (!changed) {
+ qWarning("Internal error: change note\n");
+ return false;
+ }
+ if (changed->change(s)) {
+ return modified = true;
+ }
return false;
}

View File

@ -0,0 +1 @@
A note manager with tree organization that uses RTF for storage

View File

@ -0,0 +1,9 @@
KnowIt is a simple KDE tool for managing notes in a manner similar to
TuxCards. Notes are organized in tree-like hierarchy and can store data in a
rich text format, so that bold, italics, and lists are supported, as well as
any character set.
WWW: http://www.uw.edu.pl/~mrudolf/linux/knowit.html
-- AlanE <alane@freebsd.org>

View File

@ -0,0 +1,19 @@
bin/knowit
bin/i386-portbld-freebsd4.7-knowit
share/applnk/Applications/knowit.desktop
share/doc/HTML/en/knowit/common
share/doc/HTML/en/knowit/index.cache.bz2
share/doc/HTML/en/knowit/index.docbook
share/doc/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/pl/LC_MESSAGES/knowit.mo
share/locale/zh_CN.GB2312/LC_MESSAGES/knowit.mo
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/32x32
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/icons/hicolor/16x16
@dirrm share/icons/hicolor
@dirrm share/doc/HTML/en/knowit
@dirrm share/applnk/Applications