Up to [cvs.netbsd.org] / pkgsrc / x11 / p5-Tk
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.75 / (download) - annotate - [select for diffs], Wed Mar 21 18:58:00 2012 UTC (2 months ago) by hans
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base,
pkgsrc-2012Q1,
HEAD
Changes since 1.74: +2 -2
lines
Diff to previous 1.74 (colored)
Don't use -print0 / -0 in find | xargs, it works well without it.
Revision 1.74 / (download) - annotate - [select for diffs], Thu Feb 2 09:53:44 2012 UTC (3 months, 3 weeks ago) by hans
Branch: MAIN
Changes since 1.73: +2 -2
lines
Diff to previous 1.73 (colored)
Use ${RM} -f to avoid failure if no files are found to be removed.
Revision 1.73 / (download) - annotate - [select for diffs], Sun Jan 22 19:00:34 2012 UTC (4 months ago) by abs
Branch: MAIN
Changes since 1.72: +3 -4
lines
Diff to previous 1.72 (colored)
Updated x11/p5-Tk to 804.030 Tk-804.030 release (2011-10-20) ------------------ This is basically the same like Tk-804.029_502. Tk-804.029_502 release (2011-10-17) ---------------------- Fixes RT #71718: windres call needs the --use-temp-file on some Windows systems RT #70429: show correct file name if image loading failed. Also systematically searched and fixed other bad uses of Tcl_AppendResult. RT #70423: provide inuse method for Tk::Image Fixed a possible segfault when using canvas' select clear method. Tk-804.029_501 release (2011-10-14) ---------------------- Fixes Use standard libpng configure for all amd64 and x86_64 variants. Support gridRemove method. https://rt.cpan.org/Ticket/Display.html?id=65900 Tk-804.029_500 release (2011-06-13) ---------------------- Fixes Fixed compilation with newer X11 version (conflicting types for 'XKeycodeToKeysym') http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=613188 Use standard libpng configure for some 64 bit variants of OpenBSD, amd64-freebsd, x86_64-linux, MacOSX 10.6.4 and newer. Fixed Strawberry 64bit builds. Changed handling of "underscore" character. https://rt.cpan.org/Ticket/Display.html?id=66205 Tk::ProgressBar::configure calls now go through ConfigChanged https://rt.cpan.org/Ticket/Display.html?id=63775 Fixed Tk::FBox::ResolveFile with defaultextension when directory contains dots https://rt.cpan.org/Ticket/Display.html?id=55146 New features BalloonInfo for HList Implementation by Christoph Lambrecht, documentation by Slaven Rezic https://rt.cpan.org/Ticket/Display.html?id=55887 Perl/Tk is now available at github. Improved "all widgets at a glance" demo. Tests Another attempt on skipping tests if no DISPLAY is available. Converted fork.t and progbar.t to Test::More Documentation Fixed SYNOPSIS section in Tk::Text Pod
Revision 1.72 / (download) - annotate - [select for diffs], Sun Aug 14 07:20:53 2011 UTC (9 months, 1 week ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2011Q4-base,
pkgsrc-2011Q4,
pkgsrc-2011Q3-base,
pkgsrc-2011Q3
Changes since 1.71: +2 -2
lines
Diff to previous 1.71 (colored)
Revision bump after updating perl to 5.14.1.
Revision 1.71 / (download) - annotate - [select for diffs], Sun Jul 3 21:40:44 2011 UTC (10 months, 3 weeks ago) by dholland
Branch: MAIN
CVS Tags: pkgsrc-2011Q2-base,
pkgsrc-2011Q2
Changes since 1.70: +2 -1
lines
Diff to previous 1.70 (colored)
add more REPLACE_PERL
Revision 1.70 / (download) - annotate - [select for diffs], Thu Jan 13 13:40:02 2011 UTC (16 months, 1 week ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2011Q1-base,
pkgsrc-2011Q1
Changes since 1.69: +2 -1
lines
Diff to previous 1.69 (colored)
png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.
Revision 1.69 / (download) - annotate - [select for diffs], Thu Dec 23 11:45:02 2010 UTC (17 months ago) by dsainty
Branch: MAIN
CVS Tags: pkgsrc-2010Q4-base,
pkgsrc-2010Q4
Changes since 1.68: +2 -2
lines
Diff to previous 1.68 (colored)
Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk
This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).
The mechanical edits were applied via the following script:
#!/bin/sh
for d in */*; do
[ -d "$d" ] || continue
for i in "$d/"Makefile* "$d/"*.mk; do
case "$i" in *.orig|*"*"*) continue;; esac
out="$d/x"
sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
-e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
< "$i" > "$out"
if cmp -s "$i" "$out"; then
rm -f "$out"
else
echo "Edited $i"
mv -f "$i" "$i.orig" && mv "$out" "$i"
fi
done
done
Revision 1.68 / (download) - annotate - [select for diffs], Sun Sep 12 12:59:47 2010 UTC (20 months, 1 week ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2010Q3-base,
pkgsrc-2010Q3
Changes since 1.67: +3 -4
lines
Diff to previous 1.67 (colored)
Update to 804.029. Test failures:
Failed 67/71 test programs. 3/4212 subtests failed.
But at least this version compiles, in contrast to the previous one.
Tk-804.029 release (2010-05-27)
------------------
This is basically the same like Tk-804.028_503.
Tests
after.t is a TODO test on Windows.
Tk-804.028_503 release (2010-05-13)
----------------------
Fixes
Tk::Text documentation mentioned -reverse where it should be -backwards.
Also allow -forwards/-backwards to be abbreviated in FindNext call.
Added WRITE method for tied Text widgets.
Fixed display of Unicode characters in Windows toplevel menus.
No special LDDLFLAGS handling on MacOSX systems, which probably
caused an unusable Tk module (i.e. bus errors)
Fixes Strawberry Perl builds (probably was broken on all 64bit systems)
Informal patch by Eduard Wulff
Tests
A missing rgb.txt is no more an error in the Tk::ColorEditor tests,
as rgb.txt may be missing completely in some X11 installations.
Documentation
Fixed minor typo in ProgressBar documentation
Documented that -width and -height do not work with NoteBook widgets
Tk-804.028_502 release (2010-01-30)
----------------------
Fixes
Support for perl 5.11.2 and later (UTF8_MAXLEN_UCLC is not available
anymore)
Use 'configure' for building libpng under IRIX64
PNG did not build under AIX and IRIC64, unchecked fix
Workaround for a perl bug (?) when using "eq" under a Japanese locale
under Windows (sample fail report:
http://www.nntp.perl.org/group/perl.cpan.testers/2008/11/msg2550386.html)
Tk did not support more than 32 fds on 64bit machines
Tk::Trace fix to make Tk::Gauge work
Fixed some regular expression-related and other errors, patch by
Alexander Krasnorutsky, see
Workaround for SvREADONLY issue with 5.8.x
Another possible rgb.txt location, by h.m.brand
Fix for attaching balloons to items of scrolled widgets
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=246363
Fixed XIM event filtering.
Fixed compilation with newer gcc
RecolorTree was broken since Tk-804.027_501 if called separately.
Reported and patched by Michael Parker
Control-X/Y/C now also works if Caps Lock is active
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=205895
Copy/paste operations between KDE and Perl/Tk applications
on 64bit system did not work, patch by Petr Pajas
Canvas grids: -color was documented, but only -fill was implemented.
In future both is supported.
Patch for mingw-w64 gcc compiler, supplied by kmx
Documentation
Documentation on "Perl/Tk and Unicode"
Fixed cget/delete confusion in Entry.pod
Tk-804.028_501 release (2008-11-04)
----------------------
Fixes
File permissions of the tarball seemed to be problematic under
Windows Vista and Strawberry Perl 5.10.0.3, causing aborted builds.
This is hopefully fixed now.
Changed cygwin default to x11 (native MSWin32 port still does not
work).
New
There's now an "examples" directory containing some useful scripts
previously been elsewhere in the distribution.
Documentation
Documented ROText key bindings.
New README for Strawberry Perl.
Tests
Prevent Event mini tests to be run when the rest of Tk is not tested,
to avoid insignificant PASSes at cpantesters.
More tests marked as TODO or SKIP.
Tk-804.028_500 release (2008-10-01)
----------------------
Fixes
Security fix for GIF reader (CVE-2006-4484, report and patch by
Anicka Bernathova)
Make sure Tk::MsgBox is not displayed before calling Show()
Solved problems with fileevent on 64bit architectures (this also
fixes a problem with POE)
Makefile.PL updates (auto-creation of META.yml, added LICENSE, exit
cleanly if prereqs are missing --- this is for cpan testers)
Fixed typo in Tk::FBox
Added different location of rgb.txt on Mac OS X 10.5.1 systems
Fixed a makedepend issue, reported by marek.rouchal
Fixed Tk::ColorEditor problem with OpenBSD (another rgb.txt location)
clipboardGet was documented, but did not work (note that clipboard("get")
always worked)
Tk::After::Cancelled needs also a dummy cancel() method
Fixed event handling for newer X servers
Support for changed regexp-related functions and structures in perl
5.11.x.
Fix for: Tk::FileSelect fails to select file with "'" in file name
(with new fileselect.t tests)
Fixed movement of cursor on insertations in Tk::TextUndo
Tk::Test fix for: skips lines when arrowing down in a window not
exactly sized to a text
ErrorDialog fix for Windows (dialog was never displayed)
Use 'configure' for building libpng under Solaris.
Tests
Tests for signal handling (testing LangAsyncCheck introduced earlier)
Various skips and $TODOs for broken (?) window managers and slow
connections (for example -xscrollcommand-related, floating-point
precision-related, signal availability and many more ...)
Revision 1.67 / (download) - annotate - [select for diffs], Sat Aug 21 16:37:13 2010 UTC (21 months ago) by seb
Branch: MAIN
Changes since 1.66: +2 -2
lines
Diff to previous 1.66 (colored)
Bump the PKGREVISION for all packages which depend directly on perl, to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=..."), minus the packages updated after the perl package update. sno@ was right after all, obache@ kindly asked and he@ led the way. Thanks!
Revision 1.66 / (download) - annotate - [select for diffs], Sun Jun 13 22:45:48 2010 UTC (23 months, 1 week ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2010Q2-base,
pkgsrc-2010Q2
Changes since 1.65: +2 -2
lines
Diff to previous 1.65 (colored)
Bump PKGREVISION for libpng shlib name change. Also add some patches to remove use of deprecated symbols and fix other problems when looking for or compiling against libpng-1.4.x.
Revision 1.65 / (download) - annotate - [select for diffs], Tue Feb 16 15:22:45 2010 UTC (2 years, 3 months ago) by sno
Branch: MAIN
CVS Tags: pkgsrc-2010Q1-base,
pkgsrc-2010Q1
Changes since 1.64: +5 -2
lines
Diff to previous 1.64 (colored)
Fixing PLIST by removing '*.orig' relics from patch stage
Revision 1.64 / (download) - annotate - [select for diffs], Mon Jan 18 09:59:42 2010 UTC (2 years, 4 months ago) by wiz
Branch: MAIN
Changes since 1.63: +2 -2
lines
Diff to previous 1.63 (colored)
Second try at jpeg-8 recursive PKGREVISION bump.
Revision 1.63 / (download) - annotate - [select for diffs], Wed Aug 26 19:58:39 2009 UTC (2 years, 8 months ago) by sno
Branch: MAIN
CVS Tags: pkgsrc-2009Q4-base,
pkgsrc-2009Q4,
pkgsrc-2009Q3-base,
pkgsrc-2009Q3
Changes since 1.62: +2 -2
lines
Diff to previous 1.62 (colored)
bump revision because of graphics/jpeg update
Revision 1.62 / (download) - annotate - [select for diffs], Mon Aug 17 14:45:16 2009 UTC (2 years, 9 months ago) by gson
Branch: MAIN
Changes since 1.61: +2 -2
lines
Diff to previous 1.61 (colored)
cosmetic reordering
Revision 1.61 / (download) - annotate - [select for diffs], Mon Aug 17 14:40:43 2009 UTC (2 years, 9 months ago) by gson
Branch: MAIN
Changes since 1.60: +2 -1
lines
Diff to previous 1.60 (colored)
Deal with the new "GenericEvent" X event. This fixes the same bug in x11/p5-Tk that tk-8.4.18nb1 fixed in x11/tk.
Revision 1.60 / (download) - annotate - [select for diffs], Wed Oct 22 10:35:30 2008 UTC (3 years, 7 months ago) by markd
Branch: MAIN
CVS Tags: pkgsrc-2009Q2-base,
pkgsrc-2009Q2,
pkgsrc-2009Q1-base,
pkgsrc-2009Q1,
pkgsrc-2008Q4-base,
pkgsrc-2008Q4
Changes since 1.59: +3 -4
lines
Diff to previous 1.59 (colored)
Update to 804.028 Various bugfixes including fix building with perl 5.10.
Revision 1.59 / (download) - annotate - [select for diffs], Sun Oct 19 19:19:24 2008 UTC (3 years, 7 months ago) by he
Branch: MAIN
Changes since 1.58: +2 -2
lines
Diff to previous 1.58 (colored)
Bump the PKGREVISION for all packages which depend directly on perl, to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=...").
Revision 1.58 / (download) - annotate - [select for diffs], Sun Apr 6 19:58:40 2008 UTC (4 years, 1 month ago) by heinz
Branch: MAIN
CVS Tags: pkgsrc-2008Q3-base,
pkgsrc-2008Q3,
pkgsrc-2008Q2-base,
pkgsrc-2008Q2,
cwrapper,
cube-native-xorg-base,
cube-native-xorg
Changes since 1.57: +5 -3
lines
Diff to previous 1.57 (colored)
The package supports installation to DESTDIR. A C compiler is required.
Revision 1.57 / (download) - annotate - [select for diffs], Tue Apr 1 15:51:25 2008 UTC (4 years, 1 month ago) by tonnerre
Branch: MAIN
CVS Tags: pkgsrc-2008Q1-base,
pkgsrc-2008Q1
Changes since 1.56: +2 -2
lines
Diff to previous 1.56 (colored)
Fix buffer overflow vulnerability in p5-Tk derived from old code (CVE-2006-4484). Approved-by: joerg
Revision 1.56 / (download) - annotate - [select for diffs], Sun Sep 30 17:45:26 2007 UTC (4 years, 7 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2007Q4-base,
pkgsrc-2007Q4,
pkgsrc-2007Q3-base,
pkgsrc-2007Q3
Changes since 1.55: +2 -2
lines
Diff to previous 1.55 (colored)
Reset maintainer -- shell@ is inactive.
Revision 1.55 / (download) - annotate - [select for diffs], Thu May 17 20:37:00 2007 UTC (5 years ago) by gdt
Branch: MAIN
CVS Tags: pkgsrc-2007Q2-base,
pkgsrc-2007Q2
Changes since 1.54: +3 -1
lines
Diff to previous 1.54 (colored)
MAKE_JOBS_SAFE= no
Revision 1.54 / (download) - annotate - [select for diffs], Tue Jan 30 20:15:07 2007 UTC (5 years, 3 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2007Q1-base,
pkgsrc-2007Q1
Changes since 1.53: +2 -2
lines
Diff to previous 1.53 (colored)
Modular Xorg support.
Revision 1.53 / (download) - annotate - [select for diffs], Mon Apr 17 13:47:00 2006 UTC (6 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2006Q4-base,
pkgsrc-2006Q4,
pkgsrc-2006Q3-base,
pkgsrc-2006Q3,
pkgsrc-2006Q2-base,
pkgsrc-2006Q2
Changes since 1.52: +2 -2
lines
Diff to previous 1.52 (colored)
Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.
Revision 1.52 / (download) - annotate - [select for diffs], Thu Apr 13 00:12:50 2006 UTC (6 years, 1 month ago) by rillig
Branch: MAIN
Changes since 1.51: +4 -4
lines
Diff to previous 1.51 (colored)
Fix the right files.
Revision 1.51 / (download) - annotate - [select for diffs], Wed Apr 12 23:58:39 2006 UTC (6 years, 1 month ago) by rillig
Branch: MAIN
Changes since 1.50: +7 -3
lines
Diff to previous 1.50 (colored)
Fixed the path to the Perl interpreter. Bumped PKGREVISION.
Revision 1.50 / (download) - annotate - [select for diffs], Sun Feb 5 23:11:40 2006 UTC (6 years, 3 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2006Q1-base,
pkgsrc-2006Q1
Changes since 1.49: +2 -2
lines
Diff to previous 1.49 (colored)
Recursive revision bump / recommended bump for gettext ABI change.
Revision 1.49 / (download) - annotate - [select for diffs], Mon Dec 12 18:04:47 2005 UTC (6 years, 5 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base,
pkgsrc-2005Q4
Changes since 1.48: +6 -1
lines
Diff to previous 1.48 (colored)
Fix errno and linkage on DragonFly. Fix dependency detection problem on DragonFly, it needs to pickup png.h correctly.
Revision 1.48 / (download) - annotate - [select for diffs], Mon Dec 5 20:51:18 2005 UTC (6 years, 5 months ago) by rillig
Branch: MAIN
Changes since 1.47: +2 -2
lines
Diff to previous 1.47 (colored)
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in
http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Revision 1.47 / (download) - annotate - [select for diffs], Sat Aug 6 06:19:41 2005 UTC (6 years, 9 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2005Q3-base,
pkgsrc-2005Q3
Changes since 1.46: +2 -3
lines
Diff to previous 1.46 (colored)
Bump the PKGREVISIONs of all (638) packages that hardcode the locations of Perl files to deal with the perl-5.8.7 update that moved all pkgsrc-installed Perl files into the "vendor" directories.
Revision 1.46 / (download) - annotate - [select for diffs], Wed Jul 13 18:01:49 2005 UTC (6 years, 10 months ago) by jlam
Branch: MAIN
Changes since 1.45: +2 -2
lines
Diff to previous 1.45 (colored)
Turn PERL5_PACKLIST into a relative path instead of an absolute path.
These paths are now relative to PERL5_PACKLIST_DIR, which currently
defaults to ${PERL5_SITEARCH}. There is no change to the binary
packages.
Revision 1.45 / (download) - annotate - [select for diffs], Wed Jun 1 18:03:30 2005 UTC (6 years, 11 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2005Q2-base,
pkgsrc-2005Q2
Changes since 1.44: +2 -2
lines
Diff to previous 1.44 (colored)
Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.
Several changes are involved since they are all interrelated. These
changes affect about 1000 files.
The first major change is rewriting bsd.builtin.mk as well as all of
the builtin.mk files to follow the new example in bsd.builtin.mk.
The loop to include all of the builtin.mk files needed by the package
is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk
is now included by each of the individual builtin.mk files and provides
some common logic for all of the builtin.mk files. Currently, this
includes the computation for whether the native or pkgsrc version of
the package is preferred. This causes USE_BUILTIN.* to be correctly
set when one builtin.mk file includes another.
The second major change is teach the builtin.mk files to consider
files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most
of the builtin.mk files test for the presence of built-in software by
checking for the existence of certain files, e.g. <pthread.h>, and we
now assume that if that file is under ${LOCALBASE}, then it must be
from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The
exceptions to this new check are the X11 distribution packages, which
are handled specially as noted below.
The third major change is providing builtin.mk and version.mk files
for each of the X11 distribution packages in pkgsrc. The builtin.mk
file can detect whether the native X11 distribution is the same as
the one provided by pkgsrc, and the version.mk file computes the
version of the X11 distribution package, whether it's built-in or not.
The fourth major change is that the buildlink3.mk files for X11 packages
that install parts which are part of X11 distribution packages, e.g.
Xpm, Xcursor, etc., now use imake to query the X11 distribution for
whether the software is already provided by the X11 distribution.
This is more accurate than grepping for a symbol name in the imake
config files. Using imake required sprinkling various builtin-imake.mk
helper files into pkgsrc directories. These files are used as input
to imake since imake can't use stdin for that purpose.
The fifth major change is in how packages note that they use X11.
Instead of setting USE_X11, package Makefiles should now include
x11.buildlink3.mk instead. This causes the X11 package buildlink3
and builtin logic to be executed at the correct place for buildlink3.mk
and builtin.mk files that previously set USE_X11, and fixes packages
that relied on buildlink3.mk files to implicitly note that X11 is
needed. Package buildlink3.mk should also include x11.buildlink3.mk
when linking against the package libraries requires also linking
against the X11 libraries. Where it was obvious, redundant inclusions
of x11.buildlink3.mk have been removed.
Revision 1.44 / (download) - annotate - [select for diffs], Mon Apr 11 21:48:12 2005 UTC (7 years, 1 month ago) by tv
Branch: MAIN
Changes since 1.43: +1 -2
lines
Diff to previous 1.43 (colored)
Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.
Revision 1.43 / (download) - annotate - [select for diffs], Thu Mar 24 21:13:03 2005 UTC (7 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.42: +1 -3
lines
Diff to previous 1.42 (colored)
Remove FreeBSD RCS Ids. pkgsrc has diverged too much for syncing to be useful.
Revision 1.41.2.1 / (download) - annotate - [select for diffs], Sat Feb 19 21:47:14 2005 UTC (7 years, 3 months ago) by snj
Branch: pkgsrc-2004Q4
Changes since 1.41: +4 -2
lines
Diff to previous 1.41 (colored) next main 1.42 (colored)
Pullup ticket 297 - requested by Lubomir Sedlacik
security fix for p5-Tk
Revisions pulled up:
- pkgsrc/x11/p5-Tk/Makefile 1.42
- pkgsrc/x11/p5-Tk/distinfo 1.9
- pkgsrc/x11/p5-Tk/patches/patch-ac 1.1
- pkgsrc/x11/p5-Tk/patches/patch-ad 1.1
- pkgsrc/x11/p5-Tk/buildlink3.mk 1.2
Module Name: pkgsrc
Committed By: wiz
Date: Sat Dec 25 14:00:10 UTC 2004
Modified Files:
pkgsrc/x11/p5-Tk: Makefile distinfo
Added Files:
pkgsrc/x11/p5-Tk/patches: patch-ac patch-ad
Log Message:
Update to 804.027nb2: use png and jpeg packages instead of copies
coming with the source. Patch from Michael van Elst in PR 28770.
---
Module Name: pkgsrc
Committed By: wiz
Date: Sat Dec 25 14:02:30 UTC 2004
Modified Files:
pkgsrc/x11/p5-Tk: buildlink3.mk
Log Message:
Recommend 804.027nb2 because of security problems in earlier versions.
Revision 1.42 / (download) - annotate - [select for diffs], Sat Dec 25 14:00:09 2004 UTC (7 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base,
pkgsrc-2005Q1
Changes since 1.41: +4 -2
lines
Diff to previous 1.41 (colored)
Update to 804.027nb2: use png and jpeg packages instead of copies coming with the source. Patch from Michael van Elst in PR 28770.
Revision 1.41 / (download) - annotate - [select for diffs], Mon Dec 20 11:31:14 2004 UTC (7 years, 5 months ago) by grant
Branch: MAIN
CVS Tags: pkgsrc-2004Q4-base
Branch point for: pkgsrc-2004Q4
Changes since 1.40: +2 -1
lines
Diff to previous 1.40 (colored)
since perl is now built with threads on most platforms, the perl archlib module directory has changed (eg. "darwin-2level" vs. "darwin-thread-multi-2level"). binary packages of perl modules need to be distinguishable between being built against threaded perl and unthreaded perl, so bump the PKGREVISION of all perl module packages and introduce BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct dependencies are registered and the binary packages are distinct. addresses PR pkg/28619 from H. Todd Fujinaka.
Revision 1.40 / (download) - annotate - [select for diffs], Sun May 9 05:30:44 2004 UTC (8 years ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base,
pkgsrc-2004Q3,
pkgsrc-2004Q2-base,
pkgsrc-2004Q2
Changes since 1.39: +3 -1
lines
Diff to previous 1.39 (colored)
Enable pkgviews installation.
Revision 1.39 / (download) - annotate - [select for diffs], Thu May 6 11:05:58 2004 UTC (8 years ago) by markd
Branch: MAIN
Changes since 1.38: +3 -3
lines
Diff to previous 1.38 (colored)
Perl/Tk updated to 804.027. Changes unknown but appears to fix PR pkg/25066.
Revision 1.38 / (download) - annotate - [select for diffs], Sun Apr 25 02:36:24 2004 UTC (8 years, 1 month ago) by xtraeme
Branch: MAIN
Changes since 1.37: +5 -5
lines
Diff to previous 1.37 (colored)
bl3ify
Revision 1.37 / (download) - annotate - [select for diffs], Sun Apr 4 08:53:48 2004 UTC (8 years, 1 month ago) by mason
Branch: MAIN
Changes since 1.36: +2 -2
lines
Diff to previous 1.36 (colored)
HOMEPAGE was incorrect, pointing to non-existant page. Correct page: http://cpan.uwinnipeg.ca/htdocs/Tk/Tk.html
Revision 1.36 / (download) - annotate - [select for diffs], Mon Mar 22 12:27:19 2004 UTC (8 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2004Q1-base,
pkgsrc-2004Q1
Changes since 1.35: +4 -4
lines
Diff to previous 1.35 (colored)
Update to 804.026: This a re-port of a perl interface to Tk8.4. C code is derived from Tcl/Tk8.4.5. It also includes all the C code parts of Tix8.1.4 from SourceForge. The perl code corresponding to Tix's Tcl code is not fully implemented. Perl API is essentially the same as Tk800 series Tk800.025 but has not been verified as compliant. There ARE differences see pod/804delta.pod. The goal of this release is Unicode support via perl's and core-tk's use of UTF-8. Tk804.026 builds and loads into a threaded perl but is NOT yet thread safe. This Tk804 is only likely to work with perl5.8.0 or later. Perl's UTF-8 support has improved since it was introduced in perl5.6.0. Some functions (regular expression match in Text widgets) are known to only work with perl5.8.1 and later There are a lot more tests in Tk804. Some notably t/entry.t and t/listbox.t very dependant on the available fonts and to a lesser extent the window manager used. (See below for a list of fails which can be "expected" even if nothing is really wrong.) Others t/JP.t and t/KR.t need oriental fonts and can take a long time to run on a machine with a lot of fonts but which lacks the glyphs tests are looking for.
Revision 1.35 / (download) - annotate - [select for diffs], Tue Jan 20 12:28:26 2004 UTC (8 years, 4 months ago) by agc
Branch: MAIN
Changes since 1.34: +2 -2
lines
Diff to previous 1.34 (colored)
Move WRKSRC definition away from the first paragraph in a Makefile.
Revision 1.34 / (download) - annotate - [select for diffs], Thu Jul 17 22:56:38 2003 UTC (8 years, 10 months ago) by grant
Branch: MAIN
CVS Tags: pkgsrc-2003Q4-base,
pkgsrc-2003Q4
Changes since 1.33: +2 -2
lines
Diff to previous 1.33 (colored)
s/netbsd.org/NetBSD.org/
Revision 1.33 / (download) - annotate - [select for diffs], Sat Mar 29 12:43:08 2003 UTC (9 years, 1 month ago) by jmmv
Branch: MAIN
Changes since 1.32: +2 -2
lines
Diff to previous 1.32 (colored)
Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz.
Revision 1.32 / (download) - annotate - [select for diffs], Sun Oct 27 19:27:34 2002 UTC (9 years, 7 months ago) by seb
Branch: MAIN
CVS Tags: netbsd-1-6-1-base,
netbsd-1-6-1
Changes since 1.31: +2 -5
lines
Diff to previous 1.31 (colored)
Use perl5/module.mk.
Revision 1.31 / (download) - annotate - [select for diffs], Sat Sep 21 07:51:59 2002 UTC (9 years, 8 months ago) by jlam
Branch: MAIN
Changes since 1.30: +6 -6
lines
Diff to previous 1.30 (colored)
buildlink1 -> buildlink2
Revision 1.30 / (download) - annotate - [select for diffs], Sun Apr 21 11:12:20 2002 UTC (10 years, 1 month ago) by shell
Branch: MAIN
CVS Tags: pkgviews-base,
pkgviews,
netbsd-1-6-RELEASE-base,
netbsd-1-6,
buildlink2-base,
buildlink2
Changes since 1.29: +13 -12
lines
Diff to previous 1.29 (colored)
- Corrected WRKSRC - change my email address - fmt on DESCR
Revision 1.29 / (download) - annotate - [select for diffs], Sat Apr 20 05:02:32 2002 UTC (10 years, 1 month ago) by shell
Branch: MAIN
Changes since 1.28: +2 -2
lines
Diff to previous 1.28 (colored)
distfile renamed to Tk-800.024
Revision 1.28 / (download) - annotate - [select for diffs], Wed Mar 20 11:33:09 2002 UTC (10 years, 2 months ago) by martti
Branch: MAIN
CVS Tags: netbsd-1-5-PATCH003
Changes since 1.27: +4 -5
lines
Diff to previous 1.27 (colored)
Updated p5-Tk to 800.024 (provided by Shell Hung in pkg/15875) - lots of buges fixed - changes for compatibility with perl-5.7.3 and later - contains re-worked Image code based on tcl/tk Img extension
Revision 1.27 / (download) - annotate - [select for diffs], Wed Nov 28 12:22:35 2001 UTC (10 years, 5 months ago) by martti
Branch: MAIN
Changes since 1.26: +4 -4
lines
Diff to previous 1.26 (colored)
Updated to 800.023 (PR#14569 by Shell Hung) Changes in Tk800.022 - Fixes for NoteBook and LabFrame - Various tweaks for "compile" to flat script (tool not released yet) - Doc patches - Slaven's -offset fixes and associated need to change compiled-in defaults. - Feature suggestions from the list.
Revision 1.26 / (download) - annotate - [select for diffs], Wed Nov 28 05:20:47 2001 UTC (10 years, 5 months ago) by jlam
Branch: MAIN
Changes since 1.25: +3 -2
lines
Diff to previous 1.25 (colored)
Buildlinkify.
Revision 1.25 / (download) - annotate - [select for diffs], Wed Oct 24 22:11:13 2001 UTC (10 years, 7 months ago) by jlam
Branch: MAIN
Changes since 1.24: +2 -2
lines
Diff to previous 1.24 (colored)
I am a triple idiot. The only relevant variable that x11.buildlink.mk
redefines about which buildlink.mk files would care is BUILDLINK_X11_DIR,
which points to the location of the X11R6 hierarchy used during building.
If x11.buildlink.mk isn't included, then BUILDLINK_X11_DIR defaults to
${X11BASE} (set in bsd.pkg.mk), so its value is always safe to use. Remove
the ifdefs surrounding the use of BUILDLINK_X11_DIR in tk/buildlink.mk and
revert changes to move x11.buildlink.mk before the other buildlink.mk files.
Revision 1.24 / (download) - annotate - [select for diffs], Tue Oct 23 21:02:17 2001 UTC (10 years, 7 months ago) by jlam
Branch: MAIN
Changes since 1.23: +4 -4
lines
Diff to previous 1.23 (colored)
Strongly buildlinkify.
Revision 1.23 / (download) - annotate - [select for diffs], Thu Oct 18 15:20:53 2001 UTC (10 years, 7 months ago) by veego
Branch: MAIN
Changes since 1.22: +2 -1
lines
Diff to previous 1.22 (colored)
SVR4 packages have a limit of 9 chars for a package name. The automatic truncation in gensolpkg doesn't work for packages which have the same package name for the first 5-6 chars. e.g. amanda-server and amanda-client would be named amanda and amanda. Now, we add a SVR4_PKGNAME and use amacl for amanda-client and amase for amanda-server. All svr4 packages also have a vendor tag, so we have to reserve some chars for this tag, which is normaly 3 or 4 chars. Thats why we can only use 6 or 5 chars for SVR4_PKGNAME. I used 5 for all the packages, to give the vendor tag enough room. All p5-* packages and a few other packages have now a SVR4_PKGNAME.
Revision 1.22 / (download) - annotate - [select for diffs], Tue Oct 2 06:39:59 2001 UTC (10 years, 7 months ago) by jlam
Branch: MAIN
Changes since 1.21: +3 -3
lines
Diff to previous 1.21 (colored)
Add -Wl,-R${X11BASE}/lib to the link command when making Tk.so. This
allows us to find libX11.so at run-time in the correct place.
Revision 1.21 / (download) - annotate - [select for diffs], Fri Jun 8 20:34:16 2001 UTC (10 years, 11 months ago) by tron
Branch: MAIN
Changes since 1.20: +2 -2
lines
Diff to previous 1.20 (colored)
Use wildcard dependence on "p5-HTML-Parser" package.
Revision 1.20 / (download) - annotate - [select for diffs], Sat May 5 19:51:20 2001 UTC (11 years ago) by jlam
Branch: MAIN
CVS Tags: netbsd-1-5-PATCH001
Changes since 1.19: +2 -2
lines
Diff to previous 1.19 (colored)
Mechanical changes of tk DEPENDS: tk-8.3.2 -> tk>=8.3.2 tk-[0-9]* -> tk>=8.0 tk-8.* -> tk>=8.0
Revision 1.19 / (download) - annotate - [select for diffs], Tue Mar 27 03:20:28 2001 UTC (11 years, 2 months ago) by hubertf
Branch: MAIN
Changes since 1.18: +2 -2
lines
Diff to previous 1.18 (colored)
Change BUILD_DEPENDS semantics: first component is now a package name+version/pattern, no more executable/patchname/whatnot. While there, introduce BUILD_USES_MSGFMT as shorthand to pull in devel/gettext unless /usr/bin/msgfmt exists (i.e. on post-1.5 -current). Patch by Alistair Crooks <agc@netbsd.org>
Revision 1.18 / (download) - annotate - [select for diffs], Sat Feb 17 17:06:37 2001 UTC (11 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.17: +2 -1
lines
Diff to previous 1.17 (colored)
Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.
Revision 1.17 / (download) - annotate - [select for diffs], Thu Aug 31 22:32:27 2000 UTC (11 years, 8 months ago) by jwise
Branch: MAIN
CVS Tags: netbsd-1-5-RELEASE,
netbsd-1-4-PATCH003
Changes since 1.16: +3 -3
lines
Diff to previous 1.16 (colored)
Adapt this package to tk-8.3.2. Hey, at least the python people put their money where their mouth is -- *I* sure don't use p5-Tk.... <duck> :-) :-) :-) Ok, I'll shut up and have another cup of coffee now...
Revision 1.16 / (download) - annotate - [select for diffs], Mon Aug 28 08:28:22 2000 UTC (11 years, 9 months ago) by jlam
Branch: MAIN
Changes since 1.15: +9 -9
lines
Diff to previous 1.15 (colored)
Update p5-Tk to 800.022. This is the port of the perl interface to Tk-8.0.5. Changes from p5-Tk-402.002 are too numerous to list, as it targets a different version of Tk.
Revision 1.15 / (download) - annotate - [select for diffs], Sun May 2 23:07:12 1999 UTC (13 years ago) by tron
Branch: MAIN
CVS Tags: netbsd-1-4-PATCH002,
netbsd-1-4-PATCH001,
comdex-fall-1999
Changes since 1.14: +4 -1
lines
Diff to previous 1.14 (colored)
Don't build "blib" perl module to avoid conflict with "perl5" package.
Revision 1.14 / (download) - annotate - [select for diffs], Sun May 2 22:33:05 1999 UTC (13 years ago) by tron
Branch: MAIN
Changes since 1.13: +2 -2
lines
Diff to previous 1.13 (colored)
Fix dependence: The module is called "Parser.pm" not "Parse.pm" and it is part of the "p5-HTML-Parser-2.22" package.
Revision 1.13 / (download) - annotate - [select for diffs], Mon Apr 26 19:30:26 1999 UTC (13 years, 1 month ago) by garbled
Branch: MAIN
CVS Tags: netbsd-1-4-RELEASE
Changes since 1.12: +2 -1
lines
Diff to previous 1.12 (colored)
add USE_X11=yes
Revision 1.12 / (download) - annotate - [select for diffs], Thu Apr 15 20:39:48 1999 UTC (13 years, 1 month ago) by tron
Branch: MAIN
Changes since 1.11: +2 -3
lines
Diff to previous 1.11 (colored)
Completely replace "MASTER_SITE_SUBDIR" and "PATCH_SITE_SUBDIR" with variable substituition of "MASTER_SITES" and "PATCH_SITES".
Revision 1.11 / (download) - annotate - [select for diffs], Thu Apr 1 13:38:46 1999 UTC (13 years, 1 month ago) by agc
Branch: MAIN
Changes since 1.10: +2 -2
lines
Diff to previous 1.10 (colored)
Update to tk version 8.0.5. This seems to be primarily a bug-fix release.
Revision 1.10 / (download) - annotate - [select for diffs], Thu Aug 20 15:17:35 1998 UTC (13 years, 9 months ago) by tsarna
Branch: MAIN
CVS Tags: netbsd-1-3-PATCH003
Changes since 1.9: +2 -1
lines
Diff to previous 1.9 (colored)
The Grand Homepagification: - New, optional Makefile variable HOMEPAGE, specifies a URL for the home page of the software if it has one. - The value of HOMEPAGE is used to add a link from the README.html files. - pkglint updated to know about it. The "correct" location for HOMEPAGE in the Makefile is after MAINTAINER, in that same section.
Revision 1.9 / (download) - annotate - [select for diffs], Mon Jun 22 13:20:59 1998 UTC (13 years, 11 months ago) by agc
Branch: MAIN
Changes since 1.8: +1 -19
lines
Diff to previous 1.8 (colored)
Update package Makefiles for automatic manual page handling.
Revision 1.8 / (download) - annotate - [select for diffs], Fri Apr 24 09:20:38 1998 UTC (14 years, 1 month ago) by agc
Branch: MAIN
CVS Tags: netbsd-1-3-PATCH002
Changes since 1.7: +2 -2
lines
Diff to previous 1.7 (colored)
Move to relative paths in the pkgsrc tree.
Revision 1.7 / (download) - annotate - [select for diffs], Wed Apr 22 14:22:49 1998 UTC (14 years, 1 month ago) by agc
Branch: MAIN
Changes since 1.6: +2 -2
lines
Diff to previous 1.6 (colored)
Remove the old deprecated DEPENDS definition from bsd.pkg.mk. Implement a new DEPENDS definition, which looks for an installed package, building it if not present, and use it in preference to LIB_DEPENDS. This should make the package collection more useful on NetBSD ELF ports.
Revision 1.6 / (download) - annotate - [select for diffs], Mon Apr 20 11:56:35 1998 UTC (14 years, 1 month ago) by frueauf
Branch: MAIN
Changes since 1.5: +27 -27
lines
Diff to previous 1.5 (colored)
Substitute all obvious FreeBSD ppl as MAINTAINER with packages@netbsd.org.
Revision 1.5 / (download) - annotate - [select for diffs], Wed Apr 15 10:38:54 1998 UTC (14 years, 1 month ago) by agc
Branch: MAIN
Changes since 1.4: +2 -7
lines
Diff to previous 1.4 (colored)
Use the bsd.pkg.mk and bsd.pkg.subdir.mk files in the pkgsrc tree. Remove redundant (and sometimes erroneous) comments.
Revision 1.4 / (download) - annotate - [select for diffs], Fri Jan 30 13:57:43 1998 UTC (14 years, 3 months ago) by agc
Branch: MAIN
Changes since 1.3: +2 -2
lines
Diff to previous 1.3 (colored)
Modify individual package Makefiles to use the new way of specifying shared object dependencies (LIB_DEPENDS).
Revision 1.3 / (download) - annotate - [select for diffs], Sun Jan 25 00:07:17 1998 UTC (14 years, 4 months ago) by hubertf
Branch: MAIN
Changes since 1.2: +2 -3
lines
Diff to previous 1.2 (colored)
portlint: fix RCS Id, remove empty line
Revision 1.2 / (download) - annotate - [select for diffs], Sat Nov 22 05:24:50 1997 UTC (14 years, 6 months ago) by hubertf
Branch: MAIN
Changes since 1.1: +20 -13
lines
Diff to previous 1.1 (colored)
Fix RCS Id, MI/MD PLIST
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sat Nov 22 05:14:23 1997 UTC (14 years, 6 months ago) by hubertf
Branch: FREEBSD
CVS Tags: FreeBSD-current-1997-10-28
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
GUI for perl
Revision 1.1 / (download) - annotate - [select for diffs], Sat Nov 22 05:14:23 1997 UTC (14 years, 6 months ago) by hubertf
Branch: MAIN
Initial revision