summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-07-18Add comment and upstream bug report URL.wiz2-3/+7
2012-07-18emulators/vba: Fix for libz >= 1.2.6marino3-5/+16
The current package won't compile if using libz >= 1.2.6 due to a typedef change of GzFile. Fix inspired by r1091 at vbam.svn.sourceforge.net Package broke after DragonFly upgraded system libz from 1.2.5 to 1.2.7
2012-07-18security/zkt: Fix DragonFly regressionmarino1-1/+12
When this package was updated to version 1.1, it stopped building on DragonFly. The main issue is that DragonFly doesn't have bind in its base. NetBSD does, so it zkt finds it there, but otherwise it needs the configuration switch --enable-binutil-path to be used. This was added for DragonFly to point at ${PREFIX}/sbin. zkt requires bind to be installed in order to build. Unlike other packages like python, postgresql, and ruby where the mk.conf can define a version otherwise a default is used, no such mechanism exists to hand the four separate bind packages (at least I don't know about one). So the inclusion of bind99 is a hack I'm not too proud of, but I don't have a better solution. With it, it builds in clean environments like pbulk chroot and Tinderbox. If an individual user is building from source, they'll be smart enough to comment out this include if another version of bind is already installed (zkt will fail on a bind build conflict). I suspect DragonFly is rather unique in not having bind in base, so for now this is left as a DragonFly-specific section. Something like net/bind99/builtin.mk could possibly be used to determine if no builtin bind is available and thus follow DragonFly approach. I shall leave it to others to decide.
2012-07-18Fix in DEPENDS. ../../lang/php5 has been replaced with ../../lang/php53cheusov1-2/+2
as ../../lang/php5 doesn't exist in pkgsrc any longer.
2012-07-18Add LICENSEcheusov1-1/+2
2012-07-18Add command "reload" to rc.d file (SIGHUP sent to daemon)cheusov2-2/+4
++pkgrevision
2012-07-18games/xracer: NOT JOBS SAFEmarino1-2/+3
I don't know what changed, but this game starting failing on both platforms due to build order. Setting MAKE_JOBS_UNSAFE=no was the solution. The homepage is long gone, so that was commented out. FreeBSD Ports deleted this game in 2011-04-12 (ports/151390) It has not been developed since 2000 and the game was never finished. The developer website has disappeared Pkgsrc should follow suit and also delete this subpar package.
2012-07-18Updated www/squid31 to 3.1.20adam1-1/+2
2012-07-18Changes 3.1.20:adam2-6/+6
Bug 3013: segmentation fault on shutdown commSetCloseOnExec at comm.cc:1889 Bug 3233: Invalid URL accepted with url host is white spaces Bug 3074: Improper URL handling with empty path (RFC 3986) Bug 3463: dnsserver fails to compile Bug 3390: Proxy auth data visible to scripts Extend g++ compatibility for extern inline functions Bug 3545: FreeBSD dnsserver segfaults Bug 3466: Adaptation stuck on last single-byte body piece Bug 3539: CONNECT server connection not closed correctly on errors Bug 3133: Memory leak handling requests for sites that don't exist Bug 3504: Regression: clientside_tos fails to mark traffic Fix URL schemes out of sync AnyP is a 3.2-only namespace Support CoAP over HTTP Bug 3263: ssl_crtd: undefined references to squid_curtime Bug 3439: correct external_acl_type documented default for ipv4/ipv6 option Fix closePipesSafely. It is a 3.2 feature Revert rev10436. Correct patch already applied in 3.1.19 Bug 3420: part 2: Request body consumption races and theConsumer Better helper-to-Squid buffer size management. Support for 3.2 error template codes Translations: Sync with 3.2 Regression: snmp/udp address directives not resolving hostname Bug 3502: client timeout uses server-side read_timeout, not request_timeout
2012-07-18Note update of tex-texlive.infra.minskim1-1/+2
2012-07-18Update tex-texlive.infra to 2012. Mainly updmap configuration changes.minskim2-7/+7
2012-07-18Updated devel/xulrunner to 14.0.1ryoon1-1/+3
Updated www/firefox to 14.0.1
2012-07-18Update to 14.0.1ryoon17-159/+175
Changelog: NEW Google searches now utilize HTTPS NEW Full screen support for Mac OS X Lion implemented NEW Plugins can now be configured to only load on click (requires an about:config change) NEW The Awesome Bar now auto-completes typed URLs CHANGED Improved site identity manager, to prevent spoofing of an SSL connection with favicons DEVELOPER Pointer Lock API implemented DEVELOPER New API to prevent your display from sleeping DEVELOPER New text-transform and font-variant CSS improvements for Turkic languages and Greek FIXED Various security fixes FIXED GIF animation can gets stuck when src and image size are changed (743598) FIXED OS X: nsCocoaWindow::ConstrainPosition uses wrong screen in multi-display setup (752149) FIXED CSS :hover regression when an element's class name is set by Javascript (758885
2012-07-18add patch from the Bash project fixing CVE-2012-3410spz3-3/+41
2012-07-18Pass down ${_PATH_ORIG} to privileged stage sub make instead of modified ${PATH}obache1-4/+2
for pkgsrc internally, It may cause some problems (ex. unwanted pick up commands of tools/wrapper). No objection in teck-pkg@ for a week.
2012-07-18Updated devel/scmgit to 1.7.11.2adam1-1/+5
2012-07-18Changes 1.7.11.2:adam2-6/+6
* On Cygwin, the platform pread(2) is not thread safe, just like our own compat/ emulation, and cannot be used in the index-pack program. Makefile variable NO_THREAD_SAFE_PREAD can be defined to avoid use of this function in a threaded program. * "git add" allows adding a regular file to the path where a submodule used to exist, but "git update-index" does not allow an equivalent operation to Porcelain writers. * "git archive" incorrectly computed the header checksum; the symptom was observed only when using pathnames with hi-bit set. * "git blame" did not try to make sure that the abbreviated commit object names in its output are unique. * Running "git bundle verify" on a bundle that records a complete history said "it requires these 0 commits". * "git clone --single-branch" to clone a single branch did not limit the cloning to the specified branch. * "git diff --no-index" did not correctly handle relative paths and did not correctly give exit codes when run under "--quiet" option. * "git diff --no-index" did not work with pagers correctly. * "git diff COPYING HEAD:COPYING" gave a nonsense error message that claimed that the treeish HEAD did not have COPYING in it. * When "git log" gets "--simplify-merges/by-decoration" together with "--first-parent", the combination of these options makes the simplification logic to use in-core commit objects that haven't been examined for relevance, either producing incorrect result or taking too long to produce any output. Teach the simplification logic to ignore commits that the first-parent traversal logic ignored when both are in effect to work around the issue. * "git ls-files --exclude=t -i" did not consider anything under t/ as excluded, as it did not pay attention to exclusion of leading paths while walking the index. Other two users of excluded() are also updated. * "git request-pull $url dev" when the tip of "dev" branch was tagged with "ext4-for-linus" used the contents from the tag in the output but still asked the "dev" branch to be pulled, not the tag. Also contains minor typofixes and documentation updates.
2012-07-18Reset MAINTAINER, comment out HOMEPAGE.gdt1-3/+4
Thomas Mueller reports that the homepage doesn't work and that mail to the maintainer bounced.
2012-07-18net/net6: Fix regression due to upgrade to gnutils 3.0marino3-3/+21
GnuTLS deprecated gnutils_transport_set_lowat function in version 2.12.0 and finally removed it with version 3.0, breaking any packages that still reference it. The lowat feature is now disabled permanently I think. The patch uses the GNUTLS_VERSION_NUMBER macro to appropriately conceal the function reference. The same patch is widely seen on the 'net with other packages that use GnuTLS.
2012-07-18Don't use sys/ucred.h on Solaris, it causes conflicts between procfs andjperkin1-1/+7
largefile support.
2012-07-18chat/bitlbee: Fix regression due to upgrade to gnutils 3.0marino3-3/+21
GnuTLS deprecated gnutils_transport_set_lowat function in version 2.12.0 and finally removed it with version 3.0, breaking any packages that still reference it. The lowat feature is now disabled permanently I think. The patch uses the GNUTLS_VERSION_NUMBER macro to appropriately conceal the function reference. The same patch is widely seen on the 'net with other packages that use GnuTLS.
2012-07-18security/openvas-libraries: Fix regression due to upgrade to gnutils 3.0marino3-3/+24
GNUTLS deprecated gnutils_transport_set_lowat function in version 2.12.0 and finally removed it with version 3.0, breaking any packages that still reference it. The lowat feature is now disabled permanently I think. The patch uses the GNUTLS_VERSION_NUMBER macro to appropriately conceal the function reference. The same patch is widely seen on the 'net with other packages that use gnutls like OpenVAS.
2012-07-18Fix install on at least Solaris.jperkin1-1/+5
2012-07-18Updated devel/p5-Moose-Autobox to 0.12sno1-1/+2
2012-07-18Updating package for Perl 5 module Moose::Autobox from CPAN insno2-7/+7
devel/p5-Moose-Autobox from 0.11nb2 to 0.12. Upstream changes: 0.12 Tue. Mar 20, 2012 - replace "use base" with "use parent"
2012-07-18Updated devel/p5-Data-Visitor to 0.28sno1-1/+2
2012-07-18Updating package for Perl 5 module Data::Visitor from CPAN insno2-11/+12
devel/p5-Data-Visitor from 0.27nb2 to 0.28. pkgsrc changes: - adjust dependencies Upstream changes: 0.28 2012-02-12 - convert to dzil - bump namespace::clean dep - better error message if Data::Alias isn't found - doc fixes
2012-07-18Updated databases/phppgadmin to 5.0.4asau2-3/+3
2012-07-18Update to phpPgAdmin 5.0.4asau3-17/+73
Version 5.0.4 ------------- Released: 22th March 2012 Bug fixes. * Fix #3468882 "UPDATE single row with varchar key: empty where clause", reported by "Dirk Kraemer" * Fix XSS in function.php, reported by Mateusz Goik * Fix bug where renaming a tablespace was leading to an error * Fix a bug where clicking to "Show all schemas" on schema privilege page leads back to the latest tab used in database level * Fix a bug when executing a query from the history * Fix bad confirmation message when droping an autovacuum table setup * Fix bug #3429633 '"Back" link from "Browse" leads to error' * Fix a PHP warning when Slony conf parameters are not set * Show cancel/kill actions in process page only if role is a superuser * Some more small code cleanup and fixes. Version 5.0.3 ------------- Released: 3rd October 2011 Some bug fixes. * Fix bug with enable/disable triggers on multiple triggers (Dawid 'DeyV' Polak) * Fix bug #3353670: Error when executing a report with paging * Fix bug with OpenBSD about where setting application_name using PGOPTIONS was raising an ERROR * Two security fix about code injection, reported by Mateusz Goik, fixed by ioguix * Fix character-encoding problem with autocomplete
2012-07-18mark circular dependency and bump revisionsno1-2/+4
2012-07-18Updated devel/p5-Moose to 2.0603sno1-1/+2
2012-07-18Updating package for Perl 5 module Moose from CPAN in devel/p5-Moose fromsno2-11/+23
2.0402nb1 to 2.0603. pkgsrc changes: - adjust build dependencies (META.json informs much better now) Upstream changes: 2.0603 Thu, Jun 28, 2012 [BUG FIXES] * Fix test failure in blead. RT #78085. 2.0602 Mon, May 07, 2012 [BUG FIXES] * Ensure that the Moose::Exporter-generated init_meta returns the same value that it did previously. This isn't really a bug, since the return value has never been tested or documented, but since the generated init_meta is nothing more than a compatibility shim at this point, there's no reason to not make it as compatible as possible. Reported by Moritz Onken. (doy) 2.0601 Tue, May 01, 2012 [BUG FIXES] * Fix init_meta order when multiple also packages are specified (this matters when one of them is being used to actually initalize the metaclass, typically with also => 'Moose'). Reported by Randy Stauner. (doy) 2.0600 Sun, Apr 29, 2012 [OTHER] * Releasing 2.0502 as stable. 2.0502-TRIAL Wed, Apr 25, 2012 [OTHER] * The Test::DependentModules test now covers a much wider range of downstream dependents (all of them in fact, for some definition of "all"). This should allow us to track inadvertent backwards compatibility breakages much more effectively. (doy) * A few test tweaks to avoid spurious failures. (doy) 2.0501-TRIAL Tue, Apr 03, 2012 [BUG FIXES] * Avoid syntax errors on pre-5.14. (doy) 2.0500-TRIAL Tue, Apr 03, 2012 [NEW FEATURES] * Class::MOP::Class now has methods for introspecting and modifying the overloaded operators for a class. (doy) [ENHANCEMENTS] * The cookbook recipes have all been renamed. Instead of numbered recipes (Basics::Recipe1), we now have descriptive names (Basics::Point_AttributesAndSubclassing). This makes it easier for us to add and remove recipes in the future, and makes it a little easier to converse about them, since the name gives us some clue of what they contain. [BUG FIXES] * Re-declaring a class_type or role_type constraint that has already been declared now just returns the original type constraint, rather than replacing the original constraint and ergo losing any coercions that were on the original constraint. Fixes RT #73289. (t0m) * Moose::Exporter now calls init_meta methods in the correct order, when multiple levels of 'also' parameters are specified. Reported by Rocco Caputo. (doy, perigrin) * Moose::Exporter no longer generates init_meta methods in order to apply metaroles, since the metaclass itself isn't guaranteed to exist yet at that point. Metaroles are now applied at the end of import, after all user-defined init_meta methods have been called. Fixes RT #51561. (doy) * Fixed a memory leak. This occurred when creating an anonymous class. Immutabilizing an anonymous class still leaks memory due to a bug in Eval::Closure (which should hopefully be fixed soon). Based on code and bug report from Carlos Lima. RT #74650. * Fix a segfault when adding a method to a class which was defined in a package which was deleted. (doy) 2.0403 Tue, Apr 03, 2012 [OTHER] * No changes, reupload to fix indexing.
2012-07-18Updated devel/p5-Moo to 0.091014sno1-1/+2
2012-07-18Add conflict for devel/p5-Moo before Role::Tiny was split out from itsno1-1/+3
2012-07-18Updating package for Perl 5 module Moo in devel/p5-Moo from 0.009012 tosno2-6/+8
0.091014. pkgsrc changes: - add newly introduced dependencies upstream changes: 0.091014 - 2012-07-16 - load overload.pm explicitly for overload::StrVal 0.091013 - 2012-07-15 - useful and detailed errors for coerce in attrib generation 0.091012 - 2012-07-15 - useful and detailed errors for default checker in attrib generation - throw an error when trying to extend a role 0.091011 - 2012-06-27 - re-add #web-simple as development IRC - don't assume Scalar::Util is imported into the current package 0.091010 - 2012-06-26 - isa checks on builders - additional quote_sub docs - remove multi-populate code to fix exists/defined new() bug - document move to #moose and include repository metadata - no Moo and no Moo::Role - squelch used only once warnings for $Moo::HandleMoose::MOUSE - MooClass->meta - subconstructor handling for Moose classes 0.091009 - 2012-06-20 - squelch redefine warnings in the coderef installation code 0.091008 - 2012-06-19 - bump Role::Tiny dependency to get working modifiers under composition - handle "has '+foo'" for attrs from superclass or consumed role - document override -> around translation - use D::GD if installed rather than re-adding it as a requirement 0.091007 - 2012-05-17 - remove stray reference to Devel::GlobalDestruction 0.091006 - 2012-05-16 - drop a couple of dependencies by minor releases we don't strictly need 0.091005 - 2012-05-14 - temporary switch to an inlined in_global_destruction to avoid needing to fatpack Sub::Exporter for features we don't use - re-order is documentation to give readonly styles more prominence - a weakened value should still be returned on set (fixes lazy + weak_ref) - add an explicit return to all exported subs so people don't accidentally rely on the return value 0.091004 - 2012-05-07 - also inhale from Mouse - clarify how isa and coerce interact - support isa and coerce together for Moose - guard _accessor_maker_for calls in Moo::Role in case Moo isn't loaded - reset handlemoose state on mutation in case somebody reified the metaclass too early 0.091003 - 2012-05-06 - improve attribute option documentation - update the incompatibilities section since we're less incompatible now - fix coderef naming to avoid confusing autoclean 0.091002 - 2012-05-05 - exclude union roles and same-role-as-self from metaclass inflation - inhale Moose roles before checking for composition conflicts - enable Moo::sification if only Moo::Role is loaded and not Moo - preserve attribute ordering - factor out accessor generation code a bit more to enable extension 0.091001 - 2012-05-02 - bump Role::Tiny dependency to require de-strictures-ed version - fix test failure where Class::XSAccessor is not available 0.091000 - 2012-04-27 - document MX::AttributeShortcuts 009+ support - documentation for the metaclass inflation code - better error message for broken BUILDARGS - provide 'no Moo::sification' to forcibly disable metaclass inflation - switch to Devel::GlobalDestruction to correctly disarm the Moo::sification trigger under threads - make extends after has work - name subs if Sub::Name is available for better stracktraces - undefer all subs before creating a concrete Moose metaclass - fix bug in _load_module where global vars could cause mis-detection of the module already being loaded 0.009_017 - 2012-04-16 - mangle constructor meta-method on inflation so make_immutable works - fix possible infinite loop caused by subconstructor code 0.009_016 - 2012-04-12 - don't accidentally load Moo::HandleMoose during global destruction - better docs for trigger (and initializer's absence) 0.009_015 - 2012-04-11 - Complete support for MooseX::AttributeShortcuts 0.009 - Allow Moo classes to compose Moose roles - Introduce Moo::HandleMoose, which should allow Moo classes and roles to be treated as Moose classes/roles. Supported so far: - Some level of attributes and methods for both classes and roles - Required methods in roles - Method modifiers in roles (they're already applied in classes) - Type constraints
2012-07-18Added devel/p5-Role-Tiny version 1.001004sno2-2/+4
2012-07-18Adding new package for CPAN module Role::Tiny version 1.001004 intosno3-0/+44
devel/p5-Role-Tiny as requirement for upcoming update for devel/p5-Moo. Role::Tiny is a minimalist role composition tool. ROLE COMPOSITION Role composition can be thought of as much more clever and meaningful multiple inheritance. The basics of this implementation of roles is: * If a method is already defined on a class, that method will not be composed in from the role. * If a method that the role "requires" to be implemented is not implemented, role application will fail loudly. Unlike Class::C3, where the last class inherited from "wins," role composition is the other way around, where the class wins. If multiple roles are applied in a single call (single with statement), then if any of their provided methods clash, an exception is raised unless the class provides a method since this conflict indicates a potential problem.
2012-07-18Updated games/wesnoth to 1.10.3adam2-3/+3
2012-07-18Changes 1.10.3:adam10-1779/+5003
* Campaigns: * Heir to the Throne: * Fixed bug 19531: scroll to reinforcement units in Blackwater Port * Fixed bug 19517: The injured sergeant in HttT: Cliffs of Thoria will now always become visible when he is discovered. * Under the Burning Suns: * Made it so that all units are rehydrated quietly upon victory in scenario two * Under the Burning Suns: * Fix bug 19630: unit lost when Nym returns * Dust Devil no longer comments on cuttlefish * Wolf Riders now utter fleeing message on easy in scenario 3 * Editor: * Improved performance of the Editor Settings ToD lighting controls * Language and i18n: * Fixed untranslatable Cancel button label in the add-ons server network status dialog (bug 19659) * Updated translations: Chinese (Simplified), Finnish, French, Galician, Irish, Italian, Korean, Latin, Old English, Portuguese (Brazil), Russian * Multiplayer: * A New Land: * Made it so that the "Elvish Shaman" option in the elvish unit selection menu gets translated. Fixes bug 19677. * User interface: * Stop showing a unit's potential moves before moving in a move & attack, rather than after (more consistent with regular movement) * Whiteboard: * Fixed bug 19613: Multiple attacks after planning attacks in whiteboard * Fixed bug 19619: In local games, units keep ghosted appearance during opponent's turn * Fixed bug 19618: Problems with ending turn with impossible moves * Fixed bug 19615: Can see part of opponents' planned moves in local multiplayer game * WML engine: * Fix $owner_side in capture events fired due to unit movement * Miscellaneous and bug fixes: * Fixed: A preprocessor bug looking beyond the end of a buffer. * Fixed: Binding a temporary in the network code, possibly causing crashing. * Fixed bug 19469: Missing scenario hash results in Remote scenario always added to game description * Fixed bug 19322: controller=null hides a side in the status table * Fixed bug 19681: cache is never valid tweaked the number to string conversion of config_attribute * Fixed bug 16544: Fail to read `empty' cache files. * Added shroud_data to the inspection window (FR 19623). * Fixed: Wrong current side number after side turns (bug 19735) It also affected the lua field wesnoth.current.side
2012-07-17Take maintainership. FUKAUMI Naoki didn't object.cheusov1-2/+2
2012-07-17Update aumix to 2.9.1. in this version a lot of bugs were fixed includingcheusov6-30/+12
PR 34040 reappeared again. aumix-gtk now uses gtk2.
2012-07-17Add missing xcb-util036.jperkin1-1/+2
2012-07-17Updated sysutils/ipa to 2.1.2asau1-1/+2
2012-07-17Update ipa to 2.1.2asau3-15/+8
From Andrey Simonenko in PR pkg/46712 Changes: * autoconf 2.68 -> 2.69, automake 1.11.1 -> 1.12.2. * Corrected compilation with --enable-ctl-creds on NetBSD. * Corrected output for "ipactl -a ... status". * Corrected work with the -n switch in ipactl. Package changes: * Removed the ipa-memfunc-debug option.
2012-07-17Updated pkgtools/pkglint to 4.119wiz1-1/+2
2012-07-17Really bump version for comment-missing-error change.wiz1-2/+2
2012-07-17Make missing comments in patches an error. Bump version.wiz1-5/+5
The guide prescribes it for quite some time and it's common courtesy for packages modifying packages after you. ok gdt@
2012-07-17starttls.{el,elc} files are not provided by the package anymore. The problemcheusov2-6/+6
is starttls's implementation is incompatible with emacs 22, 23 and probably 24 too, as a result sending emails with ssl/tls authorization fail due to this conflict. emacs-21 has its own starttls.el too and I believe it is also sufficient. I wonder if someone still uses emacs-20 and its smtpmail.el for sending emails. This change was tested on NetBSD-6 and emacs-{22,23}. starttls package now DEPENDS on emacs-[0-9]*, that is any emacs flavour is good enough Set LICENSE to gnu-gpl-v2 ++pkgrevision
2012-07-17net/ocamlnet: Fix for systems without AT_SYMLINK_FOLLOWmarino2-1/+15
DragonFly doesn't define AT_SYMLINK_FOLLOW. The added patch will appropriately disable linkat support. No revbump necessary - this patch doesn't change the binary on systems for which it has already built.
2012-07-17security/libgpg-error: Disable NLS on i386-DragonFlymarino2-13/+23
It seems that I386 DragonFly (x86_64 is okay), invoking libintl's bindtextdomain causes pkgsrc's libintl to segfault on a thread locking operation. Anything linking with libgpg-error on i386 will consequently core dump. Recognizing this treating the symptom, this patch disabled NLS on I386 DragonFly.