Commit graph

474 commits

Author SHA1 Message Date
rillig
3a792d5b85 Added RCS Id to patch-ab. 2005-10-23 20:25:07 +00:00
wiz
ada25f7595 Accept python-2.4 too, from Geert Hendrickx in PR 31887. 2005-10-22 11:39:02 +00:00
jmmv
684aeb19cd Update to 2.4.1: unknown changes. 2005-10-16 12:14:33 +00:00
rillig
5946936ffc Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE,
NO_BUILD, USE_LIBTOOL.
2005-09-28 20:52:18 +00:00
minskim
89df779447 Do not install gtodo_tray.png, which is installed by time/gtodo. 2005-09-22 03:57:51 +00:00
minskim
e29139ce4f Do not install locale.alias since we never use the included gettext. 2005-09-22 01:38:50 +00:00
reed
0e7a631888 Make sure this doesn't install the .orig info file created by diff too. 2005-08-30 20:17:50 +00:00
jlam
7820875fff Remove the abuse of buildlink that was pkg-config/buildlink3.mk. That
file's sole purpose was to provide a dependency on pkg-config and set
some environment variables.  Instead, turn pkg-config into a "tool"
in the tools framework, where the pkg-config wrapper automatically
adds PKG_CONFIG_LIBDIR to the environment before invoking the real
pkg-config.

For all package Makefiles that included pkg-config/buildlink3.mk, remove
that inclusion and replace it with USE_TOOLS+=pkg-config.
2005-08-10 20:56:10 +00:00
kristerw
b3b1f8e61e Remove a redundant directory. 2005-08-10 17:50:17 +00:00
jlam
7fbb8d9527 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.
2005-08-06 06:19:03 +00:00
wiz
d774725534 Change path from devel/pkgconfig to devel/pkg-config.
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
2005-07-21 16:29:42 +00:00
rillig
9d7683b18f Added saytime to SUBDIRS. 2005-07-21 00:16:35 +00:00
jlam
83147ffa68 Remove some unnecessarily strong dependencies on perl that resulted
from including perl5/buildlink3.mk.  These packages just need the Perl
interpreter, and can just add "perl" to USE_TOOLS instead.
2005-07-16 19:10:37 +00:00
jlam
bf9129c41e Drop distinction between PKGSRC_USE_TOOLS and USE_TOOLS by making
PKGSRC_USE_TOOLS go away.  There is now only a single USE_TOOLS variable
that specifies all of the tools we need to build/run the package.
2005-07-15 18:27:48 +00:00
wiz
f0d8b7c807 Reset maintainer to tech-pkg, since email bounced. 2005-07-14 13:52:13 +00:00
jlam
7a6521287b 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.
2005-07-13 18:01:18 +00:00
kristerw
7ec78b7fea Make this compile on non-NetBSD systems by setting HOST_CC=CC instead of
relying on bsd.sys.mk.
2005-07-08 18:22:49 +00:00
agc
84b061f166 clean up some lint 2005-07-07 22:15:03 +00:00
is
43f52db3f0 forgot description 2005-07-07 21:26:54 +00:00
is
3ba1e85aca A talking clock, by Jef Poskanzer. 2005-07-07 21:23:21 +00:00
jmmv
c6c6c8dad1 Use gtkhtml36 rather than gtkhtml3. Bump PKGREVISION.
Idea from wiz@ to let us remove gtkhtml3.
2005-06-26 18:45:43 +00:00
minskim
7907cb43b4 Add and enable wmclockmon. 2005-06-23 22:08:14 +00:00
minskim
68205bdb3d Import wmclockmon from pkgsrc-wip. Packaged by Amadeus Stevenson.
A stylish windowmaker dockapp which displays date and time in your
locale in varying formats, including Internet time.  Contains alarm,
calendar and configuration utilities.  Works under {black,flux}box
too.  Similar in style to wmmemmon and wmcpuload.
2005-06-23 22:06:33 +00:00
jlam
e46a9dd380 Create directories before installing files into them. 2005-06-17 03:50:19 +00:00
jlam
95fd1f6ec9 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.
2005-06-01 18:02:37 +00:00
snj
fd72907da1 Update to 0.1.18. Changes:
* Added --purge [<days-old>] option which lets you purge old completed items.
* Can now use force-colour in the todorc.
* Various patches from Debian and Gentoo maintainers applied. These fix
  compiler errors on recent GCC versions, uncaught exception when TERM is not
  set, a few man page issues, issues with the BASH scripts and miscellaneous
  other things.
