Commit graph

723 commits

Author SHA1 Message Date
joerg
b9e74eb1a6 Needs msgfmt. 2006-06-29 18:58:19 +00:00
joerg
cf5518c4ae Add DragonFly support. Override config.guess/config.sub scripts deeper
in the hierachy.
2006-06-27 11:11:52 +00:00
dmcmahill
2905139798 www/horde3 has moved to www/horde 2006-06-25 19:53:13 +00:00
joerg
8a0bf22915 Needs msgfmt. 2006-06-22 10:11:18 +00:00
joerg
2ab283097f Needs msgfmt. 2006-06-16 14:16:54 +00:00
rillig
0c8ccc1294 Fixed Perl interpreter. Bumped PKGREVISION. 2006-06-16 11:42:02 +00:00
abs
7e9912a9bb Add dependency on p5-DateTime-Format-Builder 2006-06-14 09:15:45 +00:00
ghen
832bf56e76 Update sunbird to 0.3alpha2, the second official release of the Mozilla Sunbird
project.

From the Release Notes:

Sunbird 0.3 alpha2 is not intended to be a production-quality release. (See
Limitations and Known Bugs) Instead, it is being released largely in order to
showcase/test the advanced new view code. This includes:

    * Inline editing of event titles
    * Restoration of drag and drop editing in the day/week views

In addition to showcasing and testing the new views, Sunbird 0.3 alpha2 aims to
fix many bugs identified in Sunbird 0.3 alpha1. Some highlights are:

    * Ability to modify individual elements of a recurring event
    * Fewer import/export errors
    * Better error reporting
    * Improved alarm functionality
    * A new, more intuitive New Event dialog
    * Better Mac support
    * Many other minor bug fixes
2006-06-07 19:29:59 +00:00
abs
425c605657 Add:
- devel/p5-IO-Prompt
- devel/p5-List-MoreUtils
- devel/p5-Perl6-Export
- devel/p5-Perl6-Slurp
- devel/p5-version
- graphics/p5-RRDTool-OO
- time/p5-DateTime-Format-Builder
- time/p5-DateTime-Format-ISO8601
- time/p5-DateTime-Format-Strptime
- www/p5-FCGI-ProcManager
2006-06-07 12:03:13 +00:00
abs
e6473fd4d1 Added time/p5-DateTime-Format-Builder-0.7807
DateTime::Format::Builder creates DateTime parsers. Many string
formats of dates and times are simple and just require a basic
regular expression to extract the relevant information. Builder
provides a simple way to do this without writing reams of structural
code.

Builder provides a number of methods, most of which you'll never
need, or at least rarely need. They're provided more for exposing
of the module's innards to any subclasses, or for when you need to
do something slightly beyond what I expected.
2006-06-07 11:49:46 +00:00
abs
a9e467e80d Added time/p5-DateTime-Format-ISO8601-0.0403
Parses almost all ISO8601 date and time formats. ISO8601 time-intervals
will be supported in a later release.
2006-06-07 11:48:28 +00:00
abs
3584f5778b Added time/p5-DateTime-Format-Strptime-1.0700
This module implements most of strptime(3), the POSIX function that
is the reverse of strftime(3), for DateTime. While strftime takes
a DateTime and a pattern and returns a string, strptime takes a
string and a pattern and returns the DateTime object associated.
2006-06-07 11:46:16 +00:00
grant
9c116d7dc1 s/Gnu/GNU/ 2006-06-07 02:17:32 +00:00
joerg
8572e2517c Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv).
While going through the tree, fix some more packages which had similiar
issues with too strict conflicts, bump the revisions of those.
2006-06-04 16:26:54 +00:00
joerg
fc9991781a Doesn't work with distutils in Python 2.0, so mark 2.1+. 2006-06-02 18:35:53 +00:00
joerg
337c6b1297 Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*,
all PEAR packages to php?-pear-* and all Apache packages to ap13-* or
ap2-* respectively. Add new variables to simplify the Makefile
handling. Add CONFLICTS on the old names. Reset revisions of bumped
packages. ap-php will now depend on the default Apache and PHP version.
All programs using it have an implicit option of the Apache version
as well.

OK from jlam@ and adrianp@.
2006-06-02 18:27:54 +00:00
joerg
9c6ab9aba7 Fix INSTALLATION_DIRS and move readme into share/doc/pcal. Bump revision. 2006-06-02 13:55:11 +00:00
wiz
c8bc2156d7 USE_LANGUAGES=c++ 2006-05-22 22:04:15 +00:00
joerg
ac0a9ad68d Uses C++. 2006-05-15 22:27:58 +00:00
adrianp
0101b64a3e Move the primary MASTER_SITES to http://ftp.horde.org/pub/ and move
ftp://ftp.horde.org/pub/ to a backup
2006-04-29 09:23:19 +00:00
hiramatsu
b4a8d4c764 Update p5-DateTime to 0.30.
Changes from 0.27:

0.30    2005-12-22

[ ENHANCEMENTS ]

- Expanded and rewrote the docs on date math to try to explain exactly
how DateTime.pm works, and in particular cover the problems DST
introduces to various types of date math.  The docs now also include
some specific recommendations on getting sane results from datetime
math.

- Added calendar_duration() and clock_duration() methods to
DateTime::Duration

- Explicitly override the stringification method for
DateTime::Infinite objects.  They now stringify as whatever the IEEE
infinity and negative infinity numbers stringify to on your platform.
On Linux this is "inf" and "-inf". CPAN RT #16632.

[ BUG FIXES ]

- delta_md() and delta_days() did not always return correct values
when crossing a DST change.

- The pure Perl version of the code had a dependency ordering problem
where DateTime::LeapSecond depended on other pure Perl code that
wasn't yet available.  I'm not sure how this ever worked.

