summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-01-05Old url is not available now, noticed by Zafer Aydogan in private mail.obache1-4/+3
Switch HOMEPAGE and MASTER_SITES to new location.
2008-01-05*.tbz does not exist now, noticed by Zafer Aydogan in private mail.obache2-6/+6
Switch to *.tgz, no differ from *.tbz.
2008-01-05Change HOMEPAGE and MASTER_SITES to new location.obache1-3/+3
2008-01-05Change MASTER_SITES to new location, noticed by Zafer Aydogan in private mail.obache1-3/+3
Also update HOMEPAGE.
2008-01-04Added support for installation to DESTDIR.heinz1-9/+13
2008-01-04Updated emulators/gxemul to 0.4.6.1xtraeme2-3/+3
2008-01-04Update to 0.4.6.1:xtraeme3-11/+9
The changes between release 0.4.6 and 0.4.6.1 are mostly focused on documentation updates, to reflect new releases of guest operating systems: * OpenBSD 4.2 has been released. OpenBSD/landisk 4.2 works in GXemul. * NetBSD 4.0 has been released. The installation instructions in GXemul's documentation have been updated to reflect this. o In most cases this simply means that NetBSD 4.0 should work, in addition to NetBSD 3.1. Some specifics worth mentioning are: o For NetBSD/pmax, the change from 3.1 to 4.0 means that X Windows is now working again out-of-the-box. (Simply run startx as root to start X.) o For NetBSD/arc, the supported version has jumped from 1.6.2 to 4.0. o NetBSD/landisk has been released, and works in GXemul. o NetBSD/prep is unfortunately still at NetBSD 2.1. o In some emulation modes, such as evbmips, hpcmips, and perhaps some more, NetBSD 4.0 uses the clock in a way which is not yet implemented in the emulator. (NetBSD 4.0 works, but NetBSD 3.1 worked better.) o (I have not tried some of the "heavier" emulation setups, such as NetBSD/sgimips.)
2008-01-04The package needs a C compiler.heinz1-1/+3
2008-01-04The package supports installation to DESTDIR.heinz1-1/+2
2008-01-04Removed the special-case handling of PKG_SYSCONFDIR for NetBSD. Now therillig1-6/+2
configuration files are installed in the usual pkgsrc place, not in /etc. PKGREVISION++ Ok'ed by jlam@.
2008-01-04In the CHECK-PERMS case, moved test of exit code one line up, so theheinz2-4/+4
removal of tmpdir does not overwrite the exit code to be tested.
2008-01-04Add DESTDIR support.joerg1-7/+7
2008-01-04Reverse logic for detecting stack protection. Previous patch enabledsborrill2-5/+5
-fno-stack-protection iff using -fno-stack-protection gave an error
2008-01-04Note pkgsrc as the distribution method, for the bug report wizard.markd1-2/+3
From Sergey Svishchev. Bump PKG_REVISION.
2008-01-04Various kdebase updates.markd10-61/+519
Option to build kompmgr - from Sergey Svishchev improved kdeeject script - from Sergey Svishchev ksysguard tidyup, improved handling of process list. infocenter tidyup Add NetBSD support to kicker/applets/naughty (finally fixing PR 25052) Bump PKGREVISION.
2008-01-04Use USE_CMAKE rather that doing same explicitly.markd1-8/+2
2008-01-04Use USE_CMAKE rather that doing same explicitly.markd1-11/+11
Package supports DESTDIR.
2008-01-04USE_DESTDIRify the package.spz3-4/+27
patch-dm is not for upstream but for pkgsrc infrastructure only.
2008-01-04+ cdrtools-2.01.01.37, freeciv-2.1.2, gmime-2.2.15, ircservices-5.1.11,wiz1-5/+8
phppgadmin-4.1.3 [pkg/37679], py-gobject-2.14.1, py-gtk2-2.12.1.
2008-01-04Use USE_CMAKE rather that doing same explicitly.markd2-14/+8
Package supports DESTDIR.
2008-01-04Bump PKGREVISION due to boost update to 1.34.1.jmmv12-15/+24
2008-01-04Note update of boost to 1.34.1.jmmv1-1/+8
2008-01-04The package supports installation to DESTDIR.heinz1-1/+6
Removed unnecessary write permissions to shut up warnings by checkperms.
2008-01-04blender updatemarkd2-3/+3
2008-01-04Update boost to 1.34.1. This is based on the patches provided by Brook Milliganjmmv34-407/+1800
in PR pkg/36558. Committing it right after the freeze so that we have enough time to resolve the problems that this will surely cause. New Libraries * Foreach Library: BOOST_FOREACH macro for easily iterating over the elements of a sequence, from Eric Niebler. * Statechart Library: Arbitrarily complex finite state machines can be implemented in easily readable and maintainable C++ code, from Andreas Huber. * TR1 Library: An implementation of the C++ Technical Report on Standard Library Extensions, from John Maddock. This library does not itself implement the TR1 components, rather it's a thin wrapper that will include your standard library's TR1 implementation (if it has one), otherwise it will include the Boost Library equivalents, and import them into namespace std::tr1. Highlights include: Reference Wrappers, Smart Pointers, result_of, Function Object Binders, Polymorphic function wrappers, Type Traits, Random Number Generators and Distributions, Tuples, Fixed Size Array, Hash Function Objects, Regular Expressions and Complex Number Additional Algorithms. * Typeof Library: Typeof operator emulation, from Arkadiy Vertleyb and Peder Holt. * Xpressive Library: Regular expressions that can be written as strings or as expression templates, and that can refer to each other and themselves recursively with the power of context-free grammars, from Eric Niebler. Updated Libraries * Assign Library: o Support for ptr_map<key,T> via the new function ptr_map_insert() o Support for initialization of Pointer Containers when the containers hold pointers to an abstract base class. * Date_time library: o Support for new US/Canada timezone rules and other bug fixes. See Change History for details. * Filesystem Library: Major upgrade in preparation for submission to the C++ Standards Committee for TR2. Changes include: o Internationalization, provided by class templates basic_path, basic_filesystem_error, basic_directory_iterator and basic_directory_entry. o Simplification of the path interface by eliminating special constructors to identify native formats. o Rationalization of predicate function design, including the addition of several new functions. o Clearer specification by reference to POSIX, the ISO/IEEE Single Unix Standard, with provisions for Windows and other operating systems. o Preservation of existing user code whenever possible. o More efficient directory iteration. o Addition of a recursive directory iterator. * Function Library: Boost.Function now implements a small buffer optimization, which can drastically improve the performance when copying or constructing Boost.Function objects storing small function objects. For instance, bind(&X:foo, &x, _1, _2) requires no heap allocation when placed into a Boost.Function object. * Functional/Hash Library o Use declarations for standard classes, so that the library doesn't need to include all of their headers o Deprecated the <boost/functional/hash/*.hpp> headers. o Add support for the BOOST_HASH_NO_EXTENSIONS macro, which disables the extensions to TR1 o Minor improvements to the hash functions for floating point numbers. * Graph Library: o edmonds_maximum_cardinality_matching, from Aaron Windsor. o lengauer_tarjan_dominator_tree, from JongSoo Park. o compressed_sparse_row_graph, from Jeremiah Willcock and Douglas Gregor of Indiana University. o sorted_erdos_renyi_iterator, from Jeremiah Willcock of Indiana University. o biconnected_components now supports a visitor and named parameters, from Janusz Piwowarski. o adjacency_matrix now models the Bidirectional Graph concept. o dijkstra_shortest_paths now calls vis.initialize_vertex for each vertex during initialization. o Note: the name of the compiled library for the GraphViz reader has changed to boost_graph (from bgl-viz) to match Boost conventions. o See the complete revision history for more information. * MultiArray Library: Boost.MultiArray now by default provides range-checking for operator[]. Range checking can be disabled by defining the macro BOOST_DISABLE_ASSERTS before including multi_array.hpp. A bug in multi_array::resize() related to storage orders was fixed. * Multi-index Containers Library: o New random access indices. o Non key-based indices feature new rearrange facilities. o This version also includes a number of optimizations and usage improvements. For a complete list of changes, see the library release notes. * Optional Library: o boost::none_t and boost::none now added to Optional's documentation o Relational operators now directly support arguments of type 'T' and 'none_t' o operator->() now also works with reference types. o Helper functions make_optional(val), make_optional(cond,val) and get_optional_value_or(opt,alternative_value) added. o Constructor taking a boolean condition (as well as a value) added. o Member function get_value_or(alternative_value) added. o Incompatbility bug with mpl::apply<> fixed. o Converting assignment bug with uninitialized lvalues fixed. * Parameter Library: o Every ArgumentPack is now a valid MPL Forward Sequence. o Support for unnamed arguments (those whose keyword is deduced from their types) is added. o Support for named and unnamed template arguments is added. o New overload generation macros solve the forwarding problem directly. o See also the Python library changes, below. * Pointer Container Library: o Support for serialization via Boost.Serialization. o Exceptions can be disabled by defining the macro BOOST_PTR_CONTAINER_NO_EXCEPTIONS before including any header. This macro is defined by default if BOOST_NO_EXCEPTIONS is defined. o Additional std::auto_ptr<T> overloads added s.t. one can also pass std::auto_ptr<T> instead of only T* arguments to member functions. o transfer() now has weaker requirements s.t. one can transfer objects from ptr_container<Derived> to ptr_container<Base>, * Python Library: o Boost.Python now automatically appends C++ signatures to docstrings. The new docstring_options.hpp header is available to control the content of docstrings. o stl_input_iterator, for turning a Python iterable object into an STL input iterator, from Eric Niebler. o Support for void* conversions is added. o Integrated support for wrapping C++ functions built with the parameter library; keyword names are automatically known to docsstrings. o Enhancements to the API for better embedding support (boost::python::import(), boost::python::exec() and boost::python::exec_file()). * Signals Library: More improvements to signal invocation performance from Robert Zeh. * Smart Pointers Library: o Allocator support as proposed in N1851 (162 Kb PDF). o pointer_cast and pointer_to_other utilities to allow pointer-independent code, from Ion Gaztanaga. * String Algorithm Library: o lexicographical_compare o join o New comparison predicates is_less, is_not_greater. o Negative indexes support (like Perl) in various algorihtms (*_head/tail, *_nth). * Wave Library: o Wave now correctly recognizes pp-number tokens as mandated by the C++ Standard, which are converted to C++ tokens right before they are returned from the library. o Several new preprocessing hooks have been added. For a complete description please refer to the related documentation page: The Context Policy. o Shared library (dll) support has been added for the generated Wave libraries. o The overall error handling has been improved. It is now possible to recover and continue after an error or a warning was issued. o Support for optional comment and/or full whitespace preservation in the generated output stream has been added. o The Wave library now performs automatic include guard detection to avoid accessing header files more than once, if appropriate. o Full interactive mode has been added to the Wave tool. Now the Wave tool can be used just like Python or Perl for instance to interactively try out your BOOST_PP macros. Additionally it is now possible to load and save the current state of an interactive session (macro tables et.al.). o The overall performance has been improved by upto 40-60%, depending on the concrete files to process. o Support for new pragmas has been added allowing to control certain library features from inside the preprocessed sources (partial output redirection, control of generated whitespace and #line directives). o Optional support for #pragma message "..." has been added. o This version also includes a number of bug fixes and usage improvements. For a complete list of changes, see the libraries change log.
2008-01-04Update blender to version 2.45markd9-283/+270
pkgsrc changes: use cmake rather than SCons to build. DESTDIR support 2.45 The 2.45 is a bugfix release, to stabilize the 2.4x series. No new feature have been added, but serious effort has been put in tracking bugs and fixing them. Some performance issues have also been addressed. 2.44 This release adds subsurface scattering, improved sculpting tools, ffmpeg support for additional platforms, a number of animation tool improvements, and a huge number of Python scripts and API enhancements. 2.43 This release features sculpting meshes that work as if they were clay, render passes, retopology painting, multi-resolution meshes, texture map and light map baking, support for multiple uv sets, fast 3D painting, defocus blur node, multi-layer image read/write, painting in video sequences, matte, key, and difference composite nodes, a number of improved 3D animation tools such as proxy objects, walk cycles, simulation tool improvements for fluid dynamics, hard body dynamics, and cloth and softbody dynamics. There were also additional compositing and video editing improvements. 2.42 This release is the result of work done for the Elephants Dream short film. It includes major feature additions such as node based materials, node based compositing, a renderer rewrite, improved UV tools, improved character tools, an array modifier, and a host of other improvements.
2008-01-04Where to place PKG_DESTDIR_SUPPORT.heinz1-1/+3
2008-01-04Supports user-destdir.joerg1-2/+2
2008-01-04x264-devel-20071218.joerg1-1/+2
2008-01-04Update to x264-20071218. No changelog, patch is from Adam Hoka.joerg4-31/+17
2008-01-04Just use full destdir support here.joerg1-2/+2
2008-01-04Full DESTDIR is working.joerg1-2/+2
2008-01-04Added code to analyze the conditions in .if and .elif directives. Thisrillig1-1/+86
will soon be extended to checking for spelling mistakes in PKG_OPTIONS handling.
2008-01-04add a comment asking updates to check compatibility with editors/TeXmacs,drochner1-1/+4
as suggested by Antoine Reilles
2008-01-04Whenever a Makefile.common is included by another file, that file shouldrillig1-1/+27
be mentioned in the Makefile.common.
2008-01-04Updated pkgtools/pkglint to 4.82rillig1-1/+2
2008-01-04Updated pkglint to 4.82.rillig2-16/+7
Changes since 4.81: - Moved lintpkgsrc to its own package. - Less internal errors when parsing shell code. - White-space checks in PLIST.
2008-01-04Defining a meta-package is done via the META_PACKAGE variable.rillig2-13/+6
In Makefile.common, the MAINTAINER should only be set with the ?= operator.
2008-01-04Adjusted the guide to the separation of pkglint and lintpkgsrc.rillig2-4/+8
2008-01-04Replaced all references to pkglint with lintpkgsrc, which has its ownrillig8-46/+46
package since a few days.
2008-01-04Full DESTDIR support.ghen2-24/+28
2008-01-04-update to 1.0.6.12drochner5-27/+26
changes: -Complete abstraction of the graphical user interface should make porting easier -Improved signal handling for pipe communications -patch to support maxima-5.14
2008-01-04Full DESTDIR support.ghen1-1/+3
2008-01-04Basic DESTDIR support.ghen1-1/+3
2008-01-04Full DESTDIR support.ghen2-10/+14
2008-01-04Full DESTDIR support for all bacula packages.ghen7-19/+36
2008-01-04If a command line argument is used, it should be mentioned by exactlyrillig2-5/+6
this name (pkg-name) and not some related description, to make searching easy.
2008-01-04Reverted the change that tried to make binary packages more sane becauserillig1-8/+2
it had severe consequences: pkg_create gets lots of information from the filename into which the package is written. The extension decides what compression to apply, and the basename gets recorded as the @name. This part needs more work. Noticed by stoned@.
2008-01-04Full DESTDIR support for erlang packages.ghen5-13/+34
2008-01-04Updated lang/erlang, lang/erlang-doc and lang/erlang-man to 12.0 (R12B-0).ghen1-1/+4