From 93aaca3a3cf2bc5b894539ca19af9050a74eb231 Mon Sep 17 00:00:00 2001 From: Baptiste Daroussin Date: Mon, 2 May 2011 05:34:15 +0000 Subject: Remove unmaintain expired ports from palm 2011-05-01 palm/jfconv: Upstream disapear and distfile is no more available 2011-05-01 palm/palmpower: Upstream disapear and distfile is no more available 2011-05-01 palm/sitescooper: Upstream disapear and distfile is no more available 2011-05-01 palm/uppc-kmod: Upstream disapear and distfile is no more available --- palm/jfconv/Makefile | 31 ------------ palm/jfconv/distinfo | 2 - palm/jfconv/files/patch-aa | 115 --------------------------------------------- palm/jfconv/pkg-descr | 7 --- palm/jfconv/pkg-plist | 3 -- 5 files changed, 158 deletions(-) delete mode 100644 palm/jfconv/Makefile delete mode 100644 palm/jfconv/distinfo delete mode 100644 palm/jfconv/files/patch-aa delete mode 100644 palm/jfconv/pkg-descr delete mode 100644 palm/jfconv/pkg-plist (limited to 'palm/jfconv') diff --git a/palm/jfconv/Makefile b/palm/jfconv/Makefile deleted file mode 100644 index b09b63f23e22..000000000000 --- a/palm/jfconv/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# ports collection makefile for: jfconv -# Date created: 14 May 2000 -# Whom: Akinori MUSHA aka knu -# -# $FreeBSD$ -# - -PORTNAME= jfconv -PORTVERSION= 2000.05.17 -CATEGORIES= palm databases -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= knu -DISTNAME= jconv -EXTRACT_SUFX= .tgz - -MAINTAINER= ports@FreeBSD.org -COMMENT= Converts JFile database to CSV, and vice versa - -DEPRECATED= Upstream disapear and distfile is no more available -EXPIRATION_DATE= 2011-05-01 - -ALL_TARGET= # none - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/jconv ${PREFIX}/bin/jfconv -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} -.endif - -.include diff --git a/palm/jfconv/distinfo b/palm/jfconv/distinfo deleted file mode 100644 index 1f000714f89f..000000000000 --- a/palm/jfconv/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (jconv.tgz) = 506351e89846f590cb525b88f3404e3b5ee94a06d5355784fca3bf463c060508 -SIZE (jconv.tgz) = 18135 diff --git a/palm/jfconv/files/patch-aa b/palm/jfconv/files/patch-aa deleted file mode 100644 index be99e3b862bc..000000000000 --- a/palm/jfconv/files/patch-aa +++ /dev/null @@ -1,115 +0,0 @@ ---- jconv.c.orig Fri Nov 21 16:35:40 2003 -+++ jconv.c Fri Nov 21 16:35:40 2003 -@@ -67,7 +67,7 @@ - strcpy(infile, ""); - - delimChar = ','; /* standard */ -- m_CommaDelim = 1; /* standard */ -+ m_CommandLineComma = 1; /* standard */ - m_UseInfoFile = 0; - - while((o = getopt(argc, argv, "edvht:i:s")) != EOF) { -@@ -76,7 +76,7 @@ - break; - case 'd': encode = 'd'; - break; -- case 's': m_CommaDelim = 0; -+ case 's': m_CommandLineComma = 0; - break; - case 't': strncpy(title, optarg, 32); - title[31] = 0; -@@ -176,7 +176,7 @@ - FILE* input; - FILE* output; - FILE* info; -- tHeader header; -+ tHeader header = { 0 }; - WORD oddity = 0x008C; - int numNonDeletedRecs; - JFileAppInfoType appInfo; -@@ -185,7 +185,7 @@ - int curDumpLoc; - char* tempPopupPtr; - int usesInfoFile; -- int fldLens[MAX_FIELDS]; -+ int fldLens[MAX_FIELDS] = { 0 }; - unsigned char holdChr[2]; - char endMsg[2048]; - char recNumStr[10]; -@@ -437,7 +437,7 @@ - int i,j; - char dbName[200]; - int usesInfoFile; -- tHeader header; -+ tHeader header = { 0 }; - char inputString[MAX_RECORD_LENGTH]; - int inputStringLoc, inputStringLen; - JFileAppInfoType appInfo; -@@ -747,7 +747,7 @@ - if(inputStringLoc - dataLocs[currentField] > MAX_DATA_LENGTH) - { - sprintf(errorNum, "%d", currentRecord+1); -- sprintf(errorStr, "Field data too long -+ sprintf(errorStr, "Field data too long\n\ - at record: %s", errorNum); - MessageBox2( errorStr, NULL, MB_OK ); - fclose(input); -@@ -1165,10 +1165,6 @@ - sprintf(recNumStr, "%d", currentRecord+1); - sprintf(endMsg, "Conversion of %s records in %s to %s was successful!", - recNumStr, m_CSVPath, m_PDBPath); -- -- if(!m_IsCommandLine) -- MessageBox( endMsg, NULL, MB_OK ); -- - } - - int TypeIsString(int t) -@@ -1599,16 +1595,16 @@ - void showsynopsis() - { - fprintf(stderr, --"jconv [-e|-d] [-i ] [-t title] -- -- -e encode: csv -> pdb -- -d decode: pdb -> csv -- -s use semicolon as delimiter -- -i use as infofile -- -t title title is the db-name -- -v print version information -- -h print this message -- -+"jconv [-e|-d] [-i ] [-t title] \n\ -+\n\ -+ -e encode: csv -> pdb\n\ -+ -d decode: pdb -> csv\n\ -+ -s use semicolon as delimiter\n\ -+ -i use as infofile\n\ -+ -t title title is the db-name\n\ -+ -v print version information\n\ -+ -h print this message\n\ -+\n\ - "); - return; - } -@@ -1625,13 +1621,13 @@ - - void showversion() - { -- fprintf(stderr, " --jconv: Converts JFile Pro database files to csv-files and vica versa --Version 1.0 --copyright 1999 by Andreas Mock --with permission of J. J. Lehett --see also www.land-j.com -- -+ fprintf(stderr, "\n\ -+jconv: Converts JFile Pro database files to csv-files and vica versa\n\ -+Version 1.0\n\ -+copyright 1999 by Andreas Mock \n\ -+with permission of J. J. Lehett \n\ -+see also www.land-j.com\n\ -+\n\ - "); - return; - } diff --git a/palm/jfconv/pkg-descr b/palm/jfconv/pkg-descr deleted file mode 100644 index dde31020d4e8..000000000000 --- a/palm/jfconv/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -JFConv is a quick port from the -original gui-based, object-oriented program jconvpro.exe with -permissions from J.J. Lehett. All object-oriented and gui-derived -stuff is thrown away. The source code was "c-ified" and command line -options added. - -WWW: http://www.land-j.com/jfileu.html diff --git a/palm/jfconv/pkg-plist b/palm/jfconv/pkg-plist deleted file mode 100644 index 84f40a8da34e..000000000000 --- a/palm/jfconv/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -bin/jfconv -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%@dirrm %%DOCSDIR%% -- cgit v1.2.3