summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2001-09-11Make print-PLIST work again if no linux=procfs mounted.wiz1-6/+9
Patch by hubertf.
2001-09-11Update to 0.6. No functional changes, but pkgsrc patches integrated.wiz2-7/+5
2001-09-11Use libpcap buildlink.mk instead of OS test. By Stoned Elipot from pkg/13928.wiz1-2/+4
2001-09-11Properly bring ucd-snmp-current back to life. Eventuallywrstuden6-0/+425
ucd-snmp should be updated to this version too.
2001-09-11Kill the zombies.wrstuden6-425/+0
The moral of the story is that cvs 1.11 doesn't like: cvs update Modify files cvs update after someone else has deleted them but with enough local changes that they don't disapear cvs ci The checkin succeeds, but the ,v file stays in the attic.
2001-09-11Second try at reviving.wrstuden1-0/+74
Original message: Bring ucd-snmp-current back to life. This is a package of ucd-snmp 4.2.1, the latest release of the net-snmp project (the name change is still in progress).
2001-09-11This file didn't come back to live right. Try killing it again to see ifwrstuden1-74/+0
I can fix it.
2001-09-10- install the source to the example program (as recommended by thedmcmahill7-16/+73
program author and desired by at least one package user). - format string patch for 64-bit systems - add message notifying users that an executible cgi program has been installed in their cgi-bin directory (since they may wish to disable them).
2001-09-10Add support for two environment variables to help update all yourmartin1-1/+12
installed packages and only rebuild everything once: STOP_DOWNLEVEL_AFTER_FIRST if set makes "make show-downlevel" stop a bit earlier (since with the other one below you will be only interested in the first downlevel pkg found). REBUILD_DOWNLEVEL_DEPENDS if set forces the pattern match for dependencies to fail whenever the installed pkg is not the version in the makefile (i.e. "make show-downlevel" would print a version mismatch for the dependecy). This causes all downlevel dependencies (and everything depending on them) to be rebuild. Enhancements, like making this all work with make command line flags and settings in /etc/mk.conf are welcome. A way to stop "make show-downlevel" through all upper levels of recursion imediately would be very usefull too.
2001-09-10libpcap buildlink instead of OS test. By Stoned Elipot in pkg/13921.wiz1-7/+2
2001-09-10Man page fixes.wiz2-6/+52
2001-09-10Use libpcap buildlink.mk instead of OS-test.wiz1-5/+3
By Stoned Elipot in pkg/13920.
2001-09-10Use libpcap buildlink.mk instead of an .ifdef ${OPSYS} hack.wiz1-7/+2
From Stoned Elipot in pkg/13918.
2001-09-10Fix path, as described in pkg/13917.wiz1-2/+2
2001-09-10Back out previous change and don't install the empty xmesa.h intojlam1-15/+1
${BUILDLINK_DIR}. The consensus on tech-pkg@netbsd.org (2000-09-10) seems to be to fix the packages that include <GL/xmesa.h> instead of using a workaround.
2001-09-10Homepage changedhubertf1-2/+2
2001-09-10Set the default value of WRKSRC in a slightly different way (from Hubertagc1-3/+2
Feyrer).
2001-09-10xmesa.h shouldn't be directly included.skrll4-1/+40
This should hopefully fix build problems on XF4 installations, eg. Hubert's bulk build machine.
2001-09-10Normalise patch format.skrll30-138/+116
patchdiff now works.
2001-09-10correct checksum. PR 13910itojun1-3/+3
2001-09-10Define default value of WRKSRC again. It is required by the packages withoutkei1-1/+3
NO_WRKSUBDIR.
2001-09-10fix PKGNAME... one of these days i'll gonna add a PKGREVISION variable. :/hubertf1-2/+3
2001-09-10forgot to commit these fileshubertf2-0/+48
2001-09-10Oops; include full path names in the patch.mycroft2-11/+11
(BTW, this also fixes the problem of scrollkeeper installing stuff in /.)
2001-09-10Fix problems with scrollkeeper-install overrunning the end of a buffer whenmycroft2-1/+80
calling realpath().
2001-09-09Back down the autoconf version.mycroft1-2/+2
2001-09-09Update to the version of the PostgreSQL JDBC support which comes withjwise5-52/+30
postgresql-7.1.2. Most visible changes are that the authors now use jakarta-ant to build this package, and that the authors have removed support for building javadoc documentation for this package. This latter is rather unfortunate, and may need to be addressed within the package. Also, at some point this week, I will try to rework this package to use the postgresql Makefile.common, as the original package now fits a little more closely into the postgresql build hierarchy. This package also adds one to the number of jakarta-ant using packages in pkgsrc. At some point soonish I will code up a USE_ANT flag in bsd.pkg.mk to cut out the duplication of effort... Other changes include: Tue Mar 06 12:05:00 GMT 2001 peter@retep.org.uk - Removed org.postgresql.xa.Test from the JDBC EE driver as it's an old test class and prevented it from compiling. Fri Mar 02 10:00:00 GMT 2001 peter@retep.org.uk - Fixed build.xml so that PGclob is not built in the JDBC1.2 driver Fri Feb 17 18:25:00 GMT 2001 peter@retep.org.uk - Removed the last deprecation warnings from the Java2 driver. Now only the old examples give deprecation warnings. - Added a new class into core that (JDK1.3+) ensures all connections are closed when the VM terminates. Fri Feb 17 15:11:00 GMT 2001 peter@retep.org.uk - Reduced the object overhead in PreparedStatement by reusing the same StringBuffer object throughout. Similarly SimpleDateStamp's are alse reused in a thread save manner. - Implemented in PreparedStatement: setNull(), setDate/Time/Timestamp using Calendar, setBlob(), setCharacterStream() - Clob's are now implemented in ResultSet & PreparedStatement! - Implemented a lot of DatabaseMetaData & ResultSetMetaData methods. We have about 18 unimplemented methods left in JDBC2 at the current time. Web Feb 14 17:29:00 GMT 2001 peter@retep.org.uk - Fixed bug in LargeObject & BlobOutputStream where the stream's output was not flushed when either the stream or the blob were closed. - Fixed PreparedStatement.setBinaryStream() where it ignored the length Tue Feb 13 16:33:00 GMT 2001 peter@retep.org.uk - More TestCases implemented. Refined the test suite api's. - Removed need for SimpleDateFormat in ResultSet.getDate() improving performance. - Rewrote ResultSet.getTime() so that it uses JDK api's better. Tue Feb 13 10:25:00 GMT 2001 peter@retep.org.uk - Added MiscTest to hold reported problems from users. - Fixed PGMoney. - JBuilder4/JDBCExplorer now works with Money fields. Patched Field & ResultSet (lots of methods) for this one. Also changed cash/money to return type DOUBLE not DECIMAL. This broke JBuilder as zero scale BigDecimal's can't have decimal places! - When a Statement is reused, the previous ResultSet is now closed. - Removed deprecated call in ResultSet.getTime() Thu Feb 08 18:53:00 GMT 2001 peter@retep.org.uk - Changed a couple of settings in DatabaseMetaData where 7.1 now supports those features - Implemented the DatabaseMetaData TestCase. Wed Feb 07 18:06:00 GMT 2001 peter@retep.org.uk - Added comment to Connection.isClosed() explaining why we deviate from the JDBC2 specification. - Fixed bug where the Isolation Level is lost while in autocommit mode. - Fixed bug where several calls to getTransactionIsolationLevel() returned the first call's result. Tue Feb 06 19:00:00 GMT 2001 peter@retep.org.uk - Completed first two TestCase's for the test suite. JUnit is now recognised by ant. Wed Jan 31 08:46:00 GMT 2001 peter@retep.org.uk - Some minor additions to Statement to make our own extensions more portable. - Statement.close() will now call ResultSet.close() rather than just dissasociating with it. Tue Jan 30 22:24:00 GMT 2001 peter@retep.org.uk - Fixed bug where Statement.setMaxRows() was a global setting. Now limited to just itself. - Changed LargeObject.read(byte[],int,int) to return the actual number of bytes read (used to be void). - LargeObject now supports InputStream's! - PreparedStatement.setBinaryStream() now works! - ResultSet.getBinaryStream() now returns an InputStream that doesn't copy the blob into memory first! - Connection.isClosed() now tests to see if the connection is still alive rather than if it thinks it's alive. Thu Jan 25 09:11:00 GMT 2001 peter@retep.org.uk - Added an alternative constructor to PGSQLException so that debugging some more osteric bugs is easier. If only 1 arg is supplied and it's of type Exception, then that Exception's stacktrace is now included. Wed Jan 24 09:18:00 GMT 2001 peter@retep.org.uk - Removed the 8k limit by setting it to 64k Fri Jan 19 08:47:00 GMT 2001 peter@retep.org.uk - Applied patch submitted by John Schutz <schutz@austin.rr.com> that fixed a bug with ANT's SQL functions (not needed for building but nice to have fixed). Thu Jan 18 17:30:00 GMT 2001 peter@retep.org.uk - Added new error message into errors.properties "postgresql.notsensitive" This is used by jdbc2.ResultSet when a method is called that should fetch the current value of a row from the database refreshRow() for example. - These methods no longer throw the not implemented but the new noupdate error. This is in preparation for the Updateable ResultSet support which will overide these methods by extending the existing class to implement that functionality, but needed to show something other than notimplemented: moveToCurrentRow() moveToInsertRow() rowDeleted() rowInserted() all update*() methods, except those that took the column as a String as they were already implemented to convert the String to an int. - getFetchDirection() and setFetchDirection() now throws "postgresql.notimp" as we only support one direction. The CursorResultSet will overide this when its implemented. - Created a new class under jdbc2 UpdateableResultSet which extends ResultSet and overides the relevent update methods. This allows us to implement them easily at a later date. - In jdbc2.Connection, the following methods are now implemented: createStatement(type,concurrency); getTypeMap(); setTypeMap(Map); - The JDBC2 type mapping scheme almost complete, just needs SQLInput & SQLOutput to be implemented. - Removed some Statement methods that somehow appeared in Connection. - In jdbc2.Statement() getResultSetConcurrency() getResultSetType() setResultSetConcurrency() setResultSetType() - Finally removed the old 6.5.x driver. Thu Jan 18 12:24:00 GMT 2001 peter@retep.org.uk - These methods in org.postgresql.jdbc2.ResultSet are now implemented: getBigDecimal(int) ie: without a scale (why did this get missed?) getBlob(int) getCharacterStream(int) getConcurrency() getDate(int,Calendar) getFetchDirection() getFetchSize() getTime(int,Calendar) getTimestamp(int,Calendar) getType() NB: Where int represents the column name, the associated version taking a String were already implemented by calling the int version. - These methods no longer throw the not implemented but the new noupdate error. This is in preparation for the Updateable ResultSet support which will overide these methods by extending the existing class to implement that functionality, but needed to show something other than notimplemented: cancelRowUpdates() deleteRow() - Added new error message into errors.properties "postgresql.noupdate" This is used by jdbc2.ResultSet when an update method is called and the ResultSet is not updateable. A new method notUpdateable() has been added to that class to throw this exception, keeping the binary size down. - Added new error message into errors.properties "postgresql.psqlnotimp" This is used instead of unimplemented when it's a feature in the backend that is preventing this method from being implemented. - Removed getKeysetSize() as its not part of the ResultSet API Thu Jan 18 09:46:00 GMT 2001 peter@retep.org.uk - Applied modified patch from Richard Bullington-McGuire <rbulling@microstate.com>. I had to modify it as some of the code patched now exists in different classes, and some of it actually patched obsolete code. Wed Jan 17 10:19:00 GMT 2001 peter@retep.org.uk - Updated Implementation to include both ANT & JBuilder - Updated README to reflect the changes since 7.0 - Created jdbc.jpr file which allows JBuilder to be used to edit the source. JBuilder _CAN_NOT_ be used to compile. You must use ANT for that. It's only to allow JBuilders syntax checking to improve the drivers source. Refer to Implementation for more details Wed Dec 20 16:19:00 GMT 2000 peter@retep.org.uk - Finished build.xml and updated Driver.java.in and buildDriver to match how Makefile and ANT operate. Tue Dec 19 17:30:00 GMT 2000 peter@retep.org.uk - Finally created ant build.xml file Mon Nov 20 08:12:00 GMT 2000 peter@retep.org.uk - Encoding patch to Connection by wrobell@posexperts.com.pl Tue Oct 17 15:35:00 BST 2000 petermount@maidstone.gov.uk - Changed getTimestamp() again. This time Michael Stephenson's <mstephenson@tirin.openworld.co.uk> solution looked far better than the original solution put in June. Tue Oct 10 13:12:00 BST 2000 peter@retep.org.uk - DatabaseMetaData.supportsAlterTableWithDropColumn() as psql doesn't support dropping of individual columns - Merged in some last patches. Only 1 left, which may not be compatible with jdbc1 - Merged in my old retepsql project. Makefile now includes it. Mon Oct 02 12:30:00 BST 2000 peter@retep.org.uk - Merged in byte[] array allocation changes submitted by Gunnar R|nning <gunnar@candleweb.no> Mon Sep 25 14:22:00 BST 2000 peter@retep.org.uk - Removed the DriverClass kludge. Now the org.postgresql.Driver class is compiled from a template file, and now has both the connection class (ie jdbc1/jdbc2) and the current version's from Makefile.global Thu Jul 20 16:30:00 BST 2000 petermount@it.maidstone.gov.uk - Fixed DatabaseMetaData.getTableTypes()
2001-09-09NO_WRKSUBDIR is deprecated, while USE_LIBTOOL isn't anymore.wiz2-7/+7
Version now 3.08.
2001-09-09Deprecate NO_WRKSUBDIR, replacing it with an explicit assignment of:agc170-341/+352
WRKSRC= ${WRKDIR} This is much cleaner, much more indicative of what happens, and removes another of the negative definitions (NO_.* = value).
2001-09-09Update smtpfeed to 1.15.taca2-5/+5
1.15: Aug.26,2001: dns.c: avoid DNS query synchronization when no queries are sent in case a LMTP connection is used for multiple transaction. lmtp.c: some messages in setproctitle() are changed. main.c: logging peer-name for use with inetd (LMTP over TCP) README: some comments added: Sendmail 8.12 includes the DYNAMIC_TOBUF feature by default which supplied from 3.xW patch for sendmail. So you do not need the patch any more if you do not use extensions in sendmail.cf description offered by the patch. 1.14: Aug.15,2001: smtp.c: changes on some timeout values work around for bogus mail gateway to mobile phone... fix on NULL pointer access which causes unterminating process with proctitle like: "smtpfeed: 550% delivered" reported by Hisaaki Shibata <shibata@luky.org> fixed by Anatoly A. Orehovsky <tolik@asplinux.ru> do not rewrite envelope sender using the following rule when sender is <>: SndrUser+RcptUser=RcptDomain@SndrDomain problem reported by Shin ZUKERAN <shin@ryukyu.ad.jp> log.c: increase retry counter value common.h, address.c, smtp.c, extern.h, main.c, util.c: support par domain recipient number setting with file suggested by Koji Kawano <kawano@eng.trans-cosmos.co.jp>
2001-09-09Enable wide patch and make this package sendmail-8.11.6nb1.taca2-6/+8
Please look at ${WRKSRC}/sendmail/00READ_ME.WIDE file created by sendmail8.11.6+3.4W.patch.gz for detail of the patch.
2001-09-09Standardize format.wiz1-0/+5
2001-09-09Install SECURITY information cited during installation.wiz3-12/+17
Note its existence in MESSAGE for binary package users. First part requested by mycroft.
2001-09-09Add and enable dactrh1-1/+2
2001-09-09Initial import of dact-0.8.3, the dynamic adaptive compression tool.rh5-0/+40
2001-09-09Remove dependency on perl. It should have been a build-dependency, but evenwiz1-3/+2
that is not needed, contrary to what the configure script says.
2001-09-09Remove dependency on perl -- it's only useful together with a) some morewiz1-2/+1
perl packages b) lynx or c) wget, and then only for web-installing themes.
2001-09-09Update package to 0.6.2magick3-15/+22
Too many changes to list here, since 0.6.0. See http://www.nefkom.net/tomzo/prj/nxtvepg/changelog.html for a changelist.
2001-09-09Fix fuzz in patch detected by "gpatch" under Solaris.tron2-11/+8
2001-09-09Updated to tfkiss-1.2.4:wulf2-5/+5
Bug fix resolving build problem with flexnet support enabled
2001-09-09Add OpenMotif.def so binary packages work.jlam1-1/+2
2001-09-09Fix problem reported by Takahiro Kambe <taca@sky.yamashina.kyoto.jp>jlam3-4/+21
where libchasen.so wasn't being found by the perl Makefile generation process. This is done by passing the location of the chasen installation through to Makefile.PL via an environment variable, and should serve as a model for fixes to similar problems with other perl modules.
2001-09-09Move buildlink.mk from chasen-base to chasen.jlam2-47/+47
2001-09-09The chasen meta-package should at least depend on a similarly versionedjlam1-16/+16
chasen-base package.
2001-09-09Add a buildlink.mk file for use by other package Makefiles.jlam1-0/+47
2001-09-09Mark as USE_BUILDLINK_ONLY.jlam1-1/+2
2001-09-09USE_X11 --> x11.buildlink.mkjlam1-3/+2
2001-09-09Move inclusion of bsd.pkg.mk from Makefile.common into the individualjlam6-20/+26
package Makefiles. The idiom is to define any variables, include Makefile.common, then any additional targets, then include bsd.pkg.mk.
2001-09-09Move USE_BUILDLINK_ONLY definition out of Makefile.common and into thejlam18-37/+45
individual package Makefiles.
2001-09-09Create an empty xmesa.h file in ${BUILDLINK_DIR}/include if it doesn'tjlam1-1/+15
already exist. This file is in Mesa-3.4.2, but not in the Mesa included with XFree86-4.x where the definitions in the file have migrated elsewhere. We create an empty one in this case to prevent compile errors caused by source files including xmesa.h and not finding it.