summaryrefslogtreecommitdiff
path: root/x11/wxGTK
AgeCommit message (Collapse)AuthorFilesLines
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam2-7/+34
buildlink2.mk files back into the main trunk. This provides sufficient buildlink2 infrastructure to start merging other packages from the buildlink2 branch that have already been converted to use the buildlink2 framework.
2002-03-13Give all packages which depend on "png" a version bump, and updatefredb2-3/+4
all dependencies on packages depending on "png" which contain shared libraries, all for the (imminent) update to the "png" package. [List courtesy of John Darrow, courtesy of "bulk-build".]
2001-12-08Include x11.buildlink.mkjmc1-1/+2
2001-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-10-03bsd.buildlink.mk will automatically handle the REPLACE_BUILDLINK stuff, sojlam1-3/+1
we can remove REPLACE_BUILDLINK settings containing *-config, *Conf.sh, and *.pc.
2001-10-03Substitute the real config script for the config wrapper script injlam1-1/+6
installed files. We don't want buildlink references to escape into the install directory.
2001-08-17If USE_CONFIG_WRAPPER is defined (implied by USE_BUILDLINK_ONLY), thenjlam1-2/+4
set FOO_CONFIG=${BUILDLINK_CONFIG_WRAPPER.foo} in both CONFIGURE_ENV and MAKE_ENV. We remove the check for GNU_CONFIGURE because if a package Makefile includes the buildlink.mk file, then it most likely wants to use the config script wrappers as well. Change suggested by Hubert Feyrer (hubertf) and Tomasz Luchowski (zuntum).
2001-07-27Add dir_DEFAULT setting used by EVAL_PREFIX logic to set the defaultjlam1-1/+2
installation directory in case the package isn't installed.
2001-07-20Mechanical changes to buildlink.mk files to use EVAL_PREFIX to setjlam1-8/+8
BUILDLINK_PREFIX.<pkgname>. This allows buildlink to find X11BASE packages regardless of whether they were installed before or after xpkgwedge was installed. Idea by Alistair Crooks <agc@pkgsrc.org>.
2001-07-02Allow overriding of *_CONFIG variables in a package Makefile when usingjlam1-3/+5
USE_BUILDLINK_ONLY.
2001-07-02Move *_SED before inclusion of other buildlink.mk files to order sedjlam1-8/+8
expression properly.
2001-07-02REPLACE_BUILDLINK_SED and BUILDLINK_CONFIG_WRAPPER_SED should do oppositejlam1-9/+7
substitutions, so make it so.
2001-07-01Move inclusion of bsd.buildlink.mk to start of file.jlam1-3/+3
2001-06-29Add buildlink.mk file for use by other package Makefiles.jlam1-0/+63
2001-06-29regenjlam1-2/+2
2001-06-29Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY.jlam3-12/+24
Put locale files under ${PKGLOCALEDIR}.
2001-06-29Sort, and list locale files under ${PKGLOCALEDIR}.jlam1-133/+133
2001-06-18s/INSTAL_DATA_DIRL/INSTALL_DATA_DIR. Fix by sen_ml@eccosys.com injlam2-4/+4
pkg/13235.
2001-06-15update to wxGTK-2.2.7drochner5-46/+122
changes since 2.2.3: Applied patch to allow using non-Latin keyboards. Added wxActivateEvent for top level windows. Corrected wxActivateEvent for app (now wxEVT_ACTIAVTE_APP). wxTextCtrl sends focus events. Corrected so-library name. wxTreeCtrl now shows an item, if it was programmatically selected. wxTextCtrl no longer sends any text event upon its construction. wxSpinCtrl misbehaviour fixed. Corrected wxYield() to handle recursive calls more gracefully (and with a warning in debug mode). This fixes a problem with crashing wxTreeCtrl's built-in drag'n'drop and probably some other as well. Corrected wxMenuItem::GetLabel() to handle deliberate underscore characters correctly. Patch for better 8-bit-display support. Implememted wxCommandEvent::IsSelection() for wxListBox. Corrected wxListBox::Set() for sorted mode. Added EVT_TEXT_UPDATED for spin ctrl. Corrected wrongly rounded value in slider and scrollbar for negative values. Translation updates. Fixed wxMenu::FindItem() for sub menus. Various other fixes. Synchronized release with wxMSW again.
2001-06-11CPPFLAGS is now passed to MAKE_ENV and CONFIGURE_ENV by bsd.pkg.mk, sojlam1-2/+1
adapt by moving CPPFLAGS settings to top-level, and removing explicit inclusion of CPPFLAGS into MAKE_ENV and CONFIGURE_ENV.
2001-05-22Update dependency on png to >=1.0.11 because of the shlib major bump.wiz1-2/+2
Noted by Frederick Bruckman.
2001-04-19Move to sha1 digests, and add distfile sizes.skrll1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-8/+6
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-03-04Because the minor number of the PNG library was increased packages compiledtron1-2/+2
using the newest PNG library won't work on system with an older one. To prevent such problems with precompiled binary packages require at least "png-1.0.9nb1" in all dependences.
2001-02-17Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2001-01-04The way that shared objects were handled in the PLISTs and bsd.pkg.mk wasagc1-1/+3
out of date - it was based on a.out OBJECT_FMT, and added entries in the generated PLISTs to reflect the symlinks that ELF packages uses. It also tried to be clever, and removed and recreated any symbolic links that were created, which has resulted in some fun, especially with packages which use dlopen(3) to load modules. Some recent changes to our ld.so to bring it more into line with other Operating Systems also exposed some cracks. + Modify bsd.pkg.mk and its shared object handling, so that PLISTs now contain the ELF symlinks. + Don't mess about with file system entries when handling shared objects in bsd.pkg.mk, since it's likely that libtool and the BSD *.mk processing will have got it right, and have a much better idea than we do. + Modify PLISTs to contain "ELF symlinks" + On a.out platforms, delete any "ELF symlinks" from the generated PLISTs + On ELF platforms, no extra processing needs to be done in bsd.pkg.mk + Modify print-PLIST target in bsd.pkg.mk to add dummy symlink entries on a.out platforms + Update the documentation in Packages.txt With many thanks to Thomas Klausner for keeping me honest with this.
2000-12-12Update wxGTK to 2.2.3. Relevant changes from version 2.2.2:jlam3-150/+170
Fixed bugs in HTTP code. Implemented wxNO_FULL_REPAINT_ON_RESIZE whenever possible and reduced flicker a little (no longer diables GTK's own anti-flicker code). Always have a clipping region equivalent to the update region in OnPaint events (such as under wxMSW and wxMac). Implemented wxListBox::SetFirstItem(). Fixed some minor problems in HTML code, wxListCtrl, wxListBox. Updated many translations, added Swedish. Changed default screenpixels-per-inch from 100 to 75 in printing code. Updated AFM font metrics for Ghostscript fonts and let Linux and FreeBSD default to using GS fonts (and not Adobe fonts).
2000-11-12Update to 2.2.2tsarna2-4/+4
2000-09-06make sure rpath is correctly set for the dependent libs. Fixes ELF rpathdmcmahill2-4/+4
problems recently noted by Huberts bulk pkgsrc build.
2000-09-03s/^A //wiz1-1/+1
2000-09-01update to wxGTK-2.2.1. While here, libtoolize it since its a library.dmcmahill3-50/+249
changes are: 20th August 2000: wxWindows 2.2.1 released Minor build fixes. Use the wxCommmandEvent::IsChecked() function for checkable menu items. This mean that the m_int parameter no longer contains the ID of the menu! Fixed major problems in ODBC logging code. This change is binary backward incompatible. Fixed reentry problems in DnD code. Changed PostScript code so that it can handle a higher resolution (720dpi). Minor improvements to wxGrid code. Corrected guffow-scrolling so that no surplus expose events are generated. Corrected bug in wxMask creation on 16-bit displays. Minor correction to wxDC::DrawRoundedRectangle. Added support for <INSERT> and <DELETE> menu accelerators. Made wxComboBox case-sensitive. Minor correction to doc-view architecture. Minor wxCommandLineParser changes.
2000-09-01botched duplicate import. has been backed outdmcmahill1-3/+3
2000-09-01update to wxGTK-2.2.1. While here, libtoolize it since its a library.dmcmahill2-6/+8
changes are: 20th August 2000: wxWindows 2.2.1 released Minor build fixes. Use the wxCommmandEvent::IsChecked() function for checkable menu items. This mean that the m_int parameter no longer contains the ID of the menu! Fixed major problems in ODBC logging code. This change is binary backward incompatible. Fixed reentry problems in DnD code. Changed PostScript code so that it can handle a higher resolution (720dpi). Minor improvements to wxGrid code. Corrected guffow-scrolling so that no surplus expose events are generated. Corrected bug in wxMask creation on 16-bit displays. Minor correction to wxDC::DrawRoundedRectangle. Added support for <INSERT> and <DELETE> menu accelerators. Made wxComboBox case-sensitive. Minor correction to doc-view architecture. Minor wxCommandLineParser changes.
2000-08-31revert my last (conflicting) importdmcmahill8-373/+365
2000-08-31botched duplicate import. has been backed outdmcmahill6-351/+362
2000-08-31initial import of wxGTK-2.2.1dmcmahill1-4/+4
wxGTK is the GTK based version of wxWindows. wxWindows is a free C++ library for cross-platform GUI development. This lets you create native applications for different operating systems from the same source code. wxWindows is currently merging libraries based on GTK+, Windows, Motif and Mac with OS/2 started.
2000-08-31botched duplicate import. has been backed outdmcmahill2-14/+11
2000-07-30patch-sumstsarna1-0/+5
2000-07-30wxGTK: A GTK-based implementation of the wxWindows GUI librarytsarna8-0/+640