diff options
Diffstat (limited to 'finance')
-rw-r--r-- | finance/Makefile | 1 | ||||
-rw-r--r-- | finance/cbb/Makefile | 37 | ||||
-rw-r--r-- | finance/cbb/distinfo | 2 | ||||
-rw-r--r-- | finance/cbb/files/patch-Makefile.in | 37 | ||||
-rw-r--r-- | finance/cbb/files/patch-contrib_Makefile.in | 37 | ||||
-rw-r--r-- | finance/cbb/files/patch-docs-cbb-man-icons.png_Makefile.in | 37 | ||||
-rw-r--r-- | finance/cbb/files/patch-docs-cbb-man_Makefile.in | 37 | ||||
-rw-r--r-- | finance/cbb/files/patch-docs_Makefile.in | 37 | ||||
-rw-r--r-- | finance/cbb/files/patch-etc_Makefile.in | 37 | ||||
-rw-r--r-- | finance/cbb/files/patch-graphs_Makefile.in | 37 | ||||
-rw-r--r-- | finance/cbb/files/patch-images_Makefile.in | 37 | ||||
-rw-r--r-- | finance/cbb/files/patch-languages_Makefile.in | 37 | ||||
-rw-r--r-- | finance/cbb/files/patch-perl_Makefile.in | 37 | ||||
-rw-r--r-- | finance/cbb/files/patch-reports_Makefile.in | 37 | ||||
-rw-r--r-- | finance/cbb/files/patch-tcl_Makefile.in | 37 | ||||
-rw-r--r-- | finance/cbb/pkg-descr | 9 | ||||
-rw-r--r-- | finance/cbb/pkg-plist | 117 |
17 files changed, 0 insertions, 610 deletions
diff --git a/finance/Makefile b/finance/Makefile index f6fcb97affd9..1b9df3ac027a 100644 --- a/finance/Makefile +++ b/finance/Makefile @@ -25,7 +25,6 @@ SUBDIR += beancount SUBDIR += beanie SUBDIR += bitcoinnodestats - SUBDIR += cbb SUBDIR += cointop SUBDIR += electrum SUBDIR += expense diff --git a/finance/cbb/Makefile b/finance/cbb/Makefile deleted file mode 100644 index 49bc36246b90..000000000000 --- a/finance/cbb/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# Created by: kline -# $FreeBSD$ - -PORTNAME= cbb -DISTVERSION= 0.9.5b -CATEGORIES= finance deskutils -MASTER_SITES= http://download.gna.org/cbb/ - -MAINTAINER= kline@thought.org -COMMENT= Checkbook balancing tool - -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2020-05-05 - -LICENSE= GPLv2 - -NO_BUILD= yes -USES= shebangfix perl5 tk tar:tgz -SHEBANG_FILES= tcl/*.tcl */*.pl contrib/* -SHEBANG_LANG= perl tk -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--with-perl=${PERL} \ - --with-wish=${WISH} -MAKE_ENV+= STAGEDIR=${STAGEDIR} -WRKSRC= ${WRKDIR}/${PKGNAME:R} -PLIST_SUB+= VERSION=${PORTVERSION:R:R} - -post-patch: - ${REINPLACE_CMD} -e 's|.aboutwin.frame.a.l6 ||' \ - ${WRKSRC}/tcl/help.tcl - ${REINPLACE_CMD} -e 's|%4Y%02m%02d|%Y%m%d|' \ - ${WRKSRC}/tcl/main.tcl - ${REINPLACE_CMD} -e 's|/usr/bin/perl|${TCLSH}|' \ - ${WRKSRC}/languages/*.tcl - -.include <bsd.port.mk> diff --git a/finance/cbb/distinfo b/finance/cbb/distinfo deleted file mode 100644 index 6fea298928c3..000000000000 --- a/finance/cbb/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (cbb-0.9.5b.tgz) = c18d707889608ae497b4c4cec030feb0129a73f4cfdcae227d20a6e61f41fc28 -SIZE (cbb-0.9.5b.tgz) = 298252 diff --git a/finance/cbb/files/patch-Makefile.in b/finance/cbb/files/patch-Makefile.in deleted file mode 100644 index 45f3ff704215..000000000000 --- a/finance/cbb/files/patch-Makefile.in +++ /dev/null @@ -1,37 +0,0 @@ ---- Makefile.in.orig 2001-08-15 03:56:01.000000000 +0200 -+++ Makefile.in 2014-02-17 17:10:53.000000000 +0100 -@@ -32,7 +32,7 @@ - includedir = @includedir@ - oldincludedir = /usr/include - --DISTDIR = -+DISTDIR = ${STAGEDIR} - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -305,19 +305,19 @@ - # Create install directories - make-dirs: - umask 022; \ -- if test '!' -d $(CBB_BINDIR); then \ -- mkdir -p $(CBB_BINDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_BINDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_BINDIR); \ - fi; \ -- if test '!' -d $(CBB_LIBDIR); then \ -- mkdir -p $(CBB_LIBDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_LIBDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - install-exec-local: make-dirs - if test -n "$(CBB_BINFILES)"; then \ -- $(INSTALL) $(CBB_BINFILES) $(CBB_BINDIR); \ -+ $(INSTALL) $(CBB_BINFILES) $(DISTDIR)$(CBB_BINDIR); \ - fi; - if test -n "$(CBB_LIBFILES)"; then \ -- $(INSTALL) $(CBB_LIBFILES) $(CBB_LIBDIR); \ -+ $(INSTALL) $(CBB_LIBFILES) $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - dist-hook: diff --git a/finance/cbb/files/patch-contrib_Makefile.in b/finance/cbb/files/patch-contrib_Makefile.in deleted file mode 100644 index c294825c332a..000000000000 --- a/finance/cbb/files/patch-contrib_Makefile.in +++ /dev/null @@ -1,37 +0,0 @@ ---- contrib/Makefile.in.orig 2014-02-17 16:54:57.000000000 +0100 -+++ contrib/Makefile.in 2014-02-17 16:55:36.000000000 +0100 -@@ -32,7 +32,7 @@ - includedir = @includedir@ - oldincludedir = /usr/include - --DISTDIR = -+DISTDIR = ${STAGEDIR} - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -182,19 +182,19 @@ - # Create install directories - make-dirs: - umask 022; \ -- if test '!' -d $(CBB_BINDIR); then \ -- mkdir -p $(CBB_BINDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_BINDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_BINDIR); \ - fi; \ -- if test '!' -d $(CBB_LIBDIR); then \ -- mkdir -p $(CBB_LIBDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_LIBDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - install-exec-local: make-dirs - if test -n "$(CBB_BINFILES)"; then \ -- $(INSTALL) $(CBB_BINFILES) $(CBB_BINDIR); \ -+ $(INSTALL) $(CBB_BINFILES) $(DISTDIR)$(CBB_BINDIR); \ - fi; - if test -n "$(CBB_LIBFILES)"; then \ -- $(INSTALL) $(CBB_LIBFILES) $(CBB_LIBDIR); \ -+ $(INSTALL) $(CBB_LIBFILES) $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - dist-hook: diff --git a/finance/cbb/files/patch-docs-cbb-man-icons.png_Makefile.in b/finance/cbb/files/patch-docs-cbb-man-icons.png_Makefile.in deleted file mode 100644 index 336fbbaa4e68..000000000000 --- a/finance/cbb/files/patch-docs-cbb-man-icons.png_Makefile.in +++ /dev/null @@ -1,37 +0,0 @@ ---- docs/cbb-man/icons.png/Makefile.in.orig 2014-02-17 17:04:22.000000000 +0100 -+++ docs/cbb-man/icons.png/Makefile.in 2014-02-17 17:04:51.000000000 +0100 -@@ -32,7 +32,7 @@ - includedir = @includedir@ - oldincludedir = /usr/include - --DISTDIR = -+DISTDIR = ${STAGEDIR} - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -189,19 +189,19 @@ - # Create install directories - make-dirs: - umask 022; \ -- if test '!' -d $(CBB_BINDIR); then \ -- mkdir -p $(CBB_BINDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_BINDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_BINDIR); \ - fi; \ -- if test '!' -d $(CBB_LIBDIR); then \ -- mkdir -p $(CBB_LIBDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_LIBDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - install-exec-local: make-dirs - if test -n "$(CBB_BINFILES)"; then \ -- $(INSTALL) $(CBB_BINFILES) $(CBB_BINDIR); \ -+ $(INSTALL) $(CBB_BINFILES) $(DISTDIR)$(CBB_BINDIR); \ - fi; - if test -n "$(CBB_LIBFILES)"; then \ -- $(INSTALL) $(CBB_LIBFILES) $(CBB_LIBDIR); \ -+ $(INSTALL) $(CBB_LIBFILES) $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - dist-hook: diff --git a/finance/cbb/files/patch-docs-cbb-man_Makefile.in b/finance/cbb/files/patch-docs-cbb-man_Makefile.in deleted file mode 100644 index 260383c8e017..000000000000 --- a/finance/cbb/files/patch-docs-cbb-man_Makefile.in +++ /dev/null @@ -1,37 +0,0 @@ ---- docs/cbb-man/Makefile.in.orig 2014-02-17 17:01:47.000000000 +0100 -+++ docs/cbb-man/Makefile.in 2014-02-17 17:02:18.000000000 +0100 -@@ -32,7 +32,7 @@ - includedir = @includedir@ - oldincludedir = /usr/include - --DISTDIR = -+DISTDIR = ${STAGEDIR} - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -260,19 +260,19 @@ - # Create install directories - make-dirs: - umask 022; \ -- if test '!' -d $(CBB_BINDIR); then \ -- mkdir -p $(CBB_BINDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_BINDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_BINDIR); \ - fi; \ -- if test '!' -d $(CBB_LIBDIR); then \ -- mkdir -p $(CBB_LIBDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_LIBDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - install-exec-local: make-dirs - if test -n "$(CBB_BINFILES)"; then \ -- $(INSTALL) $(CBB_BINFILES) $(CBB_BINDIR); \ -+ $(INSTALL) $(CBB_BINFILES) $(DISTDIR)$(CBB_BINDIR); \ - fi; - if test -n "$(CBB_LIBFILES)"; then \ -- $(INSTALL) $(CBB_LIBFILES) $(CBB_LIBDIR); \ -+ $(INSTALL) $(CBB_LIBFILES) $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - dist-hook: diff --git a/finance/cbb/files/patch-docs_Makefile.in b/finance/cbb/files/patch-docs_Makefile.in deleted file mode 100644 index 8c0db08623b6..000000000000 --- a/finance/cbb/files/patch-docs_Makefile.in +++ /dev/null @@ -1,37 +0,0 @@ ---- docs/Makefile.in.orig 2014-02-17 16:56:01.000000000 +0100 -+++ docs/Makefile.in 2014-02-17 16:56:49.000000000 +0100 -@@ -32,7 +32,7 @@ - includedir = @includedir@ - oldincludedir = /usr/include - --DISTDIR = -+DISTDIR = ${STAGEDIR} - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -264,19 +264,19 @@ - # Create install directories - make-dirs: - umask 022; \ -- if test '!' -d $(CBB_BINDIR); then \ -- mkdir -p $(CBB_BINDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_BINDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_BINDIR); \ - fi; \ -- if test '!' -d $(CBB_LIBDIR); then \ -- mkdir -p $(CBB_LIBDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_LIBDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - install-exec-local: make-dirs - if test -n "$(CBB_BINFILES)"; then \ -- $(INSTALL) $(CBB_BINFILES) $(CBB_BINDIR); \ -+ $(INSTALL) $(CBB_BINFILES) $(DISTDIR)$(CBB_BINDIR); \ - fi; - if test -n "$(CBB_LIBFILES)"; then \ -- $(INSTALL) $(CBB_LIBFILES) $(CBB_LIBDIR); \ -+ $(INSTALL) $(CBB_LIBFILES) $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - dist-hook: diff --git a/finance/cbb/files/patch-etc_Makefile.in b/finance/cbb/files/patch-etc_Makefile.in deleted file mode 100644 index 05ef51ec0e6a..000000000000 --- a/finance/cbb/files/patch-etc_Makefile.in +++ /dev/null @@ -1,37 +0,0 @@ ---- etc/Makefile.in.orig 2014-02-17 16:57:08.000000000 +0100 -+++ etc/Makefile.in 2014-02-17 16:57:44.000000000 +0100 -@@ -32,7 +32,7 @@ - includedir = @includedir@ - oldincludedir = /usr/include - --DISTDIR = -+DISTDIR = ${STAGEDIR} - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -165,19 +165,19 @@ - # Create install directories - make-dirs: - umask 022; \ -- if test '!' -d $(CBB_BINDIR); then \ -- mkdir -p $(CBB_BINDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_BINDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_BINDIR); \ - fi; \ -- if test '!' -d $(CBB_LIBDIR); then \ -- mkdir -p $(CBB_LIBDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_LIBDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - install-exec-local: make-dirs - if test -n "$(CBB_BINFILES)"; then \ -- $(INSTALL) $(CBB_BINFILES) $(CBB_BINDIR); \ -+ $(INSTALL) $(CBB_BINFILES) $(DISTDIR)$(CBB_BINDIR); \ - fi; - if test -n "$(CBB_LIBFILES)"; then \ -- $(INSTALL) $(CBB_LIBFILES) $(CBB_LIBDIR); \ -+ $(INSTALL) $(CBB_LIBFILES) $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - dist-hook: diff --git a/finance/cbb/files/patch-graphs_Makefile.in b/finance/cbb/files/patch-graphs_Makefile.in deleted file mode 100644 index 3ee67c2301c5..000000000000 --- a/finance/cbb/files/patch-graphs_Makefile.in +++ /dev/null @@ -1,37 +0,0 @@ ---- graphs/Makefile.in.orig 2014-02-17 16:58:03.000000000 +0100 -+++ graphs/Makefile.in 2014-02-17 16:58:31.000000000 +0100 -@@ -32,7 +32,7 @@ - includedir = @includedir@ - oldincludedir = /usr/include - --DISTDIR = -+DISTDIR = ${STAGEDIR} - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -197,19 +197,19 @@ - # Create install directories - make-dirs: - umask 022; \ -- if test '!' -d $(CBB_BINDIR); then \ -- mkdir -p $(CBB_BINDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_BINDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_BINDIR); \ - fi; \ -- if test '!' -d $(CBB_LIBDIR); then \ -- mkdir -p $(CBB_LIBDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_LIBDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - install-exec-local: make-dirs - if test -n "$(CBB_BINFILES)"; then \ -- $(INSTALL) $(CBB_BINFILES) $(CBB_BINDIR); \ -+ $(INSTALL) $(CBB_BINFILES) $(DISTDIR)$(CBB_BINDIR); \ - fi; - if test -n "$(CBB_LIBFILES)"; then \ -- $(INSTALL) $(CBB_LIBFILES) $(CBB_LIBDIR); \ -+ $(INSTALL) $(CBB_LIBFILES) $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - dist-hook: diff --git a/finance/cbb/files/patch-images_Makefile.in b/finance/cbb/files/patch-images_Makefile.in deleted file mode 100644 index 3495c18895da..000000000000 --- a/finance/cbb/files/patch-images_Makefile.in +++ /dev/null @@ -1,37 +0,0 @@ ---- images/Makefile.in.orig 2014-02-17 16:59:00.000000000 +0100 -+++ images/Makefile.in 2014-02-17 16:59:31.000000000 +0100 -@@ -32,7 +32,7 @@ - includedir = @includedir@ - oldincludedir = /usr/include - --DISTDIR = -+DISTDIR = ${STAGEDIR} - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -168,19 +168,19 @@ - # Create install directories - make-dirs: - umask 022; \ -- if test '!' -d $(CBB_BINDIR); then \ -- mkdir -p $(CBB_BINDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_BINDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_BINDIR); \ - fi; \ -- if test '!' -d $(CBB_LIBDIR); then \ -- mkdir -p $(CBB_LIBDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_LIBDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - install-exec-local: make-dirs - if test -n "$(CBB_BINFILES)"; then \ -- $(INSTALL) $(CBB_BINFILES) $(CBB_BINDIR); \ -+ $(INSTALL) $(CBB_BINFILES) $(DISTDIR)$(CBB_BINDIR); \ - fi; - if test -n "$(CBB_LIBFILES)"; then \ -- $(INSTALL) $(CBB_LIBFILES) $(CBB_LIBDIR); \ -+ $(INSTALL) $(CBB_LIBFILES) $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - dist-hook: diff --git a/finance/cbb/files/patch-languages_Makefile.in b/finance/cbb/files/patch-languages_Makefile.in deleted file mode 100644 index f621dbec20f0..000000000000 --- a/finance/cbb/files/patch-languages_Makefile.in +++ /dev/null @@ -1,37 +0,0 @@ ---- languages/Makefile.in.orig 2014-02-17 17:05:32.000000000 +0100 -+++ languages/Makefile.in 2014-02-17 17:06:03.000000000 +0100 -@@ -32,7 +32,7 @@ - includedir = @includedir@ - oldincludedir = /usr/include - --DISTDIR = -+DISTDIR = ${STAGEDIR} - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -166,19 +166,19 @@ - # Create install directories - make-dirs: - umask 022; \ -- if test '!' -d $(CBB_BINDIR); then \ -- mkdir -p $(CBB_BINDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_BINDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_BINDIR); \ - fi; \ -- if test '!' -d $(CBB_LIBDIR); then \ -- mkdir -p $(CBB_LIBDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_LIBDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - install-exec-local: make-dirs - if test -n "$(CBB_BINFILES)"; then \ -- $(INSTALL) $(CBB_BINFILES) $(CBB_BINDIR); \ -+ $(INSTALL) $(CBB_BINFILES) $(DISTDIR)$(CBB_BINDIR); \ - fi; - if test -n "$(CBB_LIBFILES)"; then \ -- $(INSTALL) $(CBB_LIBFILES) $(CBB_LIBDIR); \ -+ $(INSTALL) $(CBB_LIBFILES) $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - dist-hook: diff --git a/finance/cbb/files/patch-perl_Makefile.in b/finance/cbb/files/patch-perl_Makefile.in deleted file mode 100644 index 5d1203429ae1..000000000000 --- a/finance/cbb/files/patch-perl_Makefile.in +++ /dev/null @@ -1,37 +0,0 @@ ---- perl/Makefile.in.orig 2014-02-17 17:06:57.000000000 +0100 -+++ perl/Makefile.in 2014-02-17 17:07:25.000000000 +0100 -@@ -32,7 +32,7 @@ - includedir = @includedir@ - oldincludedir = /usr/include - --DISTDIR = -+DISTDIR = ${STAGEDIR} - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -174,19 +174,19 @@ - # Create install directories - make-dirs: - umask 022; \ -- if test '!' -d $(CBB_BINDIR); then \ -- mkdir -p $(CBB_BINDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_BINDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_BINDIR); \ - fi; \ -- if test '!' -d $(CBB_LIBDIR); then \ -- mkdir -p $(CBB_LIBDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_LIBDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - install-exec-local: make-dirs - if test -n "$(CBB_BINFILES)"; then \ -- $(INSTALL) $(CBB_BINFILES) $(CBB_BINDIR); \ -+ $(INSTALL) $(CBB_BINFILES) $(DISTDIR)$(CBB_BINDIR); \ - fi; - if test -n "$(CBB_LIBFILES)"; then \ -- $(INSTALL) $(CBB_LIBFILES) $(CBB_LIBDIR); \ -+ $(INSTALL) $(CBB_LIBFILES) $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - dist-hook: diff --git a/finance/cbb/files/patch-reports_Makefile.in b/finance/cbb/files/patch-reports_Makefile.in deleted file mode 100644 index 812a1e772978..000000000000 --- a/finance/cbb/files/patch-reports_Makefile.in +++ /dev/null @@ -1,37 +0,0 @@ ---- reports/Makefile.in.orig 2014-02-17 17:08:01.000000000 +0100 -+++ reports/Makefile.in 2014-02-17 17:08:39.000000000 +0100 -@@ -32,7 +32,7 @@ - includedir = @includedir@ - oldincludedir = /usr/include - --DISTDIR = -+DISTDIR = ${STAGEDIR} - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -188,19 +188,19 @@ - # Create install directories - make-dirs: - umask 022; \ -- if test '!' -d $(CBB_BINDIR); then \ -- mkdir -p $(CBB_BINDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_BINDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_BINDIR); \ - fi; \ -- if test '!' -d $(CBB_LIBDIR); then \ -- mkdir -p $(CBB_LIBDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_LIBDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - install-exec-local: make-dirs - if test -n "$(CBB_BINFILES)"; then \ -- $(INSTALL) $(CBB_BINFILES) $(CBB_BINDIR); \ -+ $(INSTALL) $(CBB_BINFILES) $(DISTDIR)$(CBB_BINDIR); \ - fi; - if test -n "$(CBB_LIBFILES)"; then \ -- $(INSTALL) $(CBB_LIBFILES) $(CBB_LIBDIR); \ -+ $(INSTALL) $(CBB_LIBFILES) $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - dist-hook: diff --git a/finance/cbb/files/patch-tcl_Makefile.in b/finance/cbb/files/patch-tcl_Makefile.in deleted file mode 100644 index 94c482c6af9b..000000000000 --- a/finance/cbb/files/patch-tcl_Makefile.in +++ /dev/null @@ -1,37 +0,0 @@ ---- tcl/Makefile.in.orig 2014-02-17 17:09:00.000000000 +0100 -+++ tcl/Makefile.in 2014-02-17 17:09:36.000000000 +0100 -@@ -32,7 +32,7 @@ - includedir = @includedir@ - oldincludedir = /usr/include - --DISTDIR = -+DISTDIR = ${STAGEDIR} - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -179,19 +179,19 @@ - # Create install directories - make-dirs: - umask 022; \ -- if test '!' -d $(CBB_BINDIR); then \ -- mkdir -p $(CBB_BINDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_BINDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_BINDIR); \ - fi; \ -- if test '!' -d $(CBB_LIBDIR); then \ -- mkdir -p $(CBB_LIBDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_LIBDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - install-exec-local: make-dirs - if test -n "$(CBB_BINFILES)"; then \ -- $(INSTALL) $(CBB_BINFILES) $(CBB_BINDIR); \ -+ $(INSTALL) $(CBB_BINFILES) $(DISTDIR)$(CBB_BINDIR); \ - fi; - if test -n "$(CBB_LIBFILES)"; then \ -- $(INSTALL) $(CBB_LIBFILES) $(CBB_LIBDIR); \ -+ $(INSTALL) $(CBB_LIBFILES) $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - dist-hook: diff --git a/finance/cbb/pkg-descr b/finance/cbb/pkg-descr deleted file mode 100644 index f5b3939fd1e4..000000000000 --- a/finance/cbb/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -CBB is a personal check book balancing utility for Unix/X. - -CBB is intended to be an open, extensible program. It utilizes a -simple (tab delimited) data file format and is written entirely in -Tcl/Tk and Perl and contains no compiled code. It provides a simple -interface for users to add their own reports, graphs, and external -modules without having to modify any of the CBB source. - -WWW: http://gna.org/projects/cbb/ diff --git a/finance/cbb/pkg-plist b/finance/cbb/pkg-plist deleted file mode 100644 index 162de07d7e14..000000000000 --- a/finance/cbb/pkg-plist +++ /dev/null @@ -1,117 +0,0 @@ -bin/cbb -lib/cbb-%%VERSION%%/cbbdb -lib/cbb-%%VERSION%%/contrib/change.pl -lib/cbb-%%VERSION%%/contrib/conv-french-qif.pl -lib/cbb-%%VERSION%%/contrib/emacs-edb -lib/cbb-%%VERSION%%/contrib/emacs-forms -lib/cbb-%%VERSION%%/contrib/fetch-latest.pl -lib/cbb-%%VERSION%%/contrib/importcat.README -lib/cbb-%%VERSION%%/contrib/importcat.pl -lib/cbb-%%VERSION%%/contrib/invest.pl -lib/cbb-%%VERSION%%/contrib/loan.gnuplot -lib/cbb-%%VERSION%%/contrib/loan.pl -lib/cbb-%%VERSION%%/contrib/loan_recur.pl -lib/cbb-%%VERSION%%/contrib/mym_to_cbb.pl -lib/cbb-%%VERSION%%/contrib/recur.pl -lib/cbb-%%VERSION%%/contrib/term.pl -lib/cbb-%%VERSION%%/contrib/trimold.pl -lib/cbb-%%VERSION%%/contrib/txn -lib/cbb-%%VERSION%%/contrib/txn.README -lib/cbb-%%VERSION%%/contrib/upgrade-splits.pl -lib/cbb-%%VERSION%%/contrib/yearend.pl -lib/cbb-%%VERSION%%/docs/cbb-man.txt -lib/cbb-%%VERSION%%/docs/cbb-man/cbb-man.html -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/blueball.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/change_begin.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/change_delete.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/change_end.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/contents_motif.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/cross_ref_motif.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/foot_motif.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/greenball.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/image.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/index_motif.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/next_group_motif.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/next_group_motif_gr.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/next_motif.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/next_motif_gr.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/orangeball.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/pinkball.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/previous_group_motif.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/previous_group_motif_gr.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/previous_motif.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/previous_motif_gr.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/purpleball.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/redball.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/up_motif.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/up_motif_gr.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/whiteball.png -lib/cbb-%%VERSION%%/docs/cbb-man/icons.png/yellowball.png -lib/cbb-%%VERSION%%/docs/cbb-man/img1.png -lib/cbb-%%VERSION%%/docs/cbb-man/img2.png -lib/cbb-%%VERSION%%/docs/cbb-man/img3.png -lib/cbb-%%VERSION%%/docs/cbb-man/index.html -lib/cbb-%%VERSION%%/docs/graphs.txt -lib/cbb-%%VERSION%%/docs/notes -lib/cbb-%%VERSION%%/docs/perl.commands -lib/cbb-%%VERSION%%/docs/perl.functions -lib/cbb-%%VERSION%%/docs/plsubs -lib/cbb-%%VERSION%%/docs/tcl.functions -lib/cbb-%%VERSION%%/docs/todo.txt -lib/cbb-%%VERSION%%/docs/update.notes -lib/cbb-%%VERSION%%/etc/default.cat -lib/cbb-%%VERSION%%/etc/extern.conf -lib/cbb-%%VERSION%%/graphs/cat-col.pl -lib/cbb-%%VERSION%%/graphs/cat-pie.pl -lib/cbb-%%VERSION%%/graphs/cat2-col.pl -lib/cbb-%%VERSION%%/graphs/desc-pie.pl -lib/cbb-%%VERSION%%/graphs/descpie -lib/cbb-%%VERSION%%/graphs/graphbal -lib/cbb-%%VERSION%%/graphs/graphcol -lib/cbb-%%VERSION%%/graphs/graphcolpos -lib/cbb-%%VERSION%%/graphs/graphpie -lib/cbb-%%VERSION%%/graphs/graphs.conf -lib/cbb-%%VERSION%%/graphs/txn-list.pl -lib/cbb-%%VERSION%%/images/author.xbm -lib/cbb-%%VERSION%%/images/cbb.xbm -lib/cbb-%%VERSION%%/images/mini-cross.gif -lib/cbb-%%VERSION%%/images/mini-exclam.gif -lib/cbb-%%VERSION%%/images/splash-32.gif -lib/cbb-%%VERSION%%/languages/english.tcl -lib/cbb-%%VERSION%%/languages/french.tcl -lib/cbb-%%VERSION%%/languages/german.tcl -lib/cbb-%%VERSION%%/perl/accounts.pl -lib/cbb-%%VERSION%%/perl/categories.pl -lib/cbb-%%VERSION%%/perl/common.pl -lib/cbb-%%VERSION%%/perl/engine.pl -lib/cbb-%%VERSION%%/perl/export.pl -lib/cbb-%%VERSION%%/perl/file.pl -lib/cbb-%%VERSION%%/perl/groups.pl -lib/cbb-%%VERSION%%/perl/import.pl -lib/cbb-%%VERSION%%/perl/log.pl -lib/cbb-%%VERSION%%/perl/memorized.pl -lib/cbb-%%VERSION%%/perl/reports.pl -lib/cbb-%%VERSION%%/reports/ave-by-cat.pl -lib/cbb-%%VERSION%%/reports/by-cat.pl -lib/cbb-%%VERSION%%/reports/by-payee.pl -lib/cbb-%%VERSION%%/reports/miss-check.pl -lib/cbb-%%VERSION%%/reports/rep-txn-list.pl -lib/cbb-%%VERSION%%/reports/reports.conf -lib/cbb-%%VERSION%%/reports/shrt-by-cat.pl -lib/cbb-%%VERSION%%/reports/uncleared-txn.pl -lib/cbb-%%VERSION%%/tcl/balance.tcl -lib/cbb-%%VERSION%%/tcl/balloon.tcl -lib/cbb-%%VERSION%%/tcl/bindings.tcl -lib/cbb-%%VERSION%%/tcl/categories.tcl -lib/cbb-%%VERSION%%/tcl/common.tcl -lib/cbb-%%VERSION%%/tcl/dates.tcl -lib/cbb-%%VERSION%%/tcl/file.tcl -lib/cbb-%%VERSION%%/tcl/filebox.tcl -lib/cbb-%%VERSION%%/tcl/help.tcl -lib/cbb-%%VERSION%%/tcl/init.tcl -lib/cbb-%%VERSION%%/tcl/main.tcl -lib/cbb-%%VERSION%%/tcl/menu.tcl -lib/cbb-%%VERSION%%/tcl/prefs.tcl -lib/cbb-%%VERSION%%/tcl/reports.tcl -lib/cbb-%%VERSION%%/tcl/splits.tcl -lib/cbb-%%VERSION%%/tcl/undo.tcl |