- Remove mentions of leap second on 1971-12-31 from the docs, because
there was no leap second that day.  Reported by Mike Schilli.

- If you added a second to a datetime that was on a leap second (like
2005-12-31T23:59:60) it got "stuck" and kept returning the same
datetime.  Reported by Mike Schilli.

- Changes to the tests in 20infinite.t may fix failures seen on some
platforms and with new versions of Test::More (0.62 was known to cause
failures)

[ *** BACKWARDS INCOMPATIBILITIES *** ]

- The subtract_datetime() method switched back to using the local
portion of the date _and_ time, but it now accounts for days with DST
changes specially.  This produces results that fix the bugs that were
fixed by previous subtraction changes in 0.28 and 0.29, but without
introducing even more bugs.  The overall result should be sane, but
please see the docs for details.

0.2901  2005-07-04

- A leap second for the end of 2005 was announced.

0.29    2005-06-03

[ *** BACKWARDS INCOMPATIBILITIES *** ]

- When adding/subtracting a duration with months or days that crossed
a DST change, the result was based on the local time, not the UTC
time.  For consistent results, it is necessary to use the UTC time
(but local date) for all date math.  Reported by J. Alexander Docauer.

0.28    2005-02-27

[ ENHANCEMENTS ]

- The era names for the era() method are now retrieved from the
DateTime.pm object's associated locale.  The old era() method, which
was hard-coded to use BCE and CE, is renamed secular_era().  The
christian_era() method remains the same.

[ BUG FIXES ]

- Fixed an embarassing bug in the subtract_datetime() method.  It was
subtracting local times, not UTC, which caused bugs when doing
subtraction across a DST change.  This method is used to implement
subtraction overloading, so that was affected as well.  Reported by
Mike Schilli.

- The docs for the %U and %W strftime specifiers implied that these
should be zero-padded, but the code was not doing so.  Reported by J
Docauer.
2006-04-25 14:03:58 +00:00
hiramatsu
cf06490021 Update p5-DateTime-TimeZone to 0.44.
Changes from 0.42:

0.44     2006-04-17

- This release is based on version 2006d of the Olson database.

0.43     2006-04-13

- This release is based on version 2006c of the Olson database.

- Added a link for AKST9AKDT (to America/Anchorage).
2006-04-25 13:59:06 +00:00
hiramatsu
c4b3864bdd Update p5-DateTime-Locale to 0.22:
Changes from 0.09:

0.22   2005-05-31

- Allow id names passed to load() to contain dashes or underscores, in
order to support RFC 3066 locale names, which use dashes.

- Fix bugs when a custom locale was registered and a "class" parameter
was passed to register().  Patch from Yann Kerherv.

- Switched to a "traditional" Makefile.PL file at Perrin Harkins'
request.

0.21   2005-02-28

- Fix era() method for year 0.

0.20   2005-02-26

* BACKWARDS INCOMPATIBILITY - The way DateTime::Locale::Base
subclasses work has changed.  Subclasses should no longer implement
the date_formats() or time_formats() methods.  Instead, they need to
provide one method per format length (full_date_format(),
long_date_format(), etc).

- Uses much newer (August, 2004) data from ICU.  This includes a
number of new locales.  See DateTime::LocaleCatalog for a list.  This
new data also adds a new type of differentiator for locales, the
script (Latin vs Cyrillic, for example).

- Added new methods to get the "narrow" forms of a day or month.

- Implemented per-locale eras.

- Fix a number of doc typos and buglets.  Patch by Jean Forget.
2006-04-25 13:56:48 +00:00
rillig
9fc2d7d281 Removed the superfluous "quotes" and 'quotes' from variables that don't
need them, for example RESTRICTED and SUBST_MESSAGE.*.
2006-04-22 09:22:05 +00:00
adrianp
1063df1de8 Upgrade to 2.1.1
> Major changes compared to the Kronolith H3 (2.1) version are:
>     * Fixed fatal error during first login of new users.
>     * Update free/busy information on Kolab servers after editing events.
>     * Improved free/busy support.
>     * Improved interoperability with KOrganizer.
>     * Added upgrade script for Oracle to upgrade from 1.1 to 2.x.
>     * Updated Danish, Dutch, Greek and Japanese translations.
2006-04-17 20:56:30 +00:00
wiz
02f8f7c52d Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
jlam
ea5f9f80b6 Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey
PKGLOCALEDIR and which install their locale files directly under
${PREFIX}/${PKGLOCALEDIR} and sort the PLIST file entries.  From now
on, pkgsrc/mk/plist/plist-locale.awk will automatically handle
transforming the PLIST to refer to the correct locale directory.
2006-04-17 07:07:11 +00:00
minskim
1f5a7f66fa Add p5-Time-Local. 2006-04-16 22:25:45 +00:00
minskim
0c2fe5934e Import p5-Time-Local from pkgsrc-wip. Packaged by Roman Kulik.
These routines are the inverse of built-in perl functions localtime()
and gmtime().  They accept a date as a six-element array, and return
the corresponding time(2) value in seconds since the system epoch
(Midnight, January 1, 1970 UTC on Unix, for example).  This value can
be positive or negative, though POSIX only requires support for
positive values, so dates before the system's epoch may not work on
all operating systems.
2006-04-16 22:23:26 +00:00
wiz
08798a50e2 Fix typo. 2006-04-16 07:54:18 +00:00
perry
3167adde68 message explaining how to set your resources to make xalarm look better 2006-04-16 02:09:48 +00:00
perry
a724d45de7 Add some resources to make Xaw3d widgets look better 2006-04-16 02:00:34 +00:00
perry
1549c66dab Update to 3.06. It was released ten years ago, but for whatever
reason we were using 3.03 and patching it up to 3.05.

