summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-08-13emulators/stella now uses SDL (SDL is no longer optional), so remove thisdillo3-40/+0
package
2004-08-13update to 1.4.dillo7-250/+90
Changes: * Codebase ported to SDL. X11/OSS ports have been discontinued. * Added OpenGL rendering support. (not enabled in pkgsrc) * Added more refined in-game GUI. * Added event remapping. Emulation keys can now be remapped to the keyboard or up to 4 joysticks. * Added native Stelladaptor support. Joysticks, paddles, and driving controllers have been tested. * Digital sound support has been greatly improved. * Added support for switchable palettes. * Added support for UA Limited style bankswitching (Funky Fish and Pleiades). * Switched to using high compatibility M6502 mode by default. This means old state saves from previous Stella versions will no longer work.
2004-08-13Fix build after introduction of PATCH_DIST_STRIPabs1-3/+2
2004-08-13This package requires thread-enabled Python.minskim1-2/+3
2004-08-13Check for very system headers used in the sources.jlam3-2/+241
2004-08-13Check for all system headers needed in the sources.jlam3-278/+559
2004-08-13Typo: it's <regex.h>, not <regext.h>.jlam3-4/+4
2004-08-13Add checks for all of the system headers used in the sources. Also includejlam4-9/+137
missing <netdb.h> in lib/ftpio.c for MAXHOSTNAMELEN definition on Solaris.
2004-08-13Drop whitespace at EOL.wiz1-2/+2
2004-08-13Update for automake-1.9.wiz1-3/+3
2004-08-13Note working status on Solaris 2.7 (from PR pkg/26625).jlam1-1/+2
2004-08-13Note automake-1.9.1 update.wiz1-1/+2
2004-08-13Update to 1.9.1:wiz3-7/+9
Bugs fixed in 1.9.1: This release fixes three longstanding bugs. * Adjust #line directives in `parser.h' (when ylwrap is not used). (PR/432) * Fix definition of YLWRAP when ylwrap is installed in a default aux directory found in a parent package. * Properly recognize AC_CANONICAL_BUILD and AC_CANONICAL_TARGET. New in 1.9: * Makefile.in bloat reduction: - Inference rules are used to compile sources in subdirectories when the `subdir-objects' option is used and no per-target flags are used. This should reduce the size of some projects a lot, because Automake used to output an explicit rule for each such object in the past. - Automake no longer outputs three rules (.o, .obj, .lo) for each object that must be built with explicit rules. It just outputs the rules required to build the kind of object considered: either the two .o and .obj rules for usual objects, or the .lo rule for libtool objects. * Change to Libtool support: - Libtool tags are used with libtool versions that support them. (I.e., with Libtool 1.5 or greater.) - Automake is now able to handle setups where a libtool library is conditionally installed in different directories, as in if COND lib_LTLIBRARIES = liba.la else pkglib_LTLIBRARIES = liba.la endif liba_la_SOURCES = ... * Changes to aclocal: - aclocal now ensures that AC_DEFUNs and AU_DEFUNs it discovers are really evaluated, before it decides to include them in aclocal.m4. This solves nasty problems with conditional redefinitions of Autoconf macros in /usr/share/aclocal/*.m4 files causing extraneous *.m4 files to be included in any project using these macros. (Calls to AC_PROG_EGREP causing libtool.m4 to be included is the most famous instance of this bug.) - Do not complain about missing conditionally AC_REQUIREd macros that are not actually used. In 1.8.x aclocal would correctly determine which of these macros were really needed (and include only these in the package); unfortunately it would also require all of them to be present in order to run. This created situations were aclocal would not work on a tarball distributing all the macros it uses. For instance running aclocal on a project containing only the subset of the Gettext macros in use by the project did not work, because gettext conditionally requires other macros. * Portability improvements: - Tar format can be chosen with the new options tar-v7, tar-ustar, and tar-pax. The new option filename-length-max=99 helps diagnosing filenames that are too long for tar-v7. (PR/414) - Variables aumented with `+=' are now automatically flattened (i.e., trailing backslashes removed) and then wrapped around 80 colummns (adding trailing backslashes). In previous versions, a long series of VAR += value1 VAR += value2 VAR += value3 ... would result in a single-line definition of VAR that could possibly exceed the maximum line length of some make implementations. Non-augmented variables are still output as they are defined in the Makefile.am. * Miscellaneous: - Support Fortran 90/95 with the new "fc" and "ppfc" languages. Works the same as the old Fortran 77 implementation; just replace F77 with FC everywhere (exception: FFLAGS becomes FCFLAGS). Requires a version of autoconf which provides AC_PROG_FC (>=2.59). - Support for conditional _LISP. - Support for conditional -hook and -local rules (PR/428). - Diagnose AC_CONFIG_AUX_DIR calls following AM_INIT_AUTOMAKE. (PR/49) - Automake will not write any Makefile.ins after the first error it encounters. The previous Makefile.ins (if any) will be left in place. (Warnings will not prevent output, but remember they can be turned into errors with -Werror.) - The restriction that SUBDIRS must contain direct children is gone. Do not abuse. - The manual tells more about SUBDIRS vs. DIST_SUBDIRS. It also gives an example of nested packages using AC_CONFIG_SUBDIRS.
2004-08-13Note update of py-ldap to version 2.0.2.cube1-1/+2
2004-08-13Update to version 2.0.2. This, among a lot of other things, fixcube2-7/+6
compilation against newer OpenLDAP, as shown in bulk builds results. Changes since 2.0.1: Modules: * Fixed detecting appropriate OpenLDAP libs version for determining whether ldap_whoami_s() is available or not. This fixes build problems with OpenLDAP libs 2.1.0 up to 2.1.12. ---------------------------------------------------------------- Changes since 2.0.0: dsml: * Fixed wrong exception message format string ldap.schema.models: * Fixed Entry.__delitem__() to delete really everything when deleting an attribute dictionary item. ---------------------------------------------------------------- Changes since 2.0.0pre21: ldif: * Empty records are simply ignored in ldif.LDIFWriter.unparse() Modules/: * New method result2() returns 3-tuple containing the msgid of the outstanding operation. ldap.ldapobject: * New _ldap wrapper method LDAPObject.result2() (see above) which is now used by LDAPObject.result(). ---------------------------------------------------------------- Changes since 2.0.0pre20: setup.py: * runtime_library_dirs is set Modules/: * (Hopefully) fixed building with OpenLDAP 2.2 libs in errors.c * Removed meaningless repr() function from LDAPObject.c * Removed setting LDAP_OPT_PROTOCOL_VERSION in l_ldap_sasl_bind_s() * Modified string handling via berval instead of *char in l_ldap_compare_ext() makes it possible to compare attribute values with null chars. * Wrapped ldap_sasl_bind() for simple binds instead of ldap_bind() since 1. the latter is marked deprecated and 2. ldap_sasl_bind() allows password credentials with null chars. * Removed unused sources linkedlist.c and linkedlist.h * Function l_ldap_whoami_s() only added if built against OpenLDAP 2.1.x+ libs (should preserve compability with 2.0 libs) ldap.ldapobject: * LDAPObject.bind() only allows simple binds since Kerberos V4 binds of LDAPv2 are not supported anymore. An assert statement was added to make the coder aware of that. * Renamed former LDAPObject.sasl_bind_s() to LDAPObject.sasl_interactive_bind_s() since it wraps OpenLDAP's ldap_sasl_interactive_bind_s() ---------------------------------------------------------------- Changes since 2.0.0pre19: Modules/: * Removed doc strings from functions.c * Removed probably unused wrapper function l_ldap_dn2ufn() since ldap_dn2ufn() is deprecated in OpenLDAP 2.1+ * Removed wrapper function l_ldap_is_ldap_url(). * Removed macro add_int_r() from constants.c since it caused incompability issues with OpenLDAP 2.2 libs (Warning: all result types are Integers now! Use the constants!) * New wrapper function l_ldap_whoami_s() ldap.ldapobject: * New wrapper method LDAPObject.whoami_s() ldap.functions: * Removed is_ldap_url(). The more general function ldapurl.isLDAPUrl() should be used instead. ldap.sasl: * Added class cram_md5 (for SASL mech CRAM-MD5) ldap.async: * Use constants for search result types (see note about add_int_r() above). ---------------------------------------------------------------- Changes since 2.0.0pre18: Modules/: * LDAPObject.c: Most deprecated functions of OpenLDAP C API are not used anymore. * functions.c: Removed unused default_ldap_port(). * constants.c: Removed unused or silly constants AUTH_KRBV4, AUTH_KRBV41, AUTH_KRBV42, URL_ERR_BADSCOPE, URL_ERR_MEM * errors.c: Fixed building with OpenLDAP 2.2.x (errors caused by negative error constants in ldap.h) ldap.ldapobject.LDAPObject: * Removed unused wrapper methods uncache_entry(), uncache_request(), url_search(), url_search_st() and url_search_s() * New wrapper methods for all the _ext() methods in _ldap.LDAPObject. ldap.modlist: * Some performance optimizations and simplifications in function modifyModlist() ---------------------------------------------------------------- Changes since 2.0.0pre17: ldap.ldapobject: * Fixed missing ldap._ldap_function_call() in ReconnectLDAPObject.reconnect() ---------------------------------------------------------------- Changes since 2.0.0pre16: ldap.functions: * Fixed ImportError when running python -O ---------------------------------------------------------------- Changes since 2.0.0pre15: Modules/: * Removed definition of unused constant RES_EXTENDED_PARTIAL since the corresponding symbol LDAP_RES_EXTENDED_PARTIAL seems to not be available in OpenLDAP-HEAD (pre 2.2) anymore. All in Lib/: * Fixed some subtle bugs/oddities mentioned by pychecker. dsml: * Renamed DSMLWriter._f to DSMLWriter._output_file * Added wrapper method DSMLWriter.unparse() which simply calls DSMLWriter.writeRecord() ldap.ldapobject: * Simplified LDAPObject.search_subschemasubentry_s() ldap.functions: * Moved ldap._ldap_function_call() into ldap.functions. * apply() is not used anymore since it seems deprecated ldap.async: * Added class DSMLWriter ldap.schema: * Removed unused key-word argument strict from ldap.schema.subentry.SubSchema.attribute_types() * Fixed backward compability issue (for Python prior to 2.2) in ldap.schema.subentry.SubSchema.listall()
2004-08-13Updated net-snmp to 5.1.2, ethereal to 0.10.6adam2-3/+4
2004-08-13Changes 0.10.6:adam3-28/+32
* Windows preferences bug fixed * New utility: capinfo
2004-08-13Changes 5.1.2:adam9-343/+34
* Minor improvements to snmpdelta * Minor improvements to snmpnetstat (IPv6 output) * Fixes
2004-08-13scanssh-2.0 is now outadrianp1-1/+2
2004-08-13Note honeyd package bump to fix PR# 26620adrianp1-1/+2
2004-08-13- Include readline to fix Linux buildsadrianp1-3/+8
- Add Python support - Include an extra library on Linux to fix builds on some distros. Last two issues submitted by Roland Illig in PR# 26620
2004-08-13Initial import of hydan-0.13 into the Packages Collection.agc1-1/+2
Hydan steganographically conceals a message into an application. It exploits redundancy in the i386 instruction set by defining sets of functionally equivalent instructions. It then encodes information in machine code by using the appropriate instructions from each set. Features: - Application filesize remains unchanged - Message is blowfish encrypted with a user-supplied passphrase before being embedded - Encoding rate: 1/110 Primary uses for Hydan: - Covert Communication: embedding data into binaries creates a covert channel that can be used to exchange secret messages. - Signing: a program's cryptographic signature can be embedded into itself. The recipient of the binary can then verify that it has not been tampered with (virus or trojan), and is really from who it claims to be from. This check can be built into the OS for user transparency. - Watermarking: a watermark can be embedded to uniquely identify binaries for copyright purposes, or as part of a DRM scheme. Note: this usage is not recommended as Hydan implements fragile watermarks.
2004-08-13Add and enable hydanagc1-1/+2
2004-08-13Initial import of hydan-0.13 into the Packages Collection.agc4-0/+59
Hydan steganographically conceals a message into an application. It exploits redundancy in the i386 instruction set by defining sets of functionally equivalent instructions. It then encodes information in machine code by using the appropriate instructions from each set. Features: - Application filesize remains unchanged - Message is blowfish encrypted with a user-supplied passphrase before being embedded - Encoding rate: 1/110 Primary uses for Hydan: - Covert Communication: embedding data into binaries creates a covert channel that can be used to exchange secret messages. - Signing: a program's cryptographic signature can be embedded into itself. The recipient of the binary can then verify that it has not been tampered with (virus or trojan), and is really from who it claims to be from. This check can be built into the OS for user transparency. - Watermarking: a watermark can be embedded to uniquely identify binaries for copyright purposes, or as part of a DRM scheme. Note: this usage is not recommended as Hydan implements fragile watermarks.
2004-08-13@dirrm addition for macx-xlcadam1-1/+2
2004-08-13This can be built on Linux. No longer restricted only for NetBSD.uebayasi1-4/+1
Reported by Roland Illig, PR26623.
2004-08-13Also set PGSQL_VERSION_REQD to 73 for these until issues with PostgreSQLrecht3-3/+9
7.4 are sorted out.
2004-08-13Set PGSQL_VERSION_REQD to 73 (for now) to fix the build.recht2-2/+6
2004-08-13Add/use buildlink3.mk files.recht4-6/+46
2004-08-13Use a build dependency on devel/scons instead of a full dependencyrecht1-5/+4
on Python.
2004-08-13Note update of ion to version 20040729.cube1-1/+2
2004-08-13Update to version 20040729.cube2-5/+5
2004-07-29 * Added one missing set_previous_of call. * Ensure FD_CLOEXEC is set on all the file descriptors that we keep open for a longer time. 2004-06-19 * Fixed linking problems in the de module. * Export WScreen.set_managed_offset. 2004-06-05 * Added Xinerama sanity check.
2004-08-13Note net/lftp update.salo2-3/+3
2004-08-13Updated to version 3.0.7.salo2-5/+5
Changes: - slow-start in sftp implemented. - ftp proxy which expects user@proxy-user@host is now supported with new boolean setting ftp:proxy-auth-joined. - key passphrase for sftp is now supported. - new setting http:cache-control to set corresponding request header. - don't send FEAT to ftp proxy before login. - fixed timeout handling after FEAT command. - fixed find and du to show status line correctly when output goes to screen. - fixed shell (!) command to return proper error code. - fixed binding ftp data socket in non-passive mode.
2004-08-13Cosmetic changes.jlam2-9/+7
2004-08-13The name of this package is "cy2-sql".jlam1-5/+4
2004-08-13Note revision bump for libelfcube1-1/+2
2004-08-13The PLIST was far from complete [hi recht!] (package installed files incube3-5/+30
include/ and a locale file). But since the package's configure script is rather dumb about shared libraries and gettext catalogs, the best is to simply disable all of it. While I'm here, add a buildlink file since it will soon be used by a package in -wip.
2004-08-13Update pkgtools/libnbcompat to 20040813. Changes from version 20040809jlam6-36/+36
include working around an apparent bug in an autoconf macro defined in aclocal.m4. This should now cause getopt_long() to be built on systems that are missing getopt.h. This version of libnbcompat has been tested on the following platforms: FreeBSD-4.8/i386 MacOS X 10.2.8 NetBSD-1.6.2/i386
2004-08-13Add ${CAT} as the final pipeline command to BUILDLINK_FILES_CMD.<pkg> sojlam1-2/+2
that the whole pipeline returns 0. This avoids subtle breakage when the we use built-in software and there is actually no list of files passed as input to the pipeline, and the final egrep returns non-zero.
2004-08-13Update baekmuk-ttf to 2.2. Patch submitted by Kibum Han, the new maintainer.minskim5-27/+14
Changes: Minor improvements.
2004-08-13Update alee-ttf to 1.3. Patch submitted by Yi Min-Cheol, the maintainer.minskim4-10/+11
Changes since 1.1: * Update alphabet chars in Eunjin.ttf. * Update digit chars in Eunjin.ttf.
2004-08-13add bl3 filedmcmahill1-0/+26
2004-08-13USE_LANGUAGES= c c++ fortrandmcmahill1-1/+3
and also add GCC_REQ=3.0 as this doesn't build correctly with my 2.95.3 on NetBSD/alpha.
2004-08-13add bl3 filedmcmahill1-0/+30
2004-08-13add some quoting to deal with the case where a file in a packagedmcmahill1-10/+10
has a space in the filename. Without the quoting the buildlink stage fails completely with errors. ok'ed by Johnny Lam.
2004-08-13Add dependency on readline to build on platforms without a nativeminskim1-1/+2
readline library.
2004-08-12Update to opera 7.54.jdolecek3-11/+12
Changes since 7.53: Security * Denied write-access to properties on objects from scripts that fail a standard origin check, in order to block potential access by attackers to user's computer. Fixes critical vulnerability reported in GreyMagic Security Advisory GM#008-OP. * Fixed security issue regarding spoofing of the addressfield by loading other page contents while keeping the URL, reported in Secunia Advisory SA12162. * Blocked access to file:/ URLs from documents that are not themselves loaded from file:/ URLs. Miscellaneous * Fixed problem with canceling connections/downloads. * Cache-size limitation improved.
2004-08-12Properly quote the NICE_LEVEL variable to prevent errors.sketch1-2/+2
2004-08-12Use openssl hash functions on platforms that don't provide native hashminskim1-1/+9
functions.