summaryrefslogtreecommitdiff
path: root/meta-pkgs
AgeCommit message (Collapse)AuthorFilesLines
2005-03-19Fix build on NetBSD 3.hira1-2/+3
2005-03-18Updated xfce to 4.2.1.1martti2-7/+7
General: * Don't use G_INLINE_FUNC in the source code, which fixes several weird build errors. libxfce4util: * Fix a problem with NFS mounted home directories in Solaris (#724) xfce4-session: * Fix RedHat shutdown code (#703) xfdesktop: * fix handling of quoted commands in the desktop menu (#776) * fix handling of .desktop files with no Categories list (#776) * add "edit menu" button to panel plugin prefs (#554), and ability to change the button tooltip (#764) * fix broken panel plugin behavior when trying to track the default desktop menu. there's a new option to either follow the default menu, or use a static menu file (#778) * fix bug where xfdesktop would crash if the windowlist was opened, then a window was destroyed, and then that window was selected from the list (#672) * fix "unique" attribute of system menu inclusion xffm: * ensure posix.1-1996 compatibility (#695) * fix for crash on opening fstab on solaris (#726) * avoid a showstopper gtk-2.4 bug (scaling gdkpixbufs from svg images). This is bugzilla #751 report. Not all gtk showstopper bugs from svg can be avoided. In particular with office/mobile_phone_01.svg. This file will also crash rox * allow relative paths for icon resolution (xfce4-modules) * validate utf error messages (#737) * don't quote paths that are already quoted. * change smb-share icon to proper icon * fix borked overwrite warning dialog message * bug fixes for keyboardnavigation to close bug #795 * separate remove and paste button in toolbar to avoid confusing the remove confirmation dialog with the overwrite confirmation dialog * fix translation problems in several languages, including brazilian-portuguese * fill in some missing spanish translation strings * fix for bug #524 (crashing xffm by mounting cdrom and trying to open it in the other treeview before mount is complete) xfcalendar: * remembering of its position (bug #691 and #789) * warning box for preventing users to loose their changes (#714 and #738) * possibility to show/hide xfcalendar in taskbar, pager and systray (#719) * possibility to choose to either show or hide the calendar window when xfcalendar is launched (it remembered before the status when leaving) xfce4-panel: * Save configuration file only on exit * Fix double click on inactive item in dialog (#739) * 64bit fix * Clock applet tweak (#716, hopefully) xfprint: * remove FILE backend and add a print-to-file entry in the printing dialog * multiple bugfixes (#816, #817, #818, #820) in the BSD-LPR backend
2005-03-06$PKG_SYSCONFDIR support from Jeremy C. Reed with minor changes from me.markd1-2/+3
2005-03-02Update to 1.3: depend on latest docbook-website and docbook-xsl.wiz1-4/+4
2005-03-01Update xorg to 6.8.2.xtraeme1-2/+3
Changes: * Render implementation fixes * Updated x86emu and resynced with upstream at Scitech * Updated SiS driver * Updated Nvidia driver (opensource version) * Render acceleration for ATI's R100 and R200-series cards * Substantial speedups in the software implementation of the render extensions when compiled with gcc 3.4 on the i386 architecture. * Infrastructure for rotation support in drivers * New Trapezoid specification for the Render extension o Respecify Render to include only 'normal' traps o Allow backward compatibility but internally covert to new format * Software mouse cursor is now based on the Damage extension * A new keyboard driver is enabled by default. The old driver is disabled unless explicitly compiled in by defining the macro |USE_DEPRECATED_KEYBOARD_DRIVER|. * All extensions (except Xserver-specific extensions "DMX" and "XpExtension")can now be enabled/disabled from the configuration file and from the command line. * Mac OS X updates: o Support dynamic screen configuration changes in rootless mode o Added option to always use Mac command key equivalents o Interpret scroll wheel mouse events correctly when shift is held down o Added trivial Xinput support o Fixed launch of X clients from Finder with a space in their path o Fixed some GLX rendering problems on Mac OS X 10.2 and earlier * Updated xterm version
2005-02-27The new Boost packages have to conflict with boost<1.32.0 (except thejmmv1-1/+3
meta-package itself).
2005-02-26Let's sync with reality (reorganization of Boost packages).jmmv1-1/+2
2005-02-26Complete rework of the Boost packages:jmmv7-0/+153
- Drop devel/boost and devel/boost-thread. - Add devel/boost-docs which includes all the documentation related to Boost (previously included in devel/boost). - Add devel/boost-build which includes bjam, the Boost.Build framework. - Add devel/boost-headers which includes all the header files needed at build time by programs using Boost (previously included in devel/boost). - Add devel/boost-libs which includes all the binary libraries needed at build and run time by programs using Boost (previously included in devel/boost and devel/thread). All of them are multithreaded, to make things easier. - devel/boost-python includes the Boost Python library (as it did before), but now works, given that everything is threaded again. - Drop our thread_user.hpp customization. Avoids some build failures that appeared when the previous boost-thread package was not installed. - Use static PLISTs. - Install unversioned files. Makes things *a lot* easier when building stuff outside pkgsrc. - Add meta-pkgs/boost, a meta package that depends on all of the above. Thanks go to jlam@ and tv@ for their comments. While here, update to 1.32.0: New Toolset Names The names of some the Boost.Build toolsets have been changed to remove the "." (dot) character and to fix some other naming inconsistencies. For example, vc7.1 toolset was renamed to become vc-7_1. Please refer to the Supported Toolsets section of the installation guide for the complete list of the current toolset names. This change was made as a part of the effort to make the Boost distribution compatible with ISO 9660 level 2 requirements. New Libraries * Assignment Library: Filling containers with constant or generated data has never been easier, from Thorsten Ottosen. * Minmax Library: Standard library extensions for simultaneous min/max and min/max element computations, from Hervé Brönnimann. * Multi-index Containers Library: Containers with multiple STL-compatible access interfaces, from Joaquín M López Muñoz. * Numeric Conversion Library: Optimized policy-based numeric conversions, from Fernando Cacciola. * Program Options Library: Access to configuration data given on command line, in config files and other sources, from Vladimir Prus. * Range Library: A new infrastructure for generic algorithms that builds on top of the new iterator concepts, from Thorsten Ottosen. * Serialization Library: Serialization/de-serialization of arbitrary C++ data structures to various formats including text, binary, and xml, from Robert Ramey. * String Algorithms Library: Collection of string related algorithms for case conversion, trimming, find/replace operations and more, from Pavol Droba. * Tribool: 3-state boolean type library, from Doug Gregor. Updated Libraries * Compose: This deprecated library has been removed. * Graph: o Added bundled properties to the adjacency_list and adjacency_matrix class templates, greatly simplifying the introduction of internal vertex and edge properties. o The LEDA graph adaptors have been ported to LEDA 4.5. o Added algorithms for betweenness centrality and betweenness centrality clustering. o Added circle layout and undirected spring layout algorithms. * MPL Library: o Updated to use the Boost Software License. o New documentation, including a complete reference manual. o Major interface changes and improvements, many of which are not backward compatible. Please refer to the 1.32 changelog for the detailed information about upgrading to the new version. * Python Library: o Updated to use the Boost Software License. o A new, better method of wrapping classes with virtual functions has been implemented. o Support for the new Python Bool type, thanks to Daniel Holth. o Support for upcoming GCC symbol export control features have been folded in, thanks to Niall Douglas. o Improved support for std::auto_ptr-like types. o Components used by other libraries have been moved out of python/detail and into boost/detail to improve dependency relationships. o Miscellaneous bug fixes and compiler workarounds. * Signals Library: Introduced deterministic slot ordering, permitting slots to be connected at the beginning or end of slot groups or the slot list itself. Combiners may safely have state and are accessible from the signal. * Utility: class template result_of added. * Test Library: o namespace names gets shorten; old one still supported till next release o added proper encoding of XML PCDATA o support for wide string comparison implemented For complete list of changes see Test Library release notes. Regression tests This release has been extensively tested on a variety of different compilers and platforms. It is known to contain no regressions against the previous reference release on the compilers and configurations tested. Please refer to the corresponding regression reports to see how well your compiler performs on the new Boost codebase.
2005-02-26Update the GNOME meta-pkgs to the latest stable version, 2.8.3.jmmv3-56/+55
2005-02-21Sign over maintainership to tech-pkg@hubertf2-4/+4
2005-02-19Revert update to 1.3 -- htdocs is not ready for this.wiz1-4/+4
2005-02-19Update to 1.3: depend on latest docbook-website and docbook-xsl.wiz1-4/+4
2005-02-09Apply patch from Jeremy C. Reed to define common values for thextraeme1-1/+5
manual pages on Linux.
2005-02-09Apply patch from Jeremy C. Reed to define common values for thextraeme1-1/+5
manual pages on Linux. Also use unexec ${RMDIR} in a directory.
2005-02-09Change Linux manual definitions to:xtraeme1-12/+15
KERNMAN_SUFFIX= 4 FILEMAN_SUFFIX= 5 MISCMAN_SUFFIX= 7 To fix the xorg-server installation. Update MASTER_SITE_XORG with new mirrors.
2005-01-31Always copy the file DragonFly.cf unconditionally into xc/config/cf,xtraeme1-6/+3
otherwise the post-extract target will fail. This closes PR pkg/29169 and pkg/29135, thanks.
2005-01-28Add wmdrawer to windowmaker-desktop and bump version number.ben1-3/+3
2005-01-25Apply patches from Todd Willey for DragonFlyBSD, this closes PR pkg/29042.xtraeme1-2/+4
Thank you!
2005-01-24Make drivers selectable with options.mk. By default, all of the drivershira1-1/+2
which are supported by the platform are built. OK'd by xtraeme@.
2005-01-17Updated XFce to 4.2.0martti4-27/+25
Too many changes to list here, please read the Changelog from www.xfce.org (http://www.xfce.org/release_notes/4.2.0_changelog.html)
2005-01-11Remove the gnome-extras meta-pkg; it is useless. No objections in tech-pkg@.jmmv4-57/+1
2005-01-04Enable dependency on vino. Bump PKGREVISION to 1.jmmv1-2/+3
2005-01-03Bump PKGREVISION because of curl dependency bump.wiz3-6/+6
2004-12-28Require gnome-themes-extras >= 0.8.jmmv1-2/+2
2004-12-28Use gnome-common 2.8.0.jmmv1-2/+2
2004-12-28Update the GNOME meta-pkgs to 2.8.2.jmmv4-66/+66
Hmm, this comes later than usual... but I haven't had any time to do this sooner.
2004-12-27Finish my previous commit and unbreak xorg-*:xtraeme1-1/+16
* Move the subst macros for threadlib.h from xorg-libs to xorg/Makefile.common. * SUBST_CLASSES should be appended. Thanks to Manuel Stuehn <manuel.stuehn@student.uni-siegen.de> for the email showing me the problems.
2004-12-24Update to 2.6.0 due to gtk2 and gtk2-engines updates.jmmv1-4/+4
2004-12-23Allow any PKGREVISION in dependencies. Bump PKGREVISION.markd1-14/+15
2004-12-21The gmc package has been removed - get rid of a reference to it.agc1-2/+1
2004-12-13Add an explicit dependency on docbook-xsl>=1.67.0 rather than using whateverjschauma1-3/+7
other dependencies pull in: earlier versions of docbook-xsl generate slightly different html leading to a large number of unneccessary 'regen' commits in htdocs. Bump minor versions for this. This is done during the freeze so as to ensure that it gets on the branch and we can simply tell developers to install netbsd-www version 1.2.
2004-12-10Update to kde 3.3.2.markd3-27/+20
changes are generally bug fixes including some security fixes. pkgsrc changes are a big PLIST cleanup and moving locale files to ${PKGLOCALEDIR}/locale/... rather than replicating the tree.
2004-11-30Bump PKGREVISION for removal of db3 buildlink3.mk file fromwiz2-4/+4
GConf's buildlink3.mk file. Bump BUILDLINK_DEPENDS where appropriate.
2004-11-28From KDE CVS, KDE_3_3_BRANCH:kleink1-2/+2
kdepim/korganizer/plugins/holidays/holidays.cpp 1.12.2.1: Backport of bug fixes for #84979 (crash on AMD64) [...] Bump version to kdepim-3.3.1nb2, and update the version required by the kde3 meta package.
2004-11-18Remove duplicate line for netbsd-www.wiz1-2/+1
2004-11-11Fix dependence on "kdepim3" package, bump package revision.tron1-2/+3
2004-11-11This file isn't used anymore.skrll1-11/+0
2004-11-08add php-pdflib extensionjdolecek1-2/+3
2004-11-08follow php4-pdflib rename to php-pdflib, bump PKGREVISIONjdolecek1-3/+3
2004-11-07Add support for building XFree86 packages on Solaris.markd1-2/+19
Claim to be using gcc always and assume that the wrapper framework will deal with the differences for other compilers (rather than getting imake to try and do it).
2004-11-06add php-zip, php-dom, php-xsljdolecek1-2/+5
2004-11-06php4-zip was replaced by php-zip, which can be used with both PHP4 and PHP5.jdolecek1-3/+3
The PECL extension is preferred even for PHP4 (which has zip extension bundled), since further maintenance is likely to be more active there.
2004-11-05Add php-dbx package - PHP database abstraction layer extension. This isjdolecek2-2/+6
for both PHP 4.x and 5.x.
2004-11-05Fix CONF_FILES in xorg-clients, the 'xdm' subdir already was set byxtraeme1-2/+2
EGDIR! (hi reed!)
2004-11-04add php extension meta modules, for PHP 4.x and PHP 5.xjdolecek1-1/+4
2004-11-04Add php-extensions-5.0 meta-package. Pulls in the base PHP5, Apache modulejdolecek4-0/+74
and all extension pkgsrc extension modules for PHP 5.x
2004-11-04Add php-extensions-4.3 meta-package. Pulls in the base PHP4, Apache modulejdolecek3-0/+75
and all available extension modules.
2004-11-01Make this build/work on DragonFlyBSD. Patches were submitted byxtraeme1-5/+28
Todd Willey via tech-pkg@.
2004-10-28Update to GNOME 2.8.1.jmmv4-63/+63
2004-10-23kdegraphics3 PKGREVISION bump.markd1-2/+2