The only ChangeLog entry is
  Fix DIALOGVALUE from Charles Durst <cdurst@world.std.com>.

Also, rig this to use Xaw3d correctly.

I may make the default use more modern colors later.
2006-04-16 01:00:06 +00:00
jlam
1cf9796f3c BUILD_USE_MSGFMT and USE_MSGFMT_PLURALS are obsolete. Replace with
USE_TOOLS+=msgfmt.
2006-04-13 18:23:29 +00:00
rillig
96fc47c14f Aligned the last line of the buildlink3.mk files with the first line, so
that they look nicer.
2006-04-12 10:26:59 +00:00
jlam
2870fe83ef List info files directly in the PLIST and honor PKG{INFO,MAN}DIR. 2006-04-08 05:02:59 +00:00
jlam
72dd8f5f97 Handle installation in the case where info file may be split. 2006-04-08 04:22:55 +00:00
reed
5abef9be14 Over 1200 files touched but no revisions bumped :)
RECOMMENDED is removed. It becomes ABI_DEPENDS.

BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo.

BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo.

BUILDLINK_DEPENDS does not change.

IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS
which defaults to "yes".

Added to obsolete.mk checking for IGNORE_RECOMMENDED.

I did not manually go through and fix any aesthetic tab/spacing issues.

I have tested the above patch on DragonFly building and packaging
subversion and pkglint and their many dependencies.

I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I
have used IGNORE_RECOMMENDED for a long time). I have been an active user
of IGNORE_RECOMMENDED since it was available.

As suggested, I removed the documentation sentences suggesting bumping for
"security" issues.

As discussed on tech-pkg.

I will commit to revbump, pkglint, pkg_install, createbuildlink separately.

Note that if you use wip, it will fail!  I will commit to pkgsrc-wip
later (within day).
2006-04-06 06:21:32 +00:00
adrianp
32b124e146 Fix missing PLISt entry pointed out by bulk-builds. 2006-04-05 22:32:04 +00:00
jmmv
09d080facd Use gtkhtml38 instead of gtkhtml36. Bump PKGREVISION to 7. 2006-04-04 15:32:22 +00:00
jmmv
3839f4a1ab Depend on hicolor-icon-theme to:
1) Handle the shared share/icons/hicolor directory.
2) Properly regenerate the icon theme cache during (de)installation.
Bump PKGREVISION.
2006-04-02 09:49:00 +00:00
adrianp
8a9bfb872f +kronolith 2006-03-31 22:24:07 +00:00
adrianp
e55100898b Kronolith is the Horde calendar application. It provides a stable and
featureful individual calendar system for every Horde user, with
integrated collaboration/scheduling features. It makes extensive use of
the Horde Framework to provide integration with other applications.
2006-03-31 22:23:07 +00:00
jmmv
c34255301b Update to 2.5.90:
2006-02-13  Rodney Dawes  <dobey@novell.com>

	* configure.ac: Up version to 2.5.90 for release

