summaryrefslogtreecommitdiff
path: root/finance
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2005-02-18 23:44:49 +0000
committerKris Kennaway <kris@FreeBSD.org>2005-02-18 23:44:49 +0000
commit11ea174ccbc9cebd4134768e8fb92c6a3dc2c559 (patch)
tree1514ed7a486e108239615c1d83319d83bacdbc3d /finance
parentUpdate dependency to bash2 in preparation for removing bash1. (diff)
As previously announced, remove ports that have reached their expiry date,
and the handful of ports that depended on them.
Notes
Notes: svn path=/head/; revision=129234
Diffstat (limited to 'finance')
-rw-r--r--finance/Makefile1
-rw-r--r--finance/opale/Makefile45
-rw-r--r--finance/opale/distinfo2
-rw-r--r--finance/opale/files/patch-cashimport.cc46
-rw-r--r--finance/opale/files/patch-opale::opale_record.cc55
-rw-r--r--finance/opale/pkg-descr13
-rw-r--r--finance/opale/pkg-plist56
7 files changed, 0 insertions, 218 deletions
diff --git a/finance/Makefile b/finance/Makefile
index c703471269c2..84656ac728d4 100644
--- a/finance/Makefile
+++ b/finance/Makefile
@@ -19,7 +19,6 @@
SUBDIR += libstocks
SUBDIR += mybudget
SUBDIR += myphpmoney
- SUBDIR += opale
SUBDIR += openhbci
SUBDIR += p5-Business-CreditCard
SUBDIR += p5-Business-OCV
diff --git a/finance/opale/Makefile b/finance/opale/Makefile
deleted file mode 100644
index 60df9f3c5c7f..000000000000
--- a/finance/opale/Makefile
+++ /dev/null
@@ -1,45 +0,0 @@
-# New ports collection makefile for: opale
-# Date created: Wed Feb 25 00:43:37 UTC 2004
-# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= opale
-PORTVERSION= 0.5
-PORTREVISION= 1
-CATEGORIES= finance kde
-MASTER_SITES= ${MASTER_SITE_LOCAL} \
- http://orzel.freehackers.org/download/ \
- ftp://ftp.freehackers.org/pub/opale/
-MASTER_SITE_SUBDIR= lioux
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= A very simple personal bank account manager for KDE and KOffice
-
-BUILD_DEPENDS= korganizer:${PORTSDIR}/deskutils/kdepim3
-LIB_DEPENDS= kofficecore.2:${PORTSDIR}/editors/koffice-kde3
-
-BROKEN= "Does not compile"
-EXPIRATION_DATE=2005-02-18
-DEPRECATED= ${BROKEN}
-
-USE_KDELIBS_VER=3
-USE_BZIP2= yes
-USE_GMAKE= yes
-USE_INC_LIBTOOL_VER= 13
-USE_REINPLACE= yes
-INSTALLS_SHLIB= yes
-
-CONFIGURE_ARGS= --with-koffice-includes=${LOCALBASE}/include \
- --with-koffice-libs=${LOCALBASE}/lib \
- --program-prefix=''
-CONFIGURE_ENV= CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS}" \
- LDFLAGS="${LDFLAGS} ${PTHREAD_LIBS}"
-
-post-patch:
- @${REINPLACE_CMD} -E \
- -e 's|-O2||g' \
- ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
-
-.include <bsd.port.mk>
diff --git a/finance/opale/distinfo b/finance/opale/distinfo
deleted file mode 100644
index 891285974a8f..000000000000
--- a/finance/opale/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (opale-0.5.tar.bz2) = 331dc07ba5c00b088c6b3f17419a0fe5
-SIZE (opale-0.5.tar.bz2) = 550138
diff --git a/finance/opale/files/patch-cashimport.cc b/finance/opale/files/patch-cashimport.cc
deleted file mode 100644
index 6bce98340188..000000000000
--- a/finance/opale/files/patch-cashimport.cc
+++ /dev/null
@@ -1,46 +0,0 @@
---- opale/filters/cashimport.cc.orig Mon Aug 23 14:15:41 2004
-+++ opale/filters/cashimport.cc Mon Aug 23 14:17:59 2004
-@@ -37,7 +37,7 @@
- (((a) & 0x0000ff00U) << 8) | \
- (((a) & 0x00ff0000U) >> 8))
-
--#define USE_SWAP(_x) (((unsigned int)_x)=INT_SWAP(((unsigned int)_x)))
-+#define USE_SWAP(_x) ((_x)=INT_SWAP(((unsigned int)_x)))
-
-
- /*
-@@ -117,12 +117,7 @@
- QDataStream stream(&in);
-
- char magic[]="CASH_MAGICxxx";
-- stream >> (unsigned char)magic[0]; stream >> (unsigned char)magic[1];
-- stream >> (unsigned char)magic[2]; stream >> (unsigned char)magic[3];
-- stream >> (unsigned char)magic[4]; stream >> (unsigned char)magic[5];
-- stream >> (unsigned char)magic[6]; stream >> (unsigned char)magic[7];
-- stream >> (unsigned char)magic[8]; stream >> (unsigned char)magic[9];
-- stream >> (unsigned char)magic[10];
-+ stream.readRawBytes(magic,11);
-
- if ( magic[10]!=0 ||
- magic[9]!='C' || magic[8]!='I' ||
-@@ -144,9 +139,7 @@
- emit sigProgress(2);
-
- // read the number of record
-- stream >> (unsigned char)magic[0]; stream >> (unsigned char)magic[1];
-- stream >> (unsigned char)magic[2]; stream >> (unsigned char)magic[3];
-- stream >> (unsigned char)magic[4]; //stream >> (unsigned char)magic[5];
-+ stream.readRawBytes(magic,5);
- magic[5] = 0;
-
- int n = atoi(magic);
-@@ -160,8 +153,7 @@
- QString name;
-
- // get the data
-- for (unsigned int li=0; li< sizeof(s_ope); li++)
-- stream >> (unsigned char) ope.c[li];
-+ stream.readRawBytes(ope.c,sizeof(s_ope));
-
- if (need_swap) {
- USE_SWAP(ope.ope.how);
diff --git a/finance/opale/files/patch-opale::opale_record.cc b/finance/opale/files/patch-opale::opale_record.cc
deleted file mode 100644
index 60df79700b99..000000000000
--- a/finance/opale/files/patch-opale::opale_record.cc
+++ /dev/null
@@ -1,55 +0,0 @@
---- opale/opale_record.cc.orig Thu Nov 20 12:00:53 2003
-+++ opale/opale_record.cc Sun Feb 29 22:18:25 2004
-@@ -270,7 +270,7 @@
- QString("%1 %2").arg( QString().sprintf("%12.2f", m_amount/100.)).arg(currency),
- checked()?"X":"",
- howlist[type],
-- isFutur()?i18n("Future"):"",
-+ isFutur()?i18n("Future"):QString(""),
- QString("%1 %2").arg( QString().sprintf("%12.2f", t->global/100.)).arg(currency),
- categorylist[category] );
-
-@@ -324,10 +324,19 @@
-
- #ifndef USE_BUGGY_STRTOD
-
-+#if (defined(__unix__) || defined(unix)) && !defined(USG)
-+#include <sys/param.h>
-+#endif
-+
- #include <stdlib.h>
- #include <ctype.h>
- #include <math.h>
-+
-+#if (defined(BSD) && (BSD >= 199306))
-+#include <limits.h>
-+#else
- #include <values.h> // MAXLONG
-+#endif
-
- amount_t
- atoprice (const char *buf)
-@@ -347,7 +356,11 @@
- a = atol (buf);
-
- /* provisoire */
-+#if (defined(BSD) && (BSD >= 199306))
-+ if (a > ((LONG_MAX) / 100))
-+#else
- if (a > MAXLONG / 100)
-+#endif
- kdDebug(OPALE_DEBUG_STREAM) << "Price out of limits(1)" << endl;
-
- return (a >= 0) ? 100 * a + b : 100 * a - b;
-@@ -356,7 +369,11 @@
- {
- /* provisoire */
- a = atol (buf);
-+#if (defined(BSD) && (BSD >= 199306))
-+ if (a > ((LONG_MAX) / 100))
-+#else
- if (a > ((MAXLONG) / 100))
-+#endif
- kdDebug(OPALE_DEBUG_STREAM) << "Price out of limits(2)" << endl;
- return (100 * a);
- }
diff --git a/finance/opale/pkg-descr b/finance/opale/pkg-descr
deleted file mode 100644
index b404ff90fdee..000000000000
--- a/finance/opale/pkg-descr
+++ /dev/null
@@ -1,13 +0,0 @@
-[ excerpt from developer's www site ]
-
-Opale is a very simple personal bank account manager for KDE and
-KOffice. The precise specifications are opale should do what I
-need.
-
-I'm not releasing Opale in the hope it will be useful for anybody.
-Of course I'll be glad if it ever is, but I'm mostly expecting you
-to find Opale quite limited. It should be easy to improve , though,
-with new filters for example. And I can help you if needed.
-
-Author: Thomas Capricelli
-WWW: http://orzel.freehackers.org/opale/
diff --git a/finance/opale/pkg-plist b/finance/opale/pkg-plist
deleted file mode 100644
index 94984630cad6..000000000000
--- a/finance/opale/pkg-plist
+++ /dev/null
@@ -1,56 +0,0 @@
-bin/opale
-lib/kde3/libcashimport.la
-lib/kde3/libcashimport.so
-lib/libopalepart.la
-lib/libopalepart.so
-lib/libopalepart.so.0
-lib/opale.la
-lib/opale.so
-share/applnk/Office/opale.desktop
-share/apps/opale/opale.rc
-share/icons/crystalsvg/32x32/apps/opale.png
-share/icons/crystalsvg/48x48/apps/opale.png
-share/icons/crystalsvg/scalable/apps/opale.svg
-share/icons/locolor/16x16/apps/opale.png
-share/icons/locolor/32x32/apps/opale.png
-share/locale/de/LC_MESSAGES/opale-0.5.mo
-share/locale/et/LC_MESSAGES/opale-0.5.mo
-share/locale/fr/LC_MESSAGES/opale-0.5.mo
-share/locale/it/LC_MESSAGES/opale-0.5.mo
-share/locale/ru/LC_MESSAGES/opale-0.5.mo
-share/mimelnk/application/x-cash-be.desktop
-share/mimelnk/application/x-cash-le.desktop
-share/mimelnk/application/x-opale.desktop
-share/services/opale_cash_import.desktop
-@unexec rmdir %D/share/services 2>/dev/null || true
-@unexec rmdir %D/share/mimelnk/application 2>/dev/null || true
-@unexec rmdir %D/share/mimelnk 2>/dev/null || true
-@unexec rmdir %D/share/locale/ru/LC_MESSAGES 2>/dev/null || true
-@unexec rmdir %D/share/locale/ru 2>/dev/null || true
-@unexec rmdir %D/share/locale/it/LC_MESSAGES 2>/dev/null || true
-@unexec rmdir %D/share/locale/it 2>/dev/null || true
-@unexec rmdir %D/share/locale/fr/LC_MESSAGES 2>/dev/null || true
-@unexec rmdir %D/share/locale/fr 2>/dev/null || true
-@unexec rmdir %D/share/locale/et/LC_MESSAGES 2>/dev/null || true
-@unexec rmdir %D/share/locale/et 2>/dev/null || true
-@unexec rmdir %D/share/locale/de/LC_MESSAGES 2>/dev/null || true
-@unexec rmdir %D/share/locale/de 2>/dev/null || true
-@unexec rmdir %D/share/locale 2>/dev/null || true
-@unexec rmdir %D/share/icons/locolor/32x32/apps 2>/dev/null || true
-@unexec rmdir %D/share/icons/locolor/32x32 2>/dev/null || true
-@unexec rmdir %D/share/icons/locolor/16x16/apps 2>/dev/null || true
-@unexec rmdir %D/share/icons/locolor/16x16 2>/dev/null || true
-@unexec rmdir %D/share/icons/locolor 2>/dev/null || true
-@unexec rmdir %D/share/icons/crystalsvg/scalable/apps 2>/dev/null || true
-@unexec rmdir %D/share/icons/crystalsvg/scalable 2>/dev/null || true
-@unexec rmdir %D/share/icons/crystalsvg/48x48/apps 2>/dev/null || true
-@unexec rmdir %D/share/icons/crystalsvg/48x48 2>/dev/null || true
-@unexec rmdir %D/share/icons/crystalsvg/32x32/apps 2>/dev/null || true
-@unexec rmdir %D/share/icons/crystalsvg/32x32 2>/dev/null || true
-@unexec rmdir %D/share/icons/crystalsvg 2>/dev/null || true
-@unexec rmdir %D/share/icons 2>/dev/null || true
-@unexec rmdir %D/share/apps/opale 2>/dev/null || true
-@unexec rmdir %D/share/apps 2>/dev/null || true
-@unexec rmdir %D/share/applnk/Office 2>/dev/null || true
-@unexec rmdir %D/share/applnk 2>/dev/null || true
-@unexec rmdir %D/lib/kde3 2>/dev/null || true