Commit graph

44 commits

Author SHA1 Message Date
agc
121030b7db Move to sha1 digest, and add distfile size. 2001-05-08 16:28:00 +00:00
jlam
71e78c7453 Add libexec/cgi-bin directory to standard /usr/pkg hierarchy. Remove all
the per-package code that attempt to remove this directory if it's empty.
2001-05-02 22:22:42 +00:00
zuntum
4a285fdbef o use ${MASTER_SITE_SOURCEFORGE}, not hardcoded ftp1.sourceforge.net
o add quoting to MAKE_ENV
o add patch-aa to install scripts to PREFIX/share/examples/devtodo
  instead of hardcoded SYSCONFDIR/profile.d
o install todorc into PREFIX/share/examples/devtodo instead of
  PREFIX/etc/todorc
o update to version 0.1.5:

* Added a binary database format. The default is still XML, but you can
  change this using the new --database-loaders option. You can transparently
  convert your existing XML databases to binary format (or vice-versa) by
  simply changing the load order. For example, to change from XML to binary,
  put this in your ~/.todorc: database-loaders binary,xml
  The next time you modify an XML format database, it will be saved in binary
  format. The man page has more information. I recommend only using the binary
  format if you are actually having performance problems, as if something
  goes awry, manually fixing the XML database is *much* easier. But if you do
  use it, it might be an idea to use it in conjunction with --backup.
* Added user-defineable formatting for both display output and TODO generated
  output. This is cool. Look for the section FORMATTING in the man page.
* Added a new filter, which I've wanted for ages. It constists of a single '-',
  '+' or '='. A '-' stops display of all items except those explicitly specified
  in the rest of the filter whereas a '+' overrides all other filters to display
  all items. A '=' is the default behaviour. This is brilliant if you want
  to narrow the view down to just one item: todo --filter -,29 (*Note*: Slightly
  superceded by the modification to the semantics of numeric filters, which now
  display *only* the numbers specified if the = (or no) prefix is used - see
  two points down for more information).
* Modified the numeric filters. Ranges can now be specified by doing this:
  todo --filter 1-20. If a '-' sign precedes the range it explicitly excludes
  all these items. This can also be used in most other places indices are used.
  ie. todo --done 10.1-20 would mark items 10.1 through 10.20 as done.
* Modified behaviour of numeric filters slightly. If prefix is '=' or none,
  *only* those items are displayed. Before, this was a nop.
* Patch to todorl.h courtesy of Philippe M. Chiasson that fixes compilation
  problems on RH 7.0.
* Priority defaults to medium if a blank line is entered at the "priority>"
  prompt (thanks to Alexei Gilchrist for this idea, along with quite a few
  others :))
* Removed --fallback-database - the semantics were too clunky and generally
  confusing.
* Added --global-database <filename> and -G,--global to replace
  --fallback-database. Basically, you specify a file with --global-database
  (defaults to ~/.todo_global) then whenever you pass -G or --global to todo it
  will use the global database. Much simpler than the way --fallback-database
  behaved. This idea was courtesy, once again, of Alexei Gilchrist. Good stuff!
* todo can now automatically backup the database to a user specified number
  of levels. Use the option --database [<n>] to do this, where <n> is the
  optional number of revisions to keep (defaults to 1). This option is best
  specified in your ~/.todorc.
* Numbers can once again be used to specify priorities when entering them from
  the 'priority>' prompt (requested by Alexei Gilchrist).
2001-04-22 11:44:46 +00:00
agc
a3ec0df4e1 Move to sha1 digests, and add distfile sizes. 2001-04-18 14:47:10 +00:00
agc
bbc67fac91 + move the distfile digest/checksum value from files/md5 to distinfo
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-04-17 11:53:33 +00:00
agc
2d6b6a009c + move the distfile digest/checksum value from files/md5 to distinfo
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-04-17 11:43:32 +00:00
zuntum
2b0a8fb04e Update xtimer to 0.8089
Changes are documentation cleanup and minor improvements (no Changelog available)
2001-04-16 21:13:49 +00:00
zuntum
057a011d70 Update devtodo to 0.1.4:
* Added version checking so that the binary won't accept databases from
  future versions. The actual behaviour is that minor revision differences
  produce a warning while major revision differences cause an error.
* Added a patch from Arthur Korn that allows the bash scripts to cd into
  directories with spaces.