2006-02-12  Rodney Dawes  <dobey@novell.com>

	* configure.ac:
	* src/*.[ch]: Update copyright years to include 2006

2006-02-12  Rodney Dawes  <dobey@novell.com>

	* src/evolution-webcal-notify.c (e_webcal_display_error): Set the
	maximum width for the error message to 80 characters for long URIs

2005-11-02  Simos Xenitellis  <simos@gnome.org>

	* configure.ac: Added ky (Kirghiz) to ALL_LINGUAS.
2006-03-30 21:36:36 +00:00
ghen
9564872b11 Make sunbird pass CHECK_FILES by skipping automatically generated files. 2006-03-29 07:47:14 +00:00
ghen
e150be54f6 Fix PLIST. 2006-03-28 14:10:13 +00:00
ghen
d70b58df38 Disable use of visibility attributes, requested by joerg. 2006-03-28 14:10:02 +00:00
yyamano
f613935930 Fix install problem on Darwin. 2006-03-21 16:31:25 +00:00
jlam
11993b86ed Bump PKGREVISION for all packages that had broken INSTALL/DEINSTALL
scripts prior to revision 1.43 of bsd.pkginstall.mk.
2006-03-21 06:00:43 +00:00
hira
24759ab517 Remove BROKEN_IN. The installation problem has been fixed. 2006-03-11 14:35:15 +00:00
kim
ddf6c54608 Use MAKE_FLAGS. 2006-03-11 11:12:34 +00:00
hiramatsu
aa2aaa1f74 Updated to 0.42.
0.42     2006-02-20
- This release is based on version 2006b of the Olson database.

0.41     2006-01-31
- This release is based on version 2006a of the Olson database.

0.40     2005-12-27
- This release is based on version 2005r of the Olson database.  This
includes the latest Canadian changes to match the recent US changes.
Also note that as of this version several zones which used to be
links, including "EST", "MST", and "CST6DST", are now separate zones.

0.39     2005-06-05
- This release is based on version 2005o of the Olson database.

0.3801   2005-11-24  the "not turkey day" release
- The last release included some generated modules for old zones (like
Europe/Belfast) which are now links to existing zones.  These modules
referenced the non-existent DateTime::TimeZone::Singleton module.
Reported by Rafael Garcia-Suarez.

0.38     2005-11-21
- Trying to create a DateTime object during DST exactly 11 years in
the future (really, 1 year after the end of the pre-generated TZ
change data that ships in the package) cause an error.  Reported by
Daniel B Boorstein.

- This release is based on version 2005n of the Olson database.

- Added a new method, has_dst_changes(), which indicates whether a
given zone has any DST changes.

0.37     2005-08-22
- Make sure that provided time zone names are valid, because
DateTime::TimeZone uses them in an eval.  If you were passing
user-provided data directly to DateTime::TimeZone->new, someone could
give a string like "America/Chicago; system 'rm -rf /';", which would
be bad.  Reported by Matthew Reilly.

- Made it possible to call catalog-related functions as methods.

- This release is based on version 2005i of the Olson database.  This
include some major changes coming up in the US as a whole in 2007,
along with other changes for just Indiana.

0.36     2005-04-21
- This release is based on version 2005i of the Olson database.

0.35     2005-03-15  the "I hate this dope" release
- This release is based on version 2005g of the Olson database.

- STORABLE_thaw() now returns $self in preparation for proposed
changes to Storable.

0.34     2005-03-11
- Some time zone short names were incorrectly being given as something
like "GMT/BST", when it should have been alternating between GMT and
BST based on the daylight saving time.  Reported by Tom Yandell.

- This release is based on version 2005f of the Olson database.

0.33     2005-02-26
- This release is based on version 2005e of the Olson database.

- When trying to determine the local time zone, if /etc/localtime is a
file, make sure that matching file in /usr/share/zoneinfo is not a
symlink.
2006-03-10 06:59:46 +00:00
wiz
35af66a196 Belatedly bump PKGREVISION for all libtasn1 dependencies, since
libtasn1 had a shlib major bump.
Also update dependencies in bl3.mk files.

Addresses PR 32998 by Robert Elz.
2006-03-06 00:18:10 +00:00
jlam
9c8b5ede43 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
2006-03-04 21:28:51 +00:00
schwarz
918ff2e4ee uses both C and C++ 2006-02-26 13:48:31 +00:00
martti
d48b5f2558 Fixed warnings found by pkglint -Wall. 2006-02-17 06:49:23 +00:00
abs
a8b0b37aba Update p5-Time-Hires to 1.87
1.87	[2006-02-13]
	- [rt.cpan.org #17442] 'make test' frequently fails under
	  Cygwin Perl v5.8.8, reported and patched by J. R. Hedden
	  (two race condition bugs in the END block in the case the
	   main process dies before the timer process, unearthed
	   by a bug in Cygwin ualarm)

1.86	[2005-12-17]
	- HiRes.t:s/ok 32/ok 33/, from Dominic Dunlop
	- tighten up the clock() test marginally by requiring non-negative
	- clock_nanosleep() and clock() doc tweaks

1.85	[2005-12-16]
	- the interface to clock_nanosleep() is more natural
	  when it is like (hires) time() (instead of like nanosleep),
	  and the .xs implementation of clock_nanosleep() in 1.84
	  was broken anyway
	- the semantics of clock() are not quite so silly as I thought,
	  but still somewhat odd, documented as such
	- additional enhancements to the clock() documentation
	- add test for clock_nanosleep() (I cannot test this
	  since none of my systems have the function)
	- add test for clock()

1.84	[2005-12-16]
	- add clock() which returns the processor time in
	  (floating point) seconds since an arbitrary era
	- add clock_nanosleep() which suspends the current
	  thread until either absolute time or for relative time
	- [rt.cpan.org #16486] printf missing value in HiRes.t
	- add constants CLOCKS_PER_SEC, CLOCK_SOFTTIME, TIMER_ABSTIME
	- tiny typo fixes

1.83	[2005-11-19]
	- has_symbol() was wrong since e.g. ITIMER_VIRTUAL is exported
	  via @EXPORT_OK even when it is not available.  This is heinous.
	  @EXPORT_OK should be determined at Makefile.PL time.
	- be more lenient is testing clock_gettime(): allow more slop,
	  and retry up to three times, sleeping a random nap between
	  the retries
	- human months are one-based (noticed by Anton Berezin)

1.82	[2005-10-06]
	- CLOCK_REALTIME is an enum value (of the clockid_t enum)
	  in HP-UX (and might be so elsewhere, too), debugged by
	  H. Merijn Brand
	- include const-c.inc as late as possible (from Randy Kobes,
	  [rt.cpan.org #15552] to avoid undefined usleep() on Win32

1.81	[2005-11-05]
	- try to be more robust and consistent in the detection of
          CLOCK_REALTIME and ITIMER_VIRTUAL in HiRes.t: the proper
	  way is

		sub has_symbol {
		    my $symbol = shift;
		    eval 'import Time::HiRes qw($symbol)';
		    return 0 unless $@ eq '';
		    return exists ${"Time::HiRes::$symbol"};
		}

	  and then use

		&FOO_BAR

	  in the test.  All these moves are needed because

	  1) one cannot directly do eval 'Time::HiRes::FOO_BAR'
	     because FOO_BAR might have a true value of zero
	     (or in the general case an empty string or even undef)

	  2) In case FOO_BAR is not available in this platform,
	     &FOO_BAR avoids the bareword warning

	- wait more (1.5 seconds instead of 0.1) for the CLOCK_REALTIME test
	  but expect the 'customary' slop of 0.20 instead of 0.25
	- fixed inside a comment HAS_POLL -> TIME_HIRES_NANOSLEEP
	- at the end of HiRest.t tell how close we were to termination

1.80	[2005-11-04]
	- Gisle noticed a mistake (using HAS_NANOSLEEP) in 1.79

1.79	[2005-11-03]
	- try nanosleep for emulating usleep -- may help in some weird
	  embedded realtime places which have nanosleep but neither usleep
	  nor select nor poll (doesn't have to be weird embedded realtime
	  place, though -- in many places usleep is nanosleep anyway)
	- try poll for emulating usleep -- this may help some obscure/old
	  SVR4 places that have neither usleep nor select
	- a redundant test guard in HiRes.t

1.78	[2005-11-03]
	- ITIMER_VIRTUAL detection in HiRes.t had problems (that we cannot
	  in the general case fail already at 'use' phase is suboptimal)
	- fixes to the documentation of clock_gettime() and clock_getres()

1.77	[2005-11-03]
	- add support for the POSIX clock_gettime() and clock_getres(),
	  if available, either as library calls or as syscalls
	- be more defensive about missing functionality: break out
	  early (during 'use') if no e.g. clock_getres() is available,
	  and protect our back by trapping those cases also in HiRes.xs
	- the test added in 1.76 could cause an endless loop e.g. in Solaris,
	  due to mixing of sleep() and alarm() (bad programmer, no cookie!)

1.76	[2005-10-22]
	- testing for nanosleep had wrong logic which caused nanosleep
	  to become undefined for e.g. Mac OS X
	- added a test for a core dump that was introduced by Perl 5.8.0
	  safe signals and was fixed for the time of 5.8.1 (one report of
	  the core dump was [perl #20920]), the test skipped pre-5.8.1.
	- *cough* s/unanosleep/nanosleep/g; *cough*

1.75	[2005-10-18]
	- installation patch from Gisle Aas: in Perls 5.8.x and later
	  use MakeMaker INSTALLDIRS value of 'perl' instead of 'site'.

1.74	[2005-09-19]
	- [cpan #14608] Solaris 8 perl 5.005_03 File::Spec module does not have method rel2abs
	  (the workaround is not to use rel2abs, should not be necessary)
	- [cpan #14642] U2time wrongly exported on the C API
	  (patch supplied by the reporter, SALVA@cpan.org)
	- add release dates to Changes

1.73	[2005-08-16]
	- Time::HiRes::nanosleep support for Solaris [PATCH]
	  (POSIX::uname() not available if building with core perl,
	   from Gisle Aas, via perl5-porters, perl change #25295)

1.72	[2005-07-01]
	- going back to the 1.68 loader setup (using DynaLoader)
	  since too many weird things starting breaking
	- fix a typo in José Auguste-Etienne's name

1.71	[2005-06-28]
	- a thinko in the nanosleep() detection
	- move more changes stuff from the README to Changes
	- add -w to the Makefile.PL

1.70	[2005-06-26]
	- oops in 1.69 about @ISA (not affecting anything but silly)
	- add copyright 2005 to HiRes.pm
	- add copyright and license to HiRes.xs
	- add copyrights 2003, 2004, 2005 to README

1.69	[2005-06-25]
	- actually run a test for nanosleep
	  (if there is no $Config{d_nanosleep}) since e.g. in AIX 4.2
	  it seems that one can link in nanosleep() but then calling
	  it fails instantly and sets errno to ENOSYS (Not implemented).
	  This may be fixable in the AIX case by figuring out the right
	  (realtime POSIX?) libs and whatnot, but in the general case
	  running a real test case is better.  (Of course, this change
	  will no doubt run into portability problems because of the
	  execution step...)  Note that because of hysterical raisins
	  most Perls do NOT have $Config{d_nanosleep} (scanning for
	  it by Configure would in many platforms require linking in
	  things like -lrt, which would in many platforms be a bad idea
	  for Perl itself).
	  (from José Auguste-Etienne)
	- support XSLoader also since it's much faster
	  (from Alexey Tourbin)
	- add SEE ALSO (BSD::Resource and Time::TAI64)

1.68	[2005-05-14]
	- somehow 1.67 had a lot of doubled lines (a major cut-and-paste
	  error suspected), but miraculously it still worked since the
	  doubling took place below the __END__ token
	- undef Pause() before defining it to avoid redefinition warnings
	  during compilation in case perl.h had already defined Pause()
	  (part of perl change #24271)
	- minor doc tweaks

1.67	[2005-05-04]
	- (internal) don't ignore the return value of gettimeofday()
	- (external) return undef or an empty if the C gettimeofday() fails
	  (affects Time::HiRes gettimeofday() and the hires time())
2006-02-15 22:53:59 +00:00
kleink
f0daa8b241 Add and enable p5-Time-TAI64. 2006-02-09 10:42:34 +00:00
kleink
9f58af98a4 Initial import of p5-Time-TAI 2.10 into the Packages Collection.
This Module makes available to the user functions to convert TAI64 strings
to unix timestamps suitable to make time calculations.
2006-02-09 10:41:48 +00:00
ghen
4a31528deb Remove a non-existant directory from PLIST. 2006-02-06 22:26:57 +00:00
ghen
180d61286f s/_MOZILLA_USE_GTK2/MOZILLA_USE_GTK2/g, as to silent pkglint (WARN: Variable
names starting with an underscore are reserved for internal pkgsrc use).
Ok with wiz.
2006-02-06 09:20:45 +00:00
ghen
7af6982b8b s/${MOZILLA}/sunbird/ in DISTNAME, because this would be wrong for sunbird-gtk1. 2006-02-06 00:56:57 +00:00
joerg
5911def816 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ghen
011301ac5b Add time/sunbird. 2006-02-05 21:58:23 +00:00
ghen
da14c0cfbf Import Mozilla Sunbird, a stand-alone Calendar application:
The Sunbird Project is a redesign of the Calendar component. The goal is to
produce a cross platform standalone calendar application based on Mozilla's
XUL user interface language. At the moment the Sunbird name is a project
name. It is not official and may change in the future.

The intended user is someone who uses Mozilla Firefox and Mozilla
Thunderbird and wants a calendar application based on Mozilla.

Ok with wiz.  I'll add a -gtk1 version later this week.
2006-02-05 21:56:20 +00:00
rillig
ad403a0481 Converted to the SUBST framework.
Fixed almost all pkglint warnings.
2006-02-05 00:13:19 +00:00
rillig
c98948ad01 Made extraction possible even if unzip(1) is not in the PATH. Instead of
hiding bugs by using unzip || true, test if the needed file has been
extracted.
2006-02-04 23:47:56 +00:00
rillig
16ab9ef19f The commands for extracting files should never be called like (unzip) ||
true. That just hides bugs. (Hi wiz.)
2006-02-04 23:39:50 +00:00
joerg
013887fb68 Has BROKEN_GETTEXT_DETECTION. Uses msgfmt. 2006-01-26 21:49:40 +00:00
wiz
768c589c29 Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 because
of the shlib major bump.
PKGREVISION++ for the dependencies.
2006-01-24 07:31:52 +00:00
joerg
a6fb877920 Add DragonFly support. 2006-01-22 04:24:52 +00:00
joerg
34ab033306 Slightly reorder headers to workaround a bug in regex.h on DragonFly. 2006-01-22 04:21:41 +00:00
jmmv
d971a332da Drop maintainership. I can't seriously be the maintainer of so many
packages - specially of packages that I haven't touched for a long
while or those that other people can handle better than me.
2006-01-20 16:15:52 +00:00
is
08ad9442e1 Make this compile on SunOS 5.x. 2006-01-13 11:16:57 +00:00
wiz
751d30d637 DEPENDS and PKGREVISION bumps because db4's library name changed. 2006-01-06 15:10:01 +00:00
hira
abf7d8ff98 Remove duplicate entry from dependency list. 2006-01-05 16:58:41 +00:00
hira
178ec4820f Fix installation error. Define AllTarget in Imakefile.
Tested on NetBSD/i386 3.0_STABLE.
2006-01-05 14:26:33 +00:00
ghen
455345bb5b Change the default for BUILDLINK_DEPMETHOD.qt3-tools from "full" to "build",
without affecting packages that are currently using it.

Packages which previously didn't set BUILDLINK_DEPMETHOD to neither "full" nor
"build" now set it to "full", but should be checked whether they really need it
(comment added).  Packages which previously set it to "build" now don't set it
anymore.

Ok by jlam, wiz.
2006-01-05 10:08:58 +00:00
schmonz
42428df5a0 Express these packages' brokenness with BROKEN_IN=pkgsrc-2005Q4
rather than PKG_FAIL_REASON, so that they provide useful error
messages in build logs, and so that they continue to work on platforms
where they aren't broken.
2006-01-04 04:29:05 +00:00
joerg
7fc1ff57ed Use flock on DragonFly. 2006-01-02 22:34:10 +00:00
joerg
dcc9c22fbc Fix errno. DragonFly support. 2006-01-02 22:29:03 +00:00
joerg
984796abce Fix errno, use getprogname on DragonFly. 2006-01-02 22:18:22 +00:00
wiz
f61c002199 Recursive PKGREVISION bump for gnutls shlib major bump.
Bump BUILDLINK_RECOMMENDED.
2005-12-31 12:32:31 +00:00
garbled
138d6c335f add gchore to category makefile 2005-12-29 21:12:36 +00:00
garbled
dc97d0d609 Import gchore-1.0.
Gchore is a simple tool that tracks your chores, and reminds you to do them
on a daily basis. It is not a general todo list, it is better suited for
repeating tasks, such as taking out the garbage on mondays.
2005-12-29 21:11:33 +00:00
jlam
dc9594e09d Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk
automatically detects whether we want the pkginstall machinery to be
used by the package Makefile.
2005-12-29 06:21:30 +00:00
seb
37d945e229 Lower expectations, both others' and mine: relinquish stewardship 2005-12-27 13:54:57 +00:00
schmonz
463f43526a Mark packages for pkgsrc-2005Q4 that don't build on NetBSD/i386
3.0. If one of these is important to you, please fix it in time
for pkgsrc-2006Q1, or it may be removed.
2005-12-26 23:39:30 +00:00
joerg
6e4a0dd799 Bump all motif packages for recent openmotif update. The major version
of the shared libXm has changed.
2005-12-12 21:36:54 +00:00
joerg
72c93ced04 Initialisation with stdout has to be done at runtime. 2005-12-07 15:49:46 +00:00
joerg
be3bec787b Add DragonFly support. 2005-12-06 13:21:02 +00:00
rillig
579e977969 Ran "pkglint --autofix", which corrected some of the quoting issues in
CONFIGURE_ARGS.
2005-12-05 23:55:01 +00:00
rillig
b71a1d488b 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
2005-12-05 20:49:47 +00:00
martti
2020bbfe3d Substitute "XFce 4" with "Xfce" in DESCR and Makefile's COMMENT.
It is a lower-case f according to the official site.
2005-11-09 07:09:04 +00:00
martti
09f3d1e3fd Updated xfce4 to 4.2.3.1
* Lots of bug fixes
* Translation updates

Official ChangeLog is available at:

http://www.xfce.org/release_notes/4.2.3.1_changelog.html
2005-11-09 06:42:58 +00:00
tv
aafa5bcf41 Explicitly pull in xpm rather than depending on the base X11 install
to supply it.
2005-11-08 02:37:55 +00:00
martti
40caf56463 Removed the buildlink3.mk
I got few private comments that one should not use buildlink3.mk but the
standard DEPENDS statement because we do not link against libraries
in this case.
2005-11-07 11:16:32 +00:00
martti
49311fd737 Added buildlink3.mk for this package. 2005-11-05 06:16:55 +00:00
rillig
b5eb448d00 Fixed wrong use of WRKSRC. 2005-11-03 23:01:54 +00:00
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
jmmv
c35cf7f5b9 Fix path in master site. 2004-10-24 16:43:56 +00:00
minskim
263eb03579 Add and enable p5-Time-Piece 2004-10-23 17:06:27 +00:00
minskim
16d688b663 Import p5-Time-Piece from pkgsrc-wip. Packaged by Hiramatsu Yoshifumi.
This module replaces the standard localtime and gmtime functions with
implementations that return objects.  It does so in a backwards
compatible manner, so that using localtime/gmtime in the way
documented in perlfunc will still return what you expect.
2004-10-23 17:04:37 +00:00
jmmv
fa1eaffa61 Update to 2.2.0nb1:
- Capitalize comment and s/gnome/GNOME/.
- Sort USE_* section alphabetically.
- Register gnotime.schemas into GConf2's database.
- Register documentation into scrollkeeper's database.
- Add explicit run dependencies on everything used by this package directly.
- Also add some missing build dependencies: intltool and pkgconfig.
- Drop dependency on guile-gtk: it's used nowhere.
- Add missing files to PLIST.
2004-10-23 13:54:46 +00:00
jdolecek
1d7c7e8787 add PTimeTracker 1.7.2 - QT-based utility to keep track of the time spent
on projects.
2004-10-23 07:13:37 +00:00
jdolecek
2b0ebedbc6 add PTimeTracker 1.7.2 - QT3-based utility to keep track of the time spent
on projects.
2004-10-23 07:10:26 +00:00
jdolecek
d2fa4da073 add gnotime 2.2.0 - time tracker for gnome2 2004-10-23 06:55:23 +00:00
jdolecek
cf3c5cc78d add gnotime 2.2.0 - time tracker for gnome2
package based on the FreeBSD port, subject to port2pkg and some additional
tweaking
2004-10-23 06:51:00 +00:00
jmmv
568b976467 Add and enable evolution-webcal. 2004-10-19 20:30:26 +00:00
jmmv
3f83c7878b Initial import of evolution-webcal, version 2.0.0:
A GNOME URL handler for web-published ical calendar files, which integrates
with the Evolution groupware suite.  It allows you to subscribe to a published
calendar simply by clicking on a 'webcal:' URL.
2004-10-19 20:29:17 +00:00
martti
7f436ae9a2 Updated xfce4-datetime-plugin to 0.3.1
* Bug fixes
2004-10-08 06:23:08 +00:00
tv
c487cb967a Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10
in the process.  (More information on tech-pkg.)

Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.

Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.
2004-10-03 00:12:51 +00:00
jlam
1a280185e1 Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.
All library names listed by *.la files no longer need to be listed
in the PLIST, e.g., instead of:

	lib/libfoo.a
	lib/libfoo.la
	lib/libfoo.so
	lib/libfoo.so.0
	lib/libfoo.so.0.1

one simply needs:

	lib/libfoo.la

and bsd.pkg.mk will automatically ensure that the additional library
names are listed in the installed package +CONTENTS file.

Also make LIBTOOLIZE_PLIST default to "yes".
2004-09-22 08:09:14 +00:00
salo
76cb9cfe56 - bl3ify.
- update MASTER_SITES
- add HOMEPAGE, even if it holds only a simple README and distfiles,
  better than nothing.

Addresses PR pkg/26914 by Georg Schwarz.
2004-09-14 07:10:15 +00:00
atatat
3f99292002 Patch a couple of prototypes so that they more properly match the
actual function declarations.  This makes finicky c compilers happier.

Problem pointed out by Georg Schwarz in private email.
2004-09-10 03:34:29 +00:00
wulf
4a58a84a0a Fixed problem reported in RP 26866 and updated ical to 2.3.1 2004-09-08 15:40:07 +00:00
jschauma
911b1013fa bbtools.thelinuxcommunity.org does not seem to exist any more,
substitute with bbtools.windsofstorm.net.
Pointed out by Georg Schwarz in private mail.
2004-09-05 23:47:46 +00:00
jschauma
b479540a2c Do the stricmp dance under IRIX as well.
Fix provided by Georg Schwarz in PR pkg/26851.
2004-09-05 20:37:27 +00:00
jlam
ca70938428 Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG,
which are the full option names used to set rpath directives for the
linker and the compiler, respectively.  In places were we are invoking
the linker, use "${LINKER_RPATH_FLAG} <path>", where the space is
inserted in case the flag is a word, e.g. -rpath.  The default values
of *_RPATH_FLAG are set by the compiler/*.mk files, depending on the
compiler that you use.  They may be overridden on a ${OPSYS}-specific
basis by setting _OPSYS_LINKER_RPATH_FLAG and _OPSYS_COMPILER_RPATH_FLAG,
respectively.  Garbage-collect _OPSYS_RPATH_NAME and _COMPILER_LD_FLAG.
2004-08-27 06:29:06 +00:00
ben
b116e873a6 Update homepage and master site. 2004-08-11 16:53:59 +00:00
jlam
30c3c136d0 Update time/p5-Time-HiRes to 1.59. Changes from version 1.56 include
changes to improve Win32 support.
2004-08-03 02:36:42 +00:00
recht
4150812b27 add python as category
ok'd a while back at pkgsrcCon by agc and wiz
2004-07-22 09:15:59 +00:00
salo
67c5db45ee USE_IMAKE implies USE_X11BASE, remove it. 2004-07-21 21:16:10 +00:00
jmmv
bbbf4e18b7 Add and enable xdkcal. 2004-07-13 10:59:48 +00:00
jmmv
d1512f1789 Initial import of xdkcal version 0.9d:
X Desktop Calendar (xdkcal) is a calendar for the X Window System: it simply
draws a calendar on your desktop.  You can customize its fontset, its color
and/or its drawing style.  This application is completely internationalized,
so that it reads the locale database and draws locale specific strings, such
as the name of months or weeks.

Package provided by Mike M. Volokhov in pkgsrc-wip.
2004-07-13 10:58:28 +00:00
jschauma
f1468f69f5 Make this compile on Linux and IRIX and increase odds of working on
other non-NetBSD platforms as well (though they may need ALL_TARGET
tweaking):
- apparently some versions of Linux/gcc combinations require
  the header file errno.h included in each file in order for
  it to link (otherwise, it will compile (!?) but bail out
  when linking)
- set ALL_TARGET to LOWER_OPSYS
  this works for netbsd and linux, and should work for the other bsds
  at least.
- set ALL_TARGET differently for IRIX
- use CFLAGS instead of hard-coded ABI flags for IRIX 6
- some install-sh/install can not handle multiple files/directories at
  once.  Newer bootstrapped versions can, but for systems that still
  have the older one we may as well split this for better compatibility.
2004-06-10 22:42:42 +00:00
minskim
cceb538d18 This package doesn't compile anything. Use DEPENDS instead of
buildlinking.  Also define NO_CONFIGURE and enable pkgviews
installation.
2004-06-03 17:44:15 +00:00
reed
bcfefa2996 Add new package: time/gnutime (from pkgsrc-wip). 2004-05-27 21:55:50 +00:00
reed
88736817ae Import of gnutime-1.7
Report user, system, and real time used by a process

From pkgsrc-wip's wip/time.
2004-05-27 21:52:45 +00:00
danw
6e8f676783 malloc.h fixes for darwin, plus a handful of other small fixes for
problems found after fixing malloc problems
2004-05-23 23:28:29 +00:00
danw
266b5f6a26 USE_BUILDLINK3 so that -Wl,-R/usr/X11R6/lib gets stripped/translated
properly on various OSes
2004-05-23 20:58:41 +00:00
seb
00cc0486ea Garbage collect BUILDLINK_PKGBASE.<pkg> from buildlink3: it is not anymore
used since revision 1.139 of mk/buildlink3/bsd.buildlink3.mk.
2004-05-17 21:32:33 +00:00
minskim
7ec42feab1 Change CATEGORIES to ``time.'' Pointed out by Kibum Han. 2004-05-16 15:48:10 +00:00
minskim
bd1741309c Update xfce4-datetime-plugin to 0.3.0. Based on the patch submitted
by Kibum Han in PR pkg/25571.

Changes:
    * datetime/datetime.c: automatically change layout when the panel size is
      small
    * datetime/datetime.c: append entry to select date. format change is
      applied on closing option window
    * internationalization
    * datetime/datetime.c: split main label into two, date label and time label
      add Week starts monday option for calendar (#1181)
      Thanks to Jeroen Peters (xfce-goodies@jpeters.coldmail.nl)
    * add autogen.sh
    * update libtool to 1.5.0a
    * datetime/datetime.c:
      change timeout interval with format string(aware of second field)
2004-05-15 05:01:37 +00:00
wiz
bc95b9bb5e Unused. 2004-05-08 08:53:54 +00:00
wiz
270e4a71d2 Reset maintainer to tech-pkg@ (from ad@, since he is not working on them
any longer).
2004-05-07 11:54:35 +00:00
sketch
e27323598c Fix my email address. 2004-04-29 14:18:58 +00:00
snj
3effa92ac3 Convert to buildlink3 and remove superfluous USE_X11BASE. 2004-04-25 04:52:18 +00:00
jlam
e8132b3fbf Relinquish maintainership of packages to tech-pkg@NetBSD.org. 2004-04-24 22:46:08 +00:00
reed
9c790735db mk/bsd.pkg.install.mk now automatically registers
the RCD_SCRIPTS rc.d script(s) to the PLIST.

This GENERATE_PLIST idea is part of Greg A. Woods'
PR #22954.

This helps when the RC_SCRIPTS are installed to
a different ${RCD_SCRIPTS_EXAMPLEDIR}. (Later,
the default RCD_SCRIPTS_EXAMPLEDIR will be changed
to be more clear that they are the examples.)

These patches also remove the etc/rc.d/ scripts from PLISTs
(of packages that use RCD_SCRIPTS). (This also removes
now unused references from openssh* makefiles. Note that
qmail package has not been changed yet.)

I have been doing automatic PLIST registration for RC_SCRIPTS
for over a year. Not all of these packages have been tested,
but many have been tested and used.

Somethings maybe to do:
- a few packages still manually install the rc.d scripts to
  hard-coded etc/rc.d. These need to be fixed.
- maybe  remove from mk/${OPSYS}.pkg.dist mtree specifications too.
2004-04-23 22:07:52 +00:00
minskim
1dfddfd72e Remove trailing space from the X resource file, so that it can be
parsed correctly.  Patch provided by Juha Hyttinen in PR pkg/23792.
2004-04-20 19:41:35 +00:00
jmmv
bedae6c90c Make use of the new USE_DIRS variable, instead of directly depending on the
*-dirs packages.
2004-04-14 16:15:20 +00:00
snj
d0ab6651d7 Convert to buildlink3. 2004-04-11 20:42:28 +00:00
snj
fd716e2bad Convert to buildlink3. 2004-04-11 20:40:15 +00:00
salo
e543b821e2 Remove brace from HOMEPAGE. (hi jmmv!) 2004-04-11 18:02:24 +00:00
snj
e1cf81b5a0 Convert to buildlink3. 2004-04-11 17:13:36 +00:00
snj
5ead05bc41 Convert to buildlink3. 2004-04-11 17:07:25 +00:00
snj
043b753096 Convert to buildlink3. 2004-04-11 16:58:18 +00:00
snj
36763a9710 Convert to buildlink3. 2004-04-11 16:54:27 +00:00
snj
e1873bc7ea Convert to buildlink3. 2004-04-11 16:53:13 +00:00
snj
0f4bb4248b Convert to buildlink3. 2004-04-11 16:43:08 +00:00