2005-06-01 02:40:43 +00:00
bouyer
c975d64399 +p5-DateTime-Format-Epoch 2005-05-25 17:09:22 +00:00
bouyer
fbb808120b Initial import of p5-DateTime-Format-Epoch.
The DateTime::Fromat::Epoch modules provide to/from epoch seconds for the
DateTime.pm class.
2005-05-25 17:08:33 +00:00
wiz
9b3b3041bc Add RMD160 checksum. 2005-05-25 13:43:10 +00:00
rillig
f795c2e475 Removed trailing white-space. 2005-05-23 08:26:03 +00:00
jlam
585534220c Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:
USE_GNU_TOOLS	-> USE_TOOLS
	awk		-> gawk
	m4		-> gm4
	make		-> gmake
	sed		-> gsed
	yacc		-> bison
2005-05-22 20:07:36 +00:00
jmmv
fa27e19a38 Update to 2.2.1: Added mk, rw and xh translations. 2005-05-19 21:05:20 +00:00
martti
ae80268997 Updated xfce4 to 4.2.2
General:

* new and updated translations: bn_IN, ca, cs, el, el_GR, eo, eu, fi, hu, ja,
  ko, mr, pl, ro, vi,
* new french documentation.

gtk-xfce-engine:

* fix various colors issues with ExoIconBar, prelight colors for treeview,
  Adobe® Acrobattm 7, progress bar, combo box, gtk scales (#848).

libxfcegui4:

* check ~/.local/share/pixmaps/ as a fallback (#731).

xfcalendar:

* fix compiling with --enable-debug=full (#843),
* remove C99 variable declaration and C++ comments.

xfce4-mixer:

* fix a bug with ALSA.

xfce4-session:

* fix a crash with the MCS plugin.

xfce-utils:

* taskbar: Add a command option "--monitor=x" to allow specifying which
  monitor to use in Xinerama mode.

xfdesktop:

* fix translation problems with menu panel plugin,
* fix bug where binding 'xfdesktop -menu' only works sporadically (#441),
* fix unresolved symbol problem with menu module.

xffm:

* fix property dialog crahsing on FreeBSD (#945),
* fix library version info not set on the properties module (#882, #249),
* fix fstab parsing (#524),
* fix compilation issues with ansi compiler and gcc4 (#862).

xfprint:

* make bsdlpr plugin compile,
* change CUPS detection code,
* set correct ld flags (#871),
* add support for printcap aliases (#821),
* fix MCS plugin.

xfwm4:

* fix mouse buttons being left ungrabbed when focus was transfered to
  an unmanaged window,
* document hidden option "workspace_scroll" (#948),
* various focus issues (#759, #869, #899, #905, #924, #931),
* fix pixmap depth not being properly set (#895),
* refresh frame when "skip taskbar" state changes (#898),
* allow seemless windows to be hidden from kbd shortcuts,
* code cleanup.
2005-05-18 06:10:30 +00:00
jlam
7425b543e8 Note that gtar is required by the package. 2005-05-16 01:15:30 +00:00
kristerw
15e57c7f67 Make pkglint happy by removing trailing white space. 2005-05-09 20:40:07 +00:00
kristerw
451d484c72 Make this package build after bl3 was enabled by default (by
setting WRKSRC=${WRKDIR})
2005-05-09 20:29:26 +00:00
epg
e16f0c166e Add and enable p5-Schedule-Cron-Events. 2005-05-06 19:49:32 +00:00
epg
83323859fa Import p5-Schedule-Cron-Events-1.8.
Schedule::Cron::Events takes a crontab-style line and finds out
when events will occur.
2005-05-06 19:47:31 +00:00
kristerw
05f2696088 Correct PLIST.
Bump PKGREVISION.
2005-05-03 21:38:14 +00:00
reed
ee8be9d0c1 RCD_SCRIPTS_EXAMPLEDIR is no longer customizable.
And always is defined as share/examples/rc.d
which was the default before.

This rc.d scripts are not automatically added to PLISTs now also.
So add to each corresponding PLIST as required.

This was discussed on tech-pkg in late January and late April.

Todo: remove the RCD_SCRIPTS_EXAMPLEDIR uses in MESSAGES and elsewhere
and remove the RCD_SCRIPTS_EXAMPLEDIR itself.
2005-05-02 20:33:57 +00:00
kristerw
52a4df34b7 Include mk/pthread.buildlink3.mk. 2005-04-29 19:01:33 +00:00
jlam
0af93478f0 Use :sh instead of != to define WWWSERVER to defer evaluation until it's
used in the make targets.
2005-04-28 23:32:43 +00:00
drochner
2a3fcb15f8 update to 0_57_1
This is a compatibility fix for PyGTK 2.2.
2005-04-26 21:21:36 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
wiz
8d7566bd78 Add missing curses dependency, noted by reed. 2005-04-05 15:34:33 +00:00
reed
e540f01d08 Pre-create needed directories. (I noticed I had a text file man/man6 which
was the grdc.6 man page!)

TODO: This package should depend on a curses.
2005-04-05 15:27:04 +00:00
adrianp
e8becf78ed - Update p5-Time-modules to 2003.1126
> 2003.1125:
> 	Various folks have complained that JulianDay isn't correct.  An
> 	errata section has been added to the documentation.
>
> 	Mark Ivey <mivey@r2tech.com> add '@' as a synonym for 'at'.
> 	Fixed typos.
>
> 	Bryan Henderson <bryanh@giraffe-data.com> sent in a patch to
> 	allow NOW => 0 so that ParseDate can be used to parse relative
> 	times.
>
> 	ewan@baremetal.com sent in a patch adding a bit of ISO 8601
> 	support.
>
> 	David Alban <david@responsible.com> doesn't like allowing the
> 	hour 24:00.  I agree.  Gone if you have VALIDATE=>1.
>
> 	Still to be done: the support the large number of ISO 8601
> 	date formats: http://hydracen.com/dx/iso8601.htm
> 2003.0211:
> 	Mike Cramer <cramer@webkist.com> sent a patch to Timezone to
> 	handle changes in $ENV{TZ}.
>
> 	Rani Pinchuk <rani@cpan.org> sent in a definition for the
> 	CEST timezone.
>
> 	On Phil.Moore@msdw.com's behalf the timezone 'MET DST' is now
> 	supported.
>
> 2002.1001:
> 	No real changes, just added a license.
2005-04-02 12:42:28 +00:00
wiz
b8e0eb28f4 Remove FreeBSD RCS Ids. pkgsrc has diverged too much for syncing to be
useful.
2005-03-24 21:12:50 +00:00
is
76f2d69253 Upgrade to lmclock-1.2: add -display option. 2005-03-23 22:32:04 +00:00
reed
bb6541af6a Remove copyright information.
And mention it is tk-based.
2005-03-23 00:29:56 +00:00
jmmv
04a67ec8b3 Update to 2.2.0:
2005-03-07  Rodney Dawes  <dobey@novell.com>

	* configure.ac: Up version to 2.2.0 for release

2005-03-02  Roozbeh Pournader  <roozbeh@farsiweb.info>

	* configure.ac: Added "fa" (Persian) to ALL_LINGUAS.

2005-02-28  Rodney Dawes  <dobey@novell.com>

	* configure.ac: Up version to 2.1.92 for release

2005-02-28  Rodney Dawes  <dobey@novell.com>

	* Makefile.am (MAINTAINERCLEANFILES): Add mkinstalldirs to the list

	* src/evolution-webcal-main.c (e_webcal_open_cal_http): Remove unused
	variable "tmpname" to fix compiler warnings
	(e_webcal_open_cal_vfs): Remove unused method to fix compiler warnings
	(main): Remove call to bonobo_init as we don't need to call it

	* src/encompass-webcal-notify.c: #include <libbonobo.h> to fix some
	compiler warnings

2005-02-26  Ahmad Riza H Nst  <ari@160c.afraid.org>

	* configure.ac: Added id (Indonesian) in ALL_LINGUAS line

2005-02-11  Rodney Dawes  <dobey@novell.com>

	* src/evolution-webcal-main.c (e_webcal_read): We need to strndup the
	message body before passing it off to the ical parsing code

2005-02-07  Rodney Dawes  <dobey@novell.com>

	* configure.ac: Up verison to 2.1.91 for release

2005-01-28  Pawan Chitrakar  <pawan@nplinux.org>

	* configure.ac: Added ne "Nepali" in ALL_LINGUAS

2005-01-27  Theppitak Karoonboonyanan  <thep@linux.thai.net>

	* configure.ac: Added "th" (Thai) to ALL_LINGUAS.

2005-01-23  Rodney Dawes  <dobey@novell.com>

	* configure.ac: Update version to 2.1.4 for release

2005-01-10  Rodney Dawes  <dobey@novell.com>

	* configure.ac: Update version to 2.1.3 for release
	Update copyright to be (C) 2004-2005
	* src/*.[ch]: Update copyright to be (C) 2004-2005

2005-01-08  Rodney Dawes  <dobey@novell.com>

	* src/evolution-webcal-notify.c (e_webcal_label_new):
	(e_webcal_label_size_allocate_cb, e_webcal_label_handle_resize):
	Add new methods to set up proper resizing for the
	description/title labels
	(e_webcal_query_user): Fix the vbox packing to be filled/expanded
	Use the new label routines to handle resizing of the dialog

2004-12-20  Rodney Dawes  <dobey@novell.com>

	* configure.ac: Up version to 2.1.1 for release
	Add vi to ALL_LINGUAS

2004-12-04  Žygimantas Beručka  <uid0@akl.lt>

	* configure.ac: Added "lt" (Lithuanian) to ALL_LINGUAS.

2004-11-28  Rodney Dawes  <dobey@novell.com>

	* configure.ac: Up version to 2.1.1 for release

2004-11-10  Rodney Dawes  <dobey@novell.com>

	* Makefile.am (EXTRA_DIST): Remove mkinstalldirs
	(CLEANFILES): Remove po/.intltool-merge-cache

2004-11-09  Rodney Dawes  <dobey@novell.com>

	* Makefile.am: Remove the applications file stuff
	* evolution-webcal.applications.in: Remove this file

2004-11-04  Rodney Dawes  <dobey@novell.com>

	* src/evolution-webcal-notify.c (e_webcal_query_user):
	Move the tmpuri and tmpname assignments up to the top of the function
	If we get called with has_events and has_tasks as false, pop up a
	better error than "Already Subscribed" before trying to set up the
	ESource for the calendar
	Remove the comma from the "Already Subscribed" error before the
	calendar name so we have "calendar \"%s\"" instead

	Fixes #154617

2004-11-01  Rodney Dawes  <dobey@novell.com>

	* *: Release version 2.1.0

2004-09-27  Rodney Dawes  <dobey@novell.com>

	* configure.ac: Up version to 2.1.0
	Update libecal requires for libecal-1.2 >= 1.1.0

Mon Sep 27 10:38:41 2004  Jonathan Blandford  <jrb@gnome.org>

	* configure.ac: Link to the right libecal.

2004-09-19  Alessio Frusciante  <algol@firenze.linux.it>

	* configure.ac: Added "it" (Italian) to ALL_LINGUAS.

2004-09-13  Abel Cheung  <maddog@linuxhall.org>

	* configure.ac: Added "ru" "zh_CN" "zh_TW" to ALL_LINGUAS.
2005-03-22 16:38:55 +00:00
salo
232f9b233d Security fix for CAN-2004-1289.
"Multiple buffer overflows in the getline function in pcalutil.c and the
 get_holiday function in readfile.c for pcal 4.7.1 allow remote attackers
 to execute arbitrary code via a crafted calendar file."

Partial patch from Debian.  Bump PKGREVISION.
2005-03-20 21:34:17 +00:00
martti
16298514bc Updated xfce to 4.2.1.1
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-18 07:59:08 +00:00
rillig
3d852359c8 Added patches to enable building with gcc-2.95.3. Approved by wiz. 2005-03-16 12:48:49 +00:00
jmmv
bc271da5c3 Use email addresses in the MAINTAINER field. Adding names produces ugly
results, specially in the bulk build reports, and we don't use this style
anywhere else.
2005-03-12 10:23:57 +00:00
wiz
8d46d635a2 Update to 0.27:
0.27    2005-01-31

[ ENHANCEMENTS ]

- Added local_rd_values() method for the benefit of other modules like
DateTime::Event::Recurrence.


0.26    2005-01-27

[ BUG FIXES ]

- The docs claimed that the delta_ms(), delta_md(), delta_days()
methods always returned a positive duration, but this was not true for
delta_md() or delta_days().
2005-02-26 01:57:28 +00:00
wiz
8c2c86370c Use Module::Build framework. Unbreaks build and makes
PLIST automatic again.
2005-02-26 01:52:30 +00:00
wiz
19c1173913 Use the Build::Module framework. Unbreaks build
and makes PLIST automatic again.
2005-02-26 01:44:44 +00:00
wiz
9bd85fdf06 Add RMD160 checksums. 2005-02-23 19:14:53 +00:00
hubertf
9a981bcfbe Sign over maintainership to tech-pkg@ 2005-02-21 20:26:08 +00:00
uebayasi
5a8a5b0b17 Fix quoting. 2005-02-14 05:37:55 +00:00
erh
1c5b9c186e Swing is included w/ java, so a separate dependency isn't needed. 2005-02-11 03:13:19 +00:00
cube
cd0e002f0e Activate and note addition of the p5-DateTime-* packages. 2005-01-26 16:26:23 +00:00
cube
6273392a34 Fix reference to local category. 2005-01-26 16:23:11 +00:00
cube
f29c872d1a Initial import of p5-DateTime-Event-Cron, version 0.07, into the NetBSD
Packages Collection.

The DateTime::Event::Cron module generates DateTime and DateTime::Set objects
based on crontab-style entries.  The crontab formats are the extended V7
standard as described in crontab(5) on linux systems and as noted in the
documentation for Set::Crontab.

Note that the module is still alpha status.  Methods provided are likely to
change in the future.
2005-01-26 16:20:54 +00:00
cube
f55066bfce Initial import of p5-DateTime-Set, version 0.19, into the NetBSD Packages
Collection.

DateTime::Set is a module for date/time sets.  It can be used to handle two
different types of sets.

The first is a fixed set of predefined datetime objects.  For example, if we
wanted to create a set of dates containing the birthdays of people in our
family.

The second type of set that it can handle is one based on the idea of a
recurrence, such as "every Wednesday", or "noon on the 15th day of every
month".  This type of set can have fixed starting and ending datetimes, but
neither is required.  So our "every Wednesday set" could be "every Wednesday
from the beginning of time until the end of time", or "every Wednesday after
2003-03-05 until the end of time", or "every Wednesday between 2003-03-05 and
2004-01-07".
2005-01-26 16:19:41 +00:00
cube
be031d61d0 Initial import of p5-DateTime, version 0.25, into the NetBSD Packages
Collection.

The DateTime.pm module aims to provide a complete, correct, and easy
to use date/time object implementation.  Currently it handles many date
calculations, date math (addition and subtraction), and provides
convenient methods for retrieving portions of a date/time.

This module properly supports the Olson time zone database, meaning
that historical time zone information, and more importantly, daylight
saving time rules, can be handled transparently, simply by setting the
correct time zone.  This is done by using the DateTime::TimeZone
module.
2005-01-26 16:18:40 +00:00
cube
f4e618db86 Initial import of p5-DateTime-TimeZone, version 0.32, into the NetBSD
Packages Collection.

The DateTime::TimeZone modules provide a Perl interface to the Olson
time zone database.  Rather than using the database directly, we parse
the database files and turn them into a set of modules, one for each
time zone defined.  This allows for various optimizations in doing
time zone calculations.  This conversion is done with the script in
tools/parse_olson.

The Olson time zone database is the best available source for world
wide time zone information.  It is available from
ftp://elsie.nci.nih.gov/pub/.  A good starting point for information
on the database, and time zones in general, is
http://www.twinsun.com/tz/tz-link.htm.
2005-01-26 16:17:12 +00:00
cube
1a3f4cbfef Initial import of p5-DateTime-Locale, version 0.09, into the NetBSD
Packages Collection.

The DateTime::Locale modules provide localization data for the DateTime.pm
class.
2005-01-26 16:15:46 +00:00
tv
1418217d54 Pull in devel/libgetopt/buildlink3.mk for platforms needing it to build. 2005-01-25 04:33:38 +00:00
tv
8a116d437c "-p" is not a valid arg to install-sh on booststrapped pkgsrc platforms. 2005-01-25 04:23:05 +00:00
tv
4ce6743c97 Fix install on Interix. 2005-01-25 04:21:36 +00:00
tv
90069700e8 Make build on Interix, which acts more like SysV/xopen for time handling. 2005-01-25 04:20:31 +00:00
tv
6f9ce4da5c Fix build on Interix. 2005-01-25 04:13:57 +00:00
tv
b6f790043f CC is already in MAKE_ENV. 2005-01-25 04:09:49 +00:00
tv
f53a26e7cf Fix Interix build. 2005-01-25 03:37:29 +00:00
recht
367eed19fe Build Python with thread support by default and turn the existing
python*-pth packages into meta-packages which will install the non-pth
packages. Bump PKGREVISIONs on the non-pth versions to propagate the
thread change, but leave the *-pth versions untouched to not affect
existing installations.
Sync all PYTHON_VERSIONS_AFFECTED lines in package Makefiles.
2005-01-23 20:41:45 +00:00
bad
6ff0dd6218 Update p5-Time-HiRes to 1.66.
Changes since 1.59:

1.66
        - add nanosleep()
        - fix the 'hierachy' typo in Makefile.PL [rt.cpan.org #8492]
        - should now build in Solaris [rt.cpan.org #7165] (since 1.64)
        - should now build in Cygwin [rt.cpan.org #7535] (since 1.64)
        - close also [rt.cpan.org #5933] "Time::HiRes::time does not pick up time adjustments like ntp" since ever reproducing it in the same environment
          has become rather unlikely

1.65
        - one should not mix u?alarm and sleep (the tests modified
          by 1.65, #12 and #13, hung in Solaris), now we just busy
          loop executing an empty block
        - in the documentation underline the unspecificity of mixing
          sleeps and alarms
        - small spelling fixes

1.64
        - regenerate ppport.h with Devel::PPPort 3.03,
          now the MY_CXT_CLONE is defined in ppport.h,
          we no more need to do that.

        - the test #12 would often hang in sigsuspend() (at least that's
          where Mac OS X' ktrace shows it hanging).  With the sleep()s
          changed to sleep(1)s, the tests still pass but no hang after
          a few hundred repeats.

1.63
        - Win32 and any ithread build: ppport.h didn't define
          MY_CXT_CLONE, which seems to be a Time-HiResism.

1.62
        - Skip testing if under PERL_CORE and Time::HiRes has not
          been Configured (from Marcus Holland-Moritz, core change
          #23246)
        - Use ppport.h generated by Devel::PPPort 3.01,
          allowing cutting away our own portability code.
        - Don't use $ENV{PERL_CORE} for < 5.6.0.
        - Don't use "for my $i" for <= 5.003.
        - Don't use Pause() for <= 5.003.
        - Can't use newSVpvf for <= 5.003.
        (most of the changes from Marcus)

1.61
        - Win32: reset reading from the performance counters every
          five minutes to better track wall clock time (thanks to
          PC timers being often quite bad), should help long-running
          programs.

1.60
        - Win32: Patch from Steve Hay
          [PATCH] Re: [perl #30755] [Win32] Different results from Time::HiRes::gettimeofdayunder the debugger
          to [perl #30755] reported by Nigel Sandever

        - Cygwin: Use the Win32 recalibration code also in Cygwin if the
          <w32api/windows.h> APIs are available.  Cygwin testing by
          Yitzchak Scott-Thoennes.

        - Solaris: use -lposix4 to get nanosleep for Solaris 2.6,
          after that keep using -lrt, patch from Alan Burlison,
          bug reported in [cpan #7165]
2005-01-20 21:07:51 +00:00
martti
2804fbe74e Added xfce4-calendar 2005-01-17 12:51:47 +00:00
martti
74a1440983 Calendar for XFce4. 2005-01-17 12:51:16 +00:00
epg
188e66f9de Update to 1.16.
ChangeLog from 1.14 to 1.16:

Change 814 on 2003/06/03 by <gbarr@pobox.com> (Graham Barr)

	Date::Parse
	- Time::Local in 5.8 does not support fractional seconds

Change 813 on 2003/06/02 by <gbarr@pobox.com> (Graham Barr)

	Release 1.15

Change 812 on 2003/06/02 by <gbarr@pobox.com> (Graham Barr)

	Fix comments about Language implementation in Date::Parse
	(patch from Christian Hammers)

Change 811 on 2003/06/02 by <gbarr@pobox.com> (Graham Barr)

	Fix short name for 'maart' to be 'mrt' as suggested by Frank Maas

Change 810 on 2003/06/02 by <gbarr@pobox.com> (Graham Barr)

	Add %G format for GPS week (patch from Eric Richardson)

Change 809 on 2003/06/02 by <gbarr@pobox.com> (Graham Barr)

	Language updates from Daniel Yacob

Change 808 on 2003/06/02 by <gbarr@pobox.com> (Graham Barr)

	str2time("") should return undef

Change 807 on 2003/06/02 by <gbarr@pobox.com> (Graham Barr)

	Added Swedish and Finnish languages from Matthew Musgrove

Change 778 on 2003/03/03 by <gbarr@pobox.com> (Graham Barr)

	Added Chinese_GB language.
	Supplied by forehead (I don't even pretend tounderstand it)

Change 777 on 2003/03/03 by <gbarr@pobox.com> (Graham Barr)

	Return fractional seconds when specified in an ISO date

Change 776 on 2003/03/03 by <gbarr@pobox.com> (Graham Barr)

	New languages from Daniel Yacob

Change 775 on 2003/03/03 by <gbarr@pobox.com> (Graham Barr)

	Fix UTC support on ISO dates

Change 774 on 2003/03/03 by <gbarr@pobox.com> (Graham Barr)

	Allow a : in a timezone so the dates specified in RSS can be parsed
	(eg 2002-11-07T23:31:49-05:00) Patch from Kellan

Change 773 on 2003/03/03 by <gbarr@pobox.com> (Graham Barr)

	Support parsing more formats
2005-01-16 22:16:05 +00:00
wiz
6c248e26d3 Remove 22pth from accepted python versions since it is too old for py-gtk2. 2005-01-13 11:35:25 +00:00
jmmv
a4676aea1a Fix build under Linux (attempt to modify a const variable). I'm not sure
why it's an error there, while NetBSD only shows a warning (maybe it's due
to the GCC version used).

Shown in last minskim@'s bulk build.
2005-01-04 14:43:07 +00:00
minskim
d5cf0e8c9b Add build dependency on pkgconfig, which is used by configure. 2005-01-01 18:02:01 +00:00
reed
32d8f290c2 The default location of the pkgsrc-installed rc.d scripts is now
under share/examples/rc.d. The variable name already was named
RCD_SCRIPTS_EXAMPLEDIR.

This is from ideas from Greg Woods and others.

Also bumped PKGREVISION for all packages using RCD_SCRIPTS mechanism
(as requested by wiz).
2004-12-28 02:47:40 +00:00
darcy
94ac84002f Upgrade to 2.0.6 2004-12-27 13:03:04 +00:00
grant
908e765695 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.
2004-12-20 11:30:55 +00:00
wiz
6e02d7ee41 Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.
Suggested by Roland Illig, ok'd by various.
2004-12-03 15:14:50 +00:00
perry
0dc8320cf0 remove an obsolete PKGREVISON 2004-11-30 21:18:57 +00:00
perry
e1eeede33b Update to sunclock version 1.5
Changelog:

   Version 1.5
   - Updates of the main window and the icon should now work with
     all window managers (e.g. WindowMaker's `shading' caused problems
     before)
   - Uploaded by Wolfram Gloger (wmglo@Dent.MED.Uni-Muenchen.DE)

   Version 1.4-colour
   - Added options for user to specify the colours used to draw the
     map. Updated man page. - Michael Richmond (mar@mri.mq.edu.au)
2004-11-30 21:17:30 +00:00
jdolecek
84166d02fb Update pear-Date to 1.4.3.
Changes 1.4.1 to 1.4.3:
* Fix #1250 Wrond name for Bangladesh TZ
* Fix #1390, add XML Schema datetime support
* TimeZone default bad global usage only _DATE_TIMEZONE_DEFAULT is used now
* Fix #683, add optional length argumet to getDayName()
* Fix PHP5 problems with get_class functions
* Fix #674 endOfWeek() beginOfWeek()
* Fix #727, weeksInMonth (wrong result with some dates)
* Fix #674 (and old system #22549), check arguments in Date_Span

Changes in 1.4:
- improvements in input date parsing
- add Date methods addSpan() and subtractSpan()
- added two more ISO8601 date/time output formats DATE_FORMAT_ISO_BASIC
  and DATE_FORMAT_ISO_EXTENDED
- improve Date_Calc isLeapYear() and daysInMonth() for year 1582
- add gregorianToISO() method to Date_Calc
- add dateSeason() method to Date_Calc
- add Date_Span class
- bugfix in Date_Calc when century ends in 00, only define
  DATE_CALC_BEGIN_WEEKDAY if not already defined
- bugfix in beginOfNextWeek(), beginOfPreviousWeek()
- bugfix in nextDayOfWeek and prevDayOfWeek (thx to koan at gmx dot at)
- bugfix for bug 62: getDate(DATE_FORMAT_UNIXTIME) off because of DST
- bugfix for bug 65: format(e) returns zero-padded day
- bugfix for bug 195: Suppress a notice in setDate()
- bugfix for bug 271: Date_Calc weeksInMonth() returns wrong number
- fix abstraction bug, Date constructor accepts now object that extends Date
- add tests to release package
- Fix notices and mins calc in to toUTCbyOffset()
2004-11-27 13:31:10 +00:00
jdolecek
43c0bed35c Update gnotime to 2.2.1.
Changes:
* further use of GtkDialog
* added filter for HTML diary
* escape & in project name
* add option to reparent intervals to tasks above or below
* sync qof with latest qof sources
* accepted main.c <sys/wait.h> patch
2004-11-27 10:48:02 +00:00
jdolecek
bf81d5a98e Use HOMEPAGE provided by lang/php/pear.mk 2004-11-27 10:02:52 +00:00
snj
9e3678da7a Update to 1.24. This version fixes a memory leak. 2004-11-26 20:50:52 +00:00
kim
6219bfd4e5 Fixed the globbing in patch-ac (thanks Christos), to avoid errors from free.
Closes PR pkg/26612
2004-11-24 23:04:41 +00:00
kristerw
8c3ae0e674 Make this build under NetBSD 1.6.2 (C99-isms, and a missing header file). 2004-11-24 22:35:25 +00:00
wiz
37497fcead USE_LANGUAGES= c++ 2004-11-22 21:02:33 +00:00
jlam
5e5ac5cef9 USE_BUILDLINK3 is a yes/no variable. 2004-11-13 21:28:27 +00:00
jdolecek
b5617b477e use the shared pear module framework, so that these work with both PHP4
and PHP5; no functional change, so PKGREVISION not bumped
2004-11-01 19:57:10 +00:00
jmmv
7dde1eed9e Update to 2.0.1:
- new translations: vi, it, ru, zh_CN, zh_TW.
- updated translations.
2004-10-28 19:19:42 +00:00