* Fixed a few man page problems, again courtesy of Arthur (I swear this
  guy doesn't sleep!)
* Changed primary binary to 'devtodo', with a convenience symlink, 'todo'.
  Also changed the man page filename to reflect this. The user should see
  no actual difference though, as symlinks with the old names exist.
* Fixed a bug where todo would segfault if ^D was pressed while editing a
  line. Thanks to Matt Kraai for picking this up. The problem was due to
  not handling a NULL return value from readline.
* More man page fixes (this time, thanks again go to Matt).
* You can now specify more than one item index on the command line as
  seperate arguments. Previously, a comma was required and if multiple
  arguments were used the last one was used. Arthur picked this one up.
* Added parsing of /etc/todorc (actually, the location is specified by the
  --sysconfdir argument to configure, so it will probably be
  /usr/local/etc/todorc on most peoples systems).
* Added awareness of the TODORC environment variable. This specifies the
  RC file to parse on startup. TODORC=$HOME/.todorc is the default
  behaviour. This idea was thanks to Claude. Claude also suggests, quite
  rightly, that it would be useful for specifying a system-wide todorc
  file by putting TODORC=/etc/todorc in /etc/profile or somewhere similar.
* Added two new arguments for modifying the database used. The first is
  --database <file> which is used to change the default filename used. eg.
  --database .todo is the default behaviour. The other is
  --fallback-database <file> which specifies the database to use if no other
  can be found. By default there is no fallback database. Both of these
  options can be specified in the .todorc.
* Environment variables can now be used in the ~/.todorc. This is especially
  useful for something like 'fallback-database $HOME/.todo'.
* Finally fixed the bug where &gt; and &amp; were not being correctly
  interpreted.
* Fixed a long-time bug where wraptext() was wrapping the first
  line prematurely.
* Fixed a bug where if the sort order changed, visible indices would not match
  parameter indices.
* --verbose now displays time between when an item was created and when it was
  completed.
* Added --date-format for formatting the display of dates (currently only used
  with --verbose). The format is that used by strftime(3) but if strftime is not
  available on a system, ctime(3) is used.
* Added fully-featured sorting via the --sort parameter. It is now possible to
  sort on pretty much anything you can think of; creation time, completed time,
  duration of item, text body, priority and whether an item is done or not.
* Added --paranoid option that enables some warnings about permissions. This
  is in response to a user request to not make the .todo file group/world
  accessible. This option will make devtodo warn the user if such a database
  is created.
* Removed --sync and --no-sync. You can generate the TODO file with --TODO.
2001-04-16 08:00:43 +00:00
dmcmahill
c18710a2cc correct path to gtk depends 2001-04-14 20:35:09 +00:00
kei
340cd43ec0 As per discussion with mjl, moved this package from x11 category to time. 2001-04-09 06:46:12 +00:00
zuntum
4ed4754c22 MKDIR -> INSTALL_DATA_DIR 2001-04-02 20:07:03 +00:00
wiz
d480fe70ce Move BUILD_USES_MSGFMT in DEPENDS block, mostly by removing empty
lines.
2001-04-02 20:06:11 +00:00
wennmach
4613543492 RCS Id police 2001-03-29 14:50:33 +00:00
abs
7f665e0032 Requires readline 2001-03-28 11:02:43 +00:00
drochner
178058c73c define GL_GLEXT_PROTOTYPES to get prototypes out of <GL/glext.h> 2001-03-28 10:33:37 +00:00
hubertf
e32afb6fea Change BUILD_DEPENDS semantics:
first component is now a package name+version/pattern, no more
executable/patchname/whatnot.

While there, introduce BUILD_USES_MSGFMT as shorthand to pull in
devel/gettext unless /usr/bin/msgfmt exists (i.e. on post-1.5 -current).

Patch by Alistair Crooks <agc@netbsd.org>
2001-03-27 03:19:43 +00:00
wiz
f0a8916192 Remove .todo. Doesn't seem to be used. 2001-03-21 09:40:40 +00:00
mjl
3197a85386 Enable devtodo. 2001-03-20 21:48:33 +00:00
mjl
ac5a1cfccf Import of todo 0.1.3, a to-do list manager on tty basis. 2001-03-20 21:45:55 +00:00
hubertf
d32e698de6 Cleanup MKDIR usage => INSTALL_*_DIR
XXX need to teach pkglint to be more picky about this
2001-02-25 04:17:35 +00:00
wiz
5de11cd51a Remove duplicate BUILD_DEPENDS for unzip (bsd.pkg.mk has an automatic one
if EXTRACT_SUFX is .zip); also remove EXTRACT_CMDs that are the same as
the implicit one.
2001-02-20 11:40:07 +00:00
wiz
ad02d69ab2 Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT. 2001-02-17 17:31:58 +00:00
wiz
79a4bfc219 Not needed any more -- COMMENTs are in Makefiles now. 2001-02-16 15:52:49 +00:00
wiz
02e8ee6a47 Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.
While I'm here, unify category Makefiles to more standard style.
(If you have tools depending on the previous form, please fix them.)
2001-02-16 15:51:46 +00:00
wiz
d4fce8d4e7 Unify format of MESSAGEs, and include RCS Ids. 2001-02-06 14:24:03 +00:00
wiz
b979f7222a Add automatic ${VARIABLE} handling for MESSAGE files.
Convert most MESSAGE files to new syntax (${VARIABLE} gets replaced,
not @VARIABLE@, nor @@VARIABLE@@).
By default, substitutions are done for LOCALBASE, PKGNAME, PREFIX,
X11BASE, X11PREFIX; additional patterns can be added via MESSAGE_SUBST.
Clean up some packages while I'm there; add RCS tags to most MESSAGEs.
Remove some uninteresting MESSAGEs.
2001-01-29 11:34:21 +00:00
dmcmahill
a31296408a make sure rpath isn't lost. fixes recently noted rpath problems 2001-01-23 17:29:10 +00:00
wiz
d7b7131831 Fix build problem on alpha. Patch provided by SUNAGAWA Keiki. 2001-01-23 14:51:22 +00:00
wiz
5616145efa Update to not DEPEND on gettext any longer, but BUILD_DEPEND on msgfmt
and USE_LIBINTL.
2001-01-05 01:40:38 +00:00
jlam
b646d1dad6 Make this pass pkglint, create ${PREFIX}/libexec/cgi-bin if it doesn't
already exist, and remove any empty directories after uninstalling.
2000-12-22 19:00:17 +00:00
jlam
655c3c8885 Apparently, the checksum of the distfile on the site changed without
bumping the version number.
2000-12-22 18:31:35 +00:00
jlam
c0de161e45 s/make/${MAKE_PROGRAM}/g 2000-12-22 18:30:59 +00:00
wiz
ae5f77900a Move x11/korganizer and x11/kworldwatch to category time. 2000-12-21 15:06:06 +00:00
wiz
ce2eeec55f Move x11/korganizer and x11/kworldwatch to category time. 2000-12-21 15:03:46 +00:00
kei
736b91b757 add and enable "pcal" package. 2000-12-21 06:22:31 +00:00
kei
ed47bb8183 initial import of "pcal" package.
"Pcal" Version 4.7

This is a new release of "Pcal", the PostScript calendar program.  The major
new features are the "-H" flag for generating output in HTML table form,
expansion of "%y" in the "include" filename into the last two digits of
every applicable year in "year all" mode, and the addition of build-time
support for A4 size paper.
2000-12-21 06:20:53 +00:00
kei
ed8f71ab8a add and enable "gnyaclock" package. 2000-12-18 12:37:04 +00:00
kei
0775acdeea import of new "gnyaclock" package.
gnyaclock is an accessory with Bezier curve.  Its curve has something to do
with the present time.
2000-12-18 12:35:48 +00:00
wiz
8cfd3e9795 Update to 3.0.22. Changes:
- Added option to have TkRemind display all of today's reminders in a text
  box on startup.  This option is on by default.
- Makefile in "www" directory allows you to add ".cgi" suffix to CGI scripts.
- Added option to completely delete a reminder from the reminder file in
  the timed reminder popup dialog.
- Clarified build instructions.
- Fixed packing order in TkRemind so resizing window doesn't make control
  buttons disappear.
- Fixed serious bug in which background queued reminders were ignored and
  Remind simply exited.  Doh!  Sorry about that.
2000-12-18 00:41:50 +00:00
wiz
6b687df9ff Update to glclock-6.0b6.0. Changelog is in Japanese. 2000-12-18 00:34:01 +00:00
wiz
d69de4b49e Update to 2.2.1. Changelog not available. New maintainer. 2000-12-18 00:21:55 +00:00
wiz
54fcb197a2 Fix HOMEPAGE and MASTER_SITES. 2000-12-18 00:16:03 +00:00
wiz
9c3f8cfa78 RCS Ids in patches is not a good idea. 2000-12-18 00:03:37 +00:00
wiz
df7948804e New category: time. Move many packages here:
misc/cal, misc/cardboard-schedule, misc/ical, misc/plan, misc/py-mxDateTime,
misc/remind, sysutils/logtime, and 19 more from x11.
2000-12-17 23:32:09 +00:00