- software author added new headers to tarball

- tarball was rerolled, hence new checksum
- bump PORTREVISION

PR:		55825
Submitted by:	Ruslan Babayev <ruslan@babayev.com>
		KATO Tsuguru <tkato@prontomail.com>
This commit is contained in:
Kirill Ponomarev 2003-08-22 14:09:47 +00:00
parent 41407446e2
commit 288af27a17
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=87504
3 changed files with 2 additions and 56 deletions

View file

@ -7,6 +7,7 @@
PORTNAME= qhacc
PORTVERSION= 2.9.1
PORTREVISION= 1
CATEGORIES= finance
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
@ -29,9 +30,6 @@ INSTALLS_SHLIB= yes
STRIP= # none
post-extract:
@${CP} -f ${FILESDIR}/xmlplugin.h ${WRKSRC}/plugins/xml
post-patch:
@${REINPLACE_CMD} 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure
@${REINPLACE_CMD} -e 's|#! /bin/sh|#!${LOCALBASE}/bin/bash|g ; \

View file

@ -1 +1 @@
MD5 (qhacc-2.9.1.tar.gz) = 67ddb65c89424bf684b1dca998d0a212
MD5 (qhacc-2.9.1.tar.gz) = 1e8b88a7ee1978bdcc7915ca9915a945

View file

@ -1,52 +0,0 @@
/************************* * * * * * * * * * * * * ***************************
Copyright (c) 1999-2003 Ryan Bobko
ryan@ostrich-emulators.com
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
************************** * * * * * * * * * * * * **************************/
#ifndef XMLIMPORTER_H
#define XMLIMPORTER_H
#include "localfileplugin.h"
#include <stdlib.h>
#include <tree.h>
#include <xmlmemory.h>
#include <parser.h>
class XMLDBPlugin : public LocalFileDBPlugin {
public:
XMLDBPlugin();
virtual ~XMLDBPlugin();
virtual bool load( QHacc * eng, const QString& home, QString& error );
virtual bool save( const QString&, bool, QString& );
virtual QString description() const;
static QString sdescription();
virtual QString understands() const; // what QHACC_HOME keywords do I know?
static QString sunderstands(); // what QHACC_HOME keywords do I know?
protected:
void writeTable( QHaccResultSet& data, const char ** lbls, uint lblcnt,
xmlDocPtr tree, xmlNsPtr ns, const QString& label ) const;
void readTable( QHaccResultSet& data, const char ** lbls,
uint lblcnt, xmlNodePtr cur, xmlDocPtr doc,
const QString& label ) const;
};
#endif