Index: head/databases/hk_classes/Makefile =================================================================== --- head/databases/hk_classes/Makefile (revision 168547) +++ head/databases/hk_classes/Makefile (revision 168548) @@ -1,150 +1,158 @@ # New ports collection makefile for: hk_classes # Date created: 25 July 2002 # Whom: arved # # $FreeBSD$ PORTNAME= hk_classes -PORTVERSION= 0.8 -PORTREVISION= 1 +PORTVERSION= 0.8.1 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= hk-classes MAINTAINER= sem@FreeBSD.org COMMENT= C++ Library for rapid development of database applications BUILD_DEPENDS= ${LOCALBASE}/include/argp.h:${PORTSDIR}/devel/argp-standalone +LIB_DEPENDS= fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig USE_BZIP2= yes USE_ICONV= yes USE_PYTHON= yes USE_GNOME= pkgconfig +USE_GETTEXT= yes CXXFLAGS+= ${PTHREAD_CFLAGS} LDFLAGS= ${PTHREAD_LIBS} -L${LOCALBASE}/lib -largp -lintl USE_AUTOTOOLS= libtool:15 -CONFIGURE_ENV+= LIBPYTHON="-l${PYTHON_VERSION} ${PTHREAD_LIBS}" +CONFIGURE_ENV+= PYTHON_VERSION=${PYTHON_VERSION:S/python//} LDFLAGS="${LDFLAGS}" CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ARGS+=--with-pythondir=${PYTHONBASE} +CONFIGURE_ARGS+=--with-python-libdir=${PYTHON_LIBDIR} \ + --with-python-incdir=${PYTHON_INCLUDEDIR} \ + --with-fontconfig-incdir=${X11BASE}/include/fontconfig \ + --with-fontconfig-libdir=${X11BASE}/lib INSTALLS_SHLIB= yes LDCONFIG_DIRS+= ${PREFIX}/lib/hk_classes/ NOT_FOR_ARCHS= ia64 NOT_FOR_ARCHS_REASON_ia64= Does not build OPTIONS= MYSQL "Build MySQL driver" on \ POSTGRESQL "Build PostrgreSQL driver" off \ ODBC "Build unixODBC driver" off \ FIREBIRD "Build Firebird driver" off \ PARADOX "Build Paradox driver" off \ SQLITE2 "Build with sqlite2 driver" off \ SQLITE3 "Build with sqlite3 driver" off MAN1= hk_report.1man hk_actionquery.1man hk_exportxml.1man \ hk_exporthtml.1man hk_exportcsv.1man hk_importcsv.1man \ hk_dbcopy.1man .include + +.if ${OSVERSION} < 500000 +IGNORE= there is no wchar support +.endif .if !defined(WITHOUT_MYSQL) USE_MYSQL= yes CONFIGURE_ARGS+= --with-mysql-dir=${LOCALBASE} \ --with-mysql-incdir=${LOCALBASE}/include/mysql \ --with-mysql-libdir=${LOCALBASE}/lib/mysql CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib -L${LOCALBASE}/lib/mysql" PLIST_SUB+= MYSQL="" .else CONFIGURE_ARGS+= --without-mysql PLIST_SUB+= MYSQL="@comment " .endif .if defined(WITH_POSTGRESQL) USE_PGSQL= yes CONFIGURE_ARGS+= --with-postgres-incdir=${LOCALBASE}/include/ \ --with-postgres-libdir=${LOCALBASE}/lib CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib" PLIST_SUB+= POSTGRESQL="" .else CONFIGURE_ARGS+= --without-postgres PLIST_SUB+= POSTGRESQL="@comment " .endif .if defined(WITH_ODBC) LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC CONFIGURE_ARGS+= --with-odbc-incdir=${LOCALBASE}/include/\ --with-odbc-libdir=${LOCALBASE}/lib PLIST_SUB+= ODBC="" .else CONFIGURE_ARGS+= --without-odbc PLIST_SUB+= ODBC="@comment " .endif .if defined(WITH_FIREBIRD) LIB_DEPENDS+= gds:${PORTSDIR}/databases/firebird-client CONFIGURE_ARGS+= --with-firebird-incdir=${LOCALBASE}/include/\ --with-firebird-libdir=${LOCALBASE}/lib PLIST_SUB+= FIREBIRD="" .else CONFIGURE_ARGS+= --without-firebird PLIST_SUB+= FIREBIRD="@comment " .endif .if defined(WITH_PARADOX) LIB_DEPENDS+= px:${PORTSDIR}/databases/pxlib CONFIGURE_ARGS+= --with-paradox-incdir=${LOCALBASE}/include/\ --with-paradox-libdir=${LOCALBASE}/lib PLIST_SUB+= PARADOX="" .else CONFIGURE_ARGS+= --without-paradox PLIST_SUB+= PARADOX="@comment " .endif # XXX does not work yet .if defined(WITH_MSACCESS) LIB_DEPENDS+= mdb:${PORTSDIR}/databases/mdbtools CONFIGURE_ARGS+= --with-mdb-incdir=${LOCALBASE}/include/\ --with-mdb-libdir=${LOCALBASE}/lib PLIST_SUB+= MSACCESS="" .else CONFIGURE_ARGS+= --without-mdb PLIST_SUB+= MSACCESS="@comment " .endif # XXX does not work yet .if defined(WITH_DBASE) LIB_DEPENDS+= xbase:${PORTSDIR}/databases/xbase CONFIGURE_ARGS+= --with-xbase-incdir=${LOCALBASE}/include/xbase \ --with-xbase-libdir=${LOCALBASE}/lib PLIST_SUB+= DBASE="" .else CONFIGURE_ARGS+= --without-xbase PLIST_SUB+= DBASE="@comment " .endif .if defined(WITH_SQLITE2) LIB_DEPENDS+= sqlite.2:${PORTSDIR}/databases/sqlite2 CONFIGURE_ARGS+= --with-sqlite-incdir=${LOCALBASE}/include/\ --with-sqlite-libdir=${LOCALBASE}/lib PLIST_SUB+= SQLITE2="" .else CONFIGURE_ARGS+= --without-sqlite PLIST_SUB+= SQLITE2="@comment " .endif .if defined(WITH_SQLITE3) LIB_DEPENDS+= sqlite3:${PORTSDIR}/databases/sqlite3 CONFIGURE_ARGS+= --with-sqlite-incdir3=${LOCALBASE}/include/\ --with-sqlite-libdir3=${LOCALBASE}/lib PLIST_SUB+= SQLITE3="" .else CONFIGURE_ARGS+= --without-sqlite3 PLIST_SUB+= SQLITE3="@comment " .endif post-install: @${SED} -e 's#%%PREFIX%%#${PREFIX}#' ${FILESDIR}/hk_classes.sh > \ ${PREFIX}/etc/rc.d/hk_classes.sh; \ ${CHMOD} a+x ${PREFIX}/etc/rc.d/hk_classes.sh .include Property changes on: head/databases/hk_classes/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.29 \ No newline at end of property +1.30 \ No newline at end of property Index: head/databases/hk_classes/distinfo =================================================================== --- head/databases/hk_classes/distinfo (revision 168547) +++ head/databases/hk_classes/distinfo (revision 168548) @@ -1,3 +1,3 @@ -MD5 (hk_classes-0.8.tar.bz2) = f28a87596f4a46a19db3e769d1c9c7e2 -SHA256 (hk_classes-0.8.tar.bz2) = ca4ffb42d01f555b2d35b25fbacb1cbb8c484722992e59c4a3e61fd64986c3d3 -SIZE (hk_classes-0.8.tar.bz2) = 739952 +MD5 (hk_classes-0.8.1.tar.bz2) = 5fe19945c746854776266f7e96de0a2e +SHA256 (hk_classes-0.8.1.tar.bz2) = 9e403fe153962770676099c2346a74b96953eba790a289303c49fe448c958603 +SIZE (hk_classes-0.8.1.tar.bz2) = 1413828 Property changes on: head/databases/hk_classes/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/databases/hk_classes/files/patch-configure =================================================================== --- head/databases/hk_classes/files/patch-configure (nonexistent) +++ head/databases/hk_classes/files/patch-configure (revision 168548) @@ -0,0 +1,20 @@ +--- configure.orig Sat Jul 22 12:08:15 2006 ++++ configure Sat Jul 22 12:08:43 2006 +@@ -20549,7 +20549,7 @@ + py_version=`$PYTHON -c "from distutils.sysconfig import *; \ + from string import join; \ + print join(get_config_vars('VERSION'))"` +- if test "$py_version" == "None"; then ++ if test "$py_version" = "None"; then + if test -n "$PYTHON_VERSION"; then + py_version=$PYTHON_VERSION + else +@@ -20815,7 +20815,7 @@ + fi + + if test "x$with_fontconfig_libdir" != "x"; then +- FONTCONFIGLIBDIR=$with_fontconifg_libdir ++ FONTCONFIGLIBDIR=$with_fontconfig_libdir + fi + + ac_save_LIBS="$LIBS" Property changes on: head/databases/hk_classes/files/patch-configure ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.4 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/databases/hk_classes/files/patch-utilities::Makefile.in =================================================================== --- head/databases/hk_classes/files/patch-utilities::Makefile.in (revision 168547) +++ head/databases/hk_classes/files/patch-utilities::Makefile.in (revision 168548) @@ -1,33 +1,33 @@ ---- utilities/Makefile.in.orig Sun Oct 23 18:56:09 2005 -+++ utilities/Makefile.in Sat Dec 10 20:00:12 2005 -@@ -238,22 +238,22 @@ - sysconfdir = @sysconfdir@ +--- utilities/Makefile.in.orig Sat Jul 22 12:09:44 2006 ++++ utilities/Makefile.in Sat Jul 22 12:11:59 2006 +@@ -237,22 +237,22 @@ target_alias = @target_alias@ INCLUDES = -I../hk_classes --hk_report_LDFLAGS = -lhk_classes -ldl -L../hk_classes -+hk_report_LDFLAGS = -lhk_classes -L../hk_classes -largp ${LIBPTHREAD} + AM_CXXFLAGS = -Wall -W -Wconversion -Wshadow -Wcast-qual -Wwrite-strings +-hk_report_LDADD = ../hk_classes/libhk_classes.la -ldl ++hk_report_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} hk_report_SOURCES = hk_reportutility.cpp --#hk_webform_LDFLAGS = -lhk_classes -ldl -L../hk_classes -+#hk_webform_LDFLAGS = -lhk_classes -L../hk_classes +-#hk_webform_LDADD = ../hk_classes/libhk_classes.la -ldl ++#hk_webform_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} #hk_webform_SOURCES = hk_webformutility.cpp --hk_actionquery_LDFLAGS = -lhk_classes -ldl -L../hk_classes -+hk_actionquery_LDFLAGS = -lhk_classes -L../hk_classes -largp ${LIBPTHREAD} +-hk_actionquery_LDADD = ../hk_classes/libhk_classes.la -ldl ++hk_actionquery_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} hk_actionquery_SOURCES = hk_actionqueryutility.cpp --hk_exportxml_LDFLAGS = -lhk_classes -ldl -L../hk_classes -+hk_exportxml_LDFLAGS = -lhk_classes -L../hk_classes -largp ${LIBPTHREAD} +-hk_exportxml_LDADD = ../hk_classes/libhk_classes.la -ldl ++hk_exportxml_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} hk_exportxml_SOURCES = hk_exportxmlutility.cpp --hk_exportcsv_LDFLAGS = -lhk_classes -ldl -L../hk_classes -+hk_exportcsv_LDFLAGS = -lhk_classes -L../hk_classes -largp ${LIBPTHREAD} +-hk_exportcsv_LDADD = ../hk_classes/libhk_classes.la -ldl ++hk_exportcsv_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} hk_exportcsv_SOURCES = hk_exportcsvutility.cpp --hk_exporthtml_LDFLAGS = -lhk_classes -ldl -L../hk_classes -+hk_exporthtml_LDFLAGS = -lhk_classes -L../hk_classes -largp ${LIBPTHREAD} +-hk_exporthtml_LDADD = ../hk_classes/libhk_classes.la -ldl ++hk_exporthtml_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} hk_exporthtml_SOURCES = hk_exporthtmlutility.cpp --hk_importcsv_LDFLAGS = -lhk_classes -ldl -L../hk_classes -+hk_importcsv_LDFLAGS = -lhk_classes -L../hk_classes -largp ${LIBPTHREAD} +-hk_importcsv_LDADD = ../hk_classes/libhk_classes.la -ldl ++hk_importcsv_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} hk_importcsv_SOURCES = hk_importcsvutility.cpp -hk_dbcopy_LDFLAGS = -lhk_classes -ldl -L../hk_classes -+hk_dbcopy_LDFLAGS = -lhk_classes -L../hk_classes -largp ${LIBPTHREAD} ++hk_dbcopy_LDFLAGS = -lhk_classes -largp ${LIBPTHREAD} -L../hk_classes hk_dbcopy_SOURCES = hk_dbcopyutility.cpp man_MANS = hk_report.1man hk_actionquery.1man hk_dbcopy.1man hk_exportxml.1man \ hk_exporthtml.1man hk_exportcsv.1man hk_importcsv.1man Property changes on: head/databases/hk_classes/files/patch-utilities::Makefile.in ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/databases/hk_classes/pkg-plist =================================================================== --- head/databases/hk_classes/pkg-plist (revision 168547) +++ head/databases/hk_classes/pkg-plist (revision 168548) @@ -1,95 +1,96 @@ etc/rc.d/hk_classes.sh bin/hk_actionquery bin/hk_dbcopy bin/hk_exportcsv bin/hk_exporthtml bin/hk_exportxml bin/hk_importcsv bin/hk_report include/hk_classes/hk_actionquery.h include/hk_classes/hk_button.h include/hk_classes/hk_class.h include/hk_classes/hk_classes.h include/hk_classes/hk_colour.h include/hk_classes/hk_column.h include/hk_classes/hk_connection.h include/hk_classes/hk_data.h include/hk_classes/hk_database.h include/hk_classes/hk_datasource.h include/hk_classes/hk_datetime.h include/hk_classes/hk_dbvisible.h include/hk_classes/hk_definitions.h include/hk_classes/hk_drivermanager.h include/hk_classes/hk_dsboolean.h include/hk_classes/hk_dscombobox.h include/hk_classes/hk_dsdatavisible.h include/hk_classes/hk_dsdate.h include/hk_classes/hk_dsgrid.h include/hk_classes/hk_dsgridcolumn.h include/hk_classes/hk_dsimage.h include/hk_classes/hk_dslineedit.h include/hk_classes/hk_dsmemo.h include/hk_classes/hk_dsmodevisible.h include/hk_classes/hk_dsquery.h include/hk_classes/hk_dsrowselector.h include/hk_classes/hk_dstable.h include/hk_classes/hk_dsvisible.h include/hk_classes/hk_font.h include/hk_classes/hk_form.h include/hk_classes/hk_importcsv.h include/hk_classes/hk_interpreter.h include/hk_classes/hk_key.h include/hk_classes/hk_label.h +include/hk_classes/hk_mimetype.h include/hk_classes/hk_presentation.h include/hk_classes/hk_qbe.h include/hk_classes/hk_referentialintegrity.h include/hk_classes/hk_report.h include/hk_classes/hk_reportdata.h include/hk_classes/hk_reportsection.h include/hk_classes/hk_reportsectionpair.h include/hk_classes/hk_reportutils.h include/hk_classes/hk_storagecolumn.h include/hk_classes/hk_storagedatasource.h include/hk_classes/hk_string.h include/hk_classes/hk_subform.h include/hk_classes/hk_tabvisible.h include/hk_classes/hk_url.h include/hk_classes/hk_visible.h %%FIREBIRD%%lib/hk_classes/drivers/libhk_firebirddriver.a %%FIREBIRD%%lib/hk_classes/drivers/libhk_firebirddriver.la %%FIREBIRD%%lib/hk_classes/drivers/libhk_firebirddriver.so %%FIREBIRD%%lib/hk_classes/drivers/libhk_firebirddriver.so.0 %%MYSQL%%lib/hk_classes/drivers/libhk_mysqldriver.a %%MYSQL%%lib/hk_classes/drivers/libhk_mysqldriver.la %%MYSQL%%lib/hk_classes/drivers/libhk_mysqldriver.so %%MYSQL%%lib/hk_classes/drivers/libhk_mysqldriver.so.3 %%ODBC%%lib/hk_classes/drivers/libhk_odbcdriver.a %%ODBC%%lib/hk_classes/drivers/libhk_odbcdriver.la %%ODBC%%lib/hk_classes/drivers/libhk_odbcdriver.so %%ODBC%%lib/hk_classes/drivers/libhk_odbcdriver.so.0 %%PARADOX%%lib/hk_classes/drivers/libhk_paradoxdriver.a %%PARADOX%%lib/hk_classes/drivers/libhk_paradoxdriver.la %%PARADOX%%lib/hk_classes/drivers/libhk_paradoxdriver.so.0 %%PARADOX%%lib/hk_classes/drivers/libhk_paradoxdriver.so %%POSTGRESQL%%lib/hk_classes/drivers/libhk_postgresdriver.a %%POSTGRESQL%%lib/hk_classes/drivers/libhk_postgresdriver.la %%POSTGRESQL%%lib/hk_classes/drivers/libhk_postgresdriver.so %%POSTGRESQL%%lib/hk_classes/drivers/libhk_postgresdriver.so.0 %%SQLITE2%%lib/hk_classes/drivers/libhk_sqlite2driver.a %%SQLITE2%%lib/hk_classes/drivers/libhk_sqlite2driver.la %%SQLITE2%%lib/hk_classes/drivers/libhk_sqlite2driver.so %%SQLITE2%%lib/hk_classes/drivers/libhk_sqlite2driver.so.0 %%SQLITE3%%lib/hk_classes/drivers/libhk_sqlite3driver.a %%SQLITE3%%lib/hk_classes/drivers/libhk_sqlite3driver.la %%SQLITE3%%lib/hk_classes/drivers/libhk_sqlite3driver.so %%SQLITE3%%lib/hk_classes/drivers/libhk_sqlite3driver.so.0 %%PYTHON_SITELIBDIR%%/_hk_classes.so %%PYTHON_SITELIBDIR%%/hk_classes.py %%PYTHON_SITELIBDIR%%/hk_classes.pyc lib/hk_classes/libhk_classes.a lib/hk_classes/libhk_classes.la lib/hk_classes/libhk_classes.so -lib/hk_classes/libhk_classes.so.9 +lib/hk_classes/libhk_classes.so.13 @dirrm lib/hk_classes/drivers @dirrm lib/hk_classes @dirrm include/hk_classes Property changes on: head/databases/hk_classes/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.14 \ No newline at end of property +1.15 \ No newline at end of property Index: head/databases/knoda/Makefile =================================================================== --- head/databases/knoda/Makefile (revision 168547) +++ head/databases/knoda/Makefile (revision 168548) @@ -1,34 +1,32 @@ # New ports collection makefile for: knoda # Date created: 26.7.2002 # Whom: arved # # $FreeBSD$ PORTNAME= knoda -PORTVERSION= 0.8 -PORTREVISION= 1 +PORTVERSION= 0.8.1 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= sem@FreeBSD.org COMMENT= Database frontend for KDE BUILD_DEPENDS= ${LOCALBASE}/include/argp.h:${PORTSDIR}/devel/argp-standalone -LIB_DEPENDS= hk_classes.9:${PORTSDIR}/databases/hk_classes +LIB_DEPENDS= hk_classes.13:${PORTSDIR}/databases/hk_classes USE_BZIP2= yes USE_KDELIBS_VER= 3 USE_PYTHON= yes USE_GMAKE= yes USE_AUTOTOOLS= libtool:15 INSTALLS_SHLIB= yes -CONFIGURE_TARGET= -CONFIGURE_ARGS+= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} \ - --with-hk_classes-dir=${LOCALBASE}/lib/hk_classes \ +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ARGS+= --with-hk_classes-dir=${LOCALBASE}/lib/hk_classes \ --with-hk_classes-incdir=${LOCALBASE}/include/hk_classes post-patch: ${REINPLACE_CMD} -e 's,-pedantic ,,' ${WRKSRC}/configure .include Property changes on: head/databases/knoda/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.26 \ No newline at end of property +1.27 \ No newline at end of property Index: head/databases/knoda/distinfo =================================================================== --- head/databases/knoda/distinfo (revision 168547) +++ head/databases/knoda/distinfo (revision 168548) @@ -1,3 +1,3 @@ -MD5 (knoda-0.8.tar.bz2) = f47ef584a7e95df9f7670ba88fbd1eb5 -SHA256 (knoda-0.8.tar.bz2) = f3c4d9c175eaf1b792f90d525f6a855dedb8ef23daf8088bca78f27b634373e0 -SIZE (knoda-0.8.tar.bz2) = 4432725 +MD5 (knoda-0.8.1.tar.bz2) = fc36e9f4f59978d2df83c9c7e3caebbc +SHA256 (knoda-0.8.1.tar.bz2) = 8855374cede5fa5ca6321c80f200f62577efe4f9b0ef416541d8e05292ea3993 +SIZE (knoda-0.8.1.tar.bz2) = 4463670 Property changes on: head/databases/knoda/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.10 \ No newline at end of property +1.11 \ No newline at end of property Index: head/databases/knoda/pkg-plist =================================================================== --- head/databases/knoda/pkg-plist (revision 168547) +++ head/databases/knoda/pkg-plist (revision 168548) @@ -1,243 +1,245 @@ bin/knoda bin/knoda-rt include/hk_kdeboolean.h include/hk_kdebutton.h include/hk_kdecolumn.h include/hk_kdecombobox.h include/hk_kdecsvexportdialog.h include/hk_kdecsvimportdialog.h include/hk_kdecsvimportdialogbase.h include/hk_kdedatasource.h include/hk_kdedate.h include/hk_kdedbdesignerpart.h include/hk_kdedbdesignerpartfactory.h include/hk_kdedblistview.h include/hk_kdedriverdialog.h include/hk_kdefilterdialog.h include/hk_kdefilterdialogbase.h include/hk_kdefinddialog.h include/hk_kdefinddialogbase.h include/hk_kdeform.h include/hk_kdeformdatasourcedialog.h include/hk_kdeformdatasourcedialogbase.h include/hk_kdeformfocus.h include/hk_kdeformpart.h include/hk_kdeformpartfactory.h include/hk_kdeformpartwidget.h include/hk_kdegrid.h include/hk_kdegridcolumndialog.h include/hk_kdegridcolumndialogbase.h include/hk_kdegridpart.h include/hk_kdegridpartfactory.h include/hk_kdeimage.h include/hk_kdeindexeditwindow.h include/hk_kdeinterpreterdialog.h include/hk_kdelabel.h include/hk_kdelineedit.h include/hk_kdememo.h include/hk_kdemessages.h include/hk_kdenewpassworddialog.h include/hk_kdenewpassworddialogbase.h include/hk_kdepassworddialog.h include/hk_kdeproperty.h include/hk_kdepropertybase.h include/hk_kdeqbe.h include/hk_kdeqbepart.h include/hk_kdeqbepartfactory.h include/hk_kdequery.h include/hk_kdequerypart.h include/hk_kdequerypartfactory.h include/hk_kdequerypartwidget.h include/hk_kdereport.h include/hk_kdereportdata.h include/hk_kdereportpart.h include/hk_kdereportpartfactory.h include/hk_kdereportpartwidget.h include/hk_kdereportproperty.h include/hk_kdereportpropertybase.h include/hk_kdereportsection.h include/hk_kdereportsectiondialog.h include/hk_kdereportsectiondialogbase.h include/hk_kderowselector.h include/hk_kdesimpleform.h include/hk_kdesimplegrid.h include/hk_kdesimplereport.h include/hk_kdesubform.h include/hk_kdesubreportdialog.h include/hk_kdesubreportdialogbase.h include/hk_kdetable.h include/hk_kdetabledesign.h include/hk_kdetablepart.h include/hk_kdetablepartfactory.h include/hk_kdetablepartwidget.h include/hk_kdetoolbar.h include/hk_kdexmlexportdialog.h include/hk_kdexmlexportdialogbase.h lib/kde3/libhk_kdedbdesignerpart.a lib/kde3/libhk_kdedbdesignerpart.la lib/kde3/libhk_kdedbdesignerpart.so lib/kde3/libhk_kdeformpart.a lib/kde3/libhk_kdeformpart.la lib/kde3/libhk_kdeformpart.so lib/kde3/libhk_kdegridpart.a lib/kde3/libhk_kdegridpart.la lib/kde3/libhk_kdegridpart.so lib/kde3/libhk_kdeqbepart.a lib/kde3/libhk_kdeqbepart.la lib/kde3/libhk_kdeqbepart.so lib/kde3/libhk_kdequerypart.a lib/kde3/libhk_kdequerypart.la lib/kde3/libhk_kdequerypart.so lib/kde3/libhk_kdereportpart.a lib/kde3/libhk_kdereportpart.la lib/kde3/libhk_kdereportpart.so lib/kde3/libhk_kdetablepart.a lib/kde3/libhk_kdetablepart.la lib/kde3/libhk_kdetablepart.so lib/libhk_kdeclasses.a lib/libhk_kdeclasses.la lib/libhk_kdeclasses.so share/applnk/Office/knoda.desktop share/apps/hk_kdeclasses/hk_kdedbdesigner.rc share/apps/hk_kdeclasses/hk_kdedbdesignerpart.rc share/apps/hk_kdeclasses/hk_kdeform.rc share/apps/hk_kdeclasses/hk_kdeformpartdesign.rc share/apps/hk_kdeclasses/hk_kdeformpartview.rc share/apps/hk_kdeclasses/hk_kdegridpart.rc share/apps/hk_kdeclasses/hk_kdeinterpreterdialog.rc share/apps/hk_kdeclasses/hk_kdeqbepart.rc share/apps/hk_kdeclasses/hk_kdequery.rc share/apps/hk_kdeclasses/hk_kdequerypart.rc share/apps/hk_kdeclasses/hk_kdequerypartqbe.rc share/apps/hk_kdeclasses/hk_kdequerypartsql.rc share/apps/hk_kdeclasses/hk_kdereport.rc share/apps/hk_kdeclasses/hk_kdereportpartdesign.rc share/apps/hk_kdeclasses/hk_kdereportpartview.rc share/apps/hk_kdeclasses/hk_kdetable.rc share/apps/hk_kdeclasses/hk_kdetablepart.rc share/apps/hk_kdeclasses/knodamaindockwindowbase.rc share/apps/hk_kdeclasses/pics/add.png share/apps/hk_kdeclasses/pics/boolean22x22.png share/apps/hk_kdeclasses/pics/button.png share/apps/hk_kdeclasses/pics/combobox22x22.png share/apps/hk_kdeclasses/pics/dbdesigner.png share/apps/hk_kdeclasses/pics/delete.png share/apps/hk_kdeclasses/pics/designmode.png share/apps/hk_kdeclasses/pics/edit.png share/apps/hk_kdeclasses/pics/filter.png share/apps/hk_kdeclasses/pics/filterexec.png share/apps/hk_kdeclasses/pics/find.png share/apps/hk_kdeclasses/pics/first.png share/apps/hk_kdeclasses/pics/grid22x22.png share/apps/hk_kdeclasses/pics/gridadd22x22.png share/apps/hk_kdeclasses/pics/gridcursor.png share/apps/hk_kdeclasses/pics/gridfilter.png share/apps/hk_kdeclasses/pics/image.png +share/apps/hk_kdeclasses/pics/key.png share/apps/hk_kdeclasses/pics/label.png share/apps/hk_kdeclasses/pics/last.png share/apps/hk_kdeclasses/pics/multiline.png share/apps/hk_kdeclasses/pics/next.png share/apps/hk_kdeclasses/pics/pfeil.png share/apps/hk_kdeclasses/pics/previous.png share/apps/hk_kdeclasses/pics/propertyeditor.png share/apps/hk_kdeclasses/pics/reportsection.png share/apps/hk_kdeclasses/pics/rowselector22x22.png share/apps/hk_kdeclasses/pics/save.png share/apps/hk_kdeclasses/pics/saveas.png share/apps/hk_kdeclasses/pics/store.png share/apps/hk_kdeclasses/pics/viewmode.png share/apps/knoda/hk_kdeworkspace.rc share/apps/knoda/knodaui.rc share/apps/knoda/pics/knodalogo.png share/config/magic/hk_classes.magic share/doc/HTML/en/knoda/class-overview2.png share/doc/HTML/en/knoda/combobox1.png share/doc/HTML/en/knoda/combobox2.png share/doc/HTML/en/knoda/comboboxselector.png share/doc/HTML/en/knoda/common share/doc/HTML/en/knoda/complexreport.png share/doc/HTML/en/knoda/csvexport.png share/doc/HTML/en/knoda/csvimport.png share/doc/HTML/en/knoda/dbregional.png share/doc/HTML/en/knoda/exportimportmanager.png share/doc/HTML/en/knoda/filter.png share/doc/HTML/en/knoda/filterdefinition.png share/doc/HTML/en/knoda/form.png share/doc/HTML/en/knoda/form2.png share/doc/HTML/en/knoda/formdatasource.png share/doc/HTML/en/knoda/formdatasource2.png share/doc/HTML/en/knoda/formdatasource3.png share/doc/HTML/en/knoda/formdatasource4.png share/doc/HTML/en/knoda/formdesign.png share/doc/HTML/en/knoda/formdesign1.png share/doc/HTML/en/knoda/formdesign2.png share/doc/HTML/en/knoda/formreport.png share/doc/HTML/en/knoda/formreportproperty.png share/doc/HTML/en/knoda/gridcolumndefinition.png share/doc/HTML/en/knoda/gridcolumndefinition2.png share/doc/HTML/en/knoda/hk_classes-overview.png share/doc/HTML/en/knoda/index.cache.bz2 share/doc/HTML/en/knoda/index.docbook share/doc/HTML/en/knoda/installation.docbook share/doc/HTML/en/knoda/knoda.png share/doc/HTML/en/knoda/knoda2.png share/doc/HTML/en/knoda/knodascriptingtutorial.docbook share/doc/HTML/en/knoda/literaturetable.png share/doc/HTML/en/knoda/mainwindow-sdi.png share/doc/HTML/en/knoda/mainwindow.png share/doc/HTML/en/knoda/mainwindow2.png share/doc/HTML/en/knoda/modebuttons.png share/doc/HTML/en/knoda/objecthandling.png share/doc/HTML/en/knoda/options.png share/doc/HTML/en/knoda/options1.png share/doc/HTML/en/knoda/options2.png share/doc/HTML/en/knoda/options3.png share/doc/HTML/en/knoda/options4.png share/doc/HTML/en/knoda/passworddialog.png share/doc/HTML/en/knoda/printbutton.png share/doc/HTML/en/knoda/propertyeditor.png share/doc/HTML/en/knoda/pythonreference.docbook share/doc/HTML/en/knoda/qbe.png share/doc/HTML/en/knoda/qbetoggle.png share/doc/HTML/en/knoda/reportdesign.png share/doc/HTML/en/knoda/reportsectiondialog.png share/doc/HTML/en/knoda/reviewform.png share/doc/HTML/en/knoda/reviewform1.png share/doc/HTML/en/knoda/reviewform2.png share/doc/HTML/en/knoda/rowselector.png share/doc/HTML/en/knoda/simplereport.png share/doc/HTML/en/knoda/subreport.png share/doc/HTML/en/knoda/tabledata.png share/doc/HTML/en/knoda/tabledesign.png share/doc/HTML/en/knoda/tablewithcombo.png share/doc/HTML/en/knoda/taborder1.png share/doc/HTML/en/knoda/taborder2.png share/doc/HTML/en/knoda/tutorial.docbook share/doc/HTML/en/knoda/xmlexport.png share/icons/hicolor/16x16/apps/knoda.png share/icons/hicolor/32x32/apps/knoda.png share/icons/locolor/16x16/apps/knoda.png share/icons/locolor/32x32/apps/knoda.png share/locale/bg/LC_MESSAGES/knoda.mo share/locale/de/LC_MESSAGES/knoda.mo share/locale/es/LC_MESSAGES/knoda.mo share/locale/fr/LC_MESSAGES/knoda.mo share/locale/hu/LC_MESSAGES/knoda.mo +share/locale/ru/LC_MESSAGES/knoda.mo share/mimelnk/application/x-hk_classes-sqlite2.desktop share/mimelnk/application/x-hk_classes-sqlite3.desktop share/mimelnk/application/x-hk_connection.desktop share/mimelnk/application/x-paradox.desktop share/mimelnk/application/x-xbase.desktop share/services/hk_kdedbdesignerpart.desktop share/services/hk_kdeformpart.desktop share/services/hk_kdegridpart.desktop share/services/hk_kdeqbepart.desktop share/services/hk_kdequerypart.desktop share/services/hk_kdereportpart.desktop share/services/hk_kdetablepart.desktop @dirrm share/apps/hk_kdeclasses/pics/ @dirrm share/apps/hk_kdeclasses @dirrm share/apps/knoda/pics @dirrm share/apps/knoda @dirrm share/config/magic @dirrm share/doc/HTML/en/knoda Property changes on: head/databases/knoda/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property