summaryrefslogtreecommitdiff
path: root/time
AgeCommit message (Collapse)AuthorFilesLines
2005-11-09Updated xfce4 to 4.2.3.1martti3-7/+12
* 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-08Explicitly pull in xpm rather than depending on the base X11 installtv1-2/+2
to supply it.
2005-11-07Removed the buildlink3.mkmartti1-18/+0
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-05Added buildlink3.mk for this package.martti1-0/+18
2005-11-03Fixed wrong use of WRKSRC.rillig4-11/+13
2005-10-23Added RCS Id to patch-ab.rillig2-2/+4
2005-10-22Accept python-2.4 too, from Geert Hendrickx in PR 31887.wiz1-2/+2
2005-10-16Update to 2.4.1: unknown changes.jmmv3-8/+12
2005-09-28Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE,rillig3-7/+7
NO_BUILD, USE_LIBTOOL.
2005-09-22Do not install gtodo_tray.png, which is installed by time/gtodo.minskim4-6/+18
2005-09-22Do not install locale.alias since we never use the included gettext.minskim2-1/+15
2005-08-30Make sure this doesn't install the .orig info file created by diff too.reed2-16/+14
2005-08-10Remove the abuse of buildlink that was pkg-config/buildlink3.mk. Thatjlam4-11/+8
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-10Remove a redundant directory.kristerw1-2/+1
2005-08-06Bump the PKGREVISIONs of all (638) packages that hardcode the locationsjlam12-15/+24
of Perl files to deal with the perl-5.8.7 update that moved all pkgsrc-installed Perl files into the "vendor" directories.
2005-07-21Change path from devel/pkgconfig to devel/pkg-config.wiz4-8/+8
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
2005-07-21Added saytime to SUBDIRS.rillig1-1/+2
2005-07-16Remove some unnecessarily strong dependencies on perl that resultedjlam1-2/+2
from including perl5/buildlink3.mk. These packages just need the Perl interpreter, and can just add "perl" to USE_TOOLS instead.
2005-07-15Drop distinction between PKGSRC_USE_TOOLS and USE_TOOLS by makingjlam1-2/+2
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-14Reset maintainer to tech-pkg, since email bounced.wiz1-2/+2
2005-07-13Turn PERL5_PACKLIST into a relative path instead of an absolute path.jlam12-24/+24
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-08Make this compile on non-NetBSD systems by setting HOST_CC=CC instead ofkristerw1-3/+2
relying on bsd.sys.mk.
2005-07-07clean up some lintagc2-12/+10
2005-07-07forgot descriptionis1-0/+1
2005-07-07A talking clock, by Jef Poskanzer.is6-0/+126
2005-06-26Use gtkhtml36 rather than gtkhtml3. Bump PKGREVISION.jmmv3-4/+58
Idea from wiz@ to let us remove gtkhtml3.
2005-06-23Add and enable wmclockmon.minskim1-1/+2
2005-06-23Import wmclockmon from pkgsrc-wip. Packaged by Amadeus Stevenson.minskim6-0/+135
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-17Create directories before installing files into them.jlam11-13/+34
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam12-23/+21
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-01Update to 0.1.18. Changes:snj4-30/+14
* 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-05-25+p5-DateTime-Format-Epochbouyer1-1/+2
2005-05-25Initial import of p5-DateTime-Format-Epoch.bouyer4-0/+25
The DateTime::Fromat::Epoch modules provide to/from epoch seconds for the DateTime.pm class.
2005-05-25Add RMD160 checksum.wiz1-1/+2
2005-05-23Removed trailing white-space.rillig3-3/+3
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam7-14/+14
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-05-19Update to 2.2.1: Added mk, rw and xh translations.jmmv3-7/+10
2005-05-18Updated xfce4 to 4.2.2martti3-7/+10
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-16Note that gtar is required by the package.jlam1-1/+3
2005-05-09Make pkglint happy by removing trailing white space.kristerw1-2/+2
2005-05-09Make this package build after bl3 was enabled by default (bykristerw1-1/+2
setting WRKSRC=${WRKDIR})
2005-05-06Add and enable p5-Schedule-Cron-Events.epg1-1/+2
2005-05-06Import p5-Schedule-Cron-Events-1.8.epg4-0/+26
Schedule::Cron::Events takes a crontab-style line and finds out when events will occur.
2005-05-03Correct PLIST.kristerw2-2/+5
Bump PKGREVISION.
2005-05-02RCD_SCRIPTS_EXAMPLEDIR is no longer customizable.reed1-1/+2
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-04-29Include mk/pthread.buildlink3.mk.kristerw1-1/+2
2005-04-28Use :sh instead of != to define WWWSERVER to defer evaluation until it'sjlam1-2/+2
used in the make targets.
2005-04-26update to 0_57_1drochner2-9/+8
This is a compatibility fix for PyGTK 2.2.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv42-84/+42
2005-04-05Add missing curses dependency, noted by reed.wiz1-1/+2