Commit graph

65527 commits

Author SHA1 Message Date
schmonz
ea4fc3dade Include pthread.buildlink3.mk. Note that this package uses the C++
compiler. Minor pkgsrc style nits.
2004-08-16 23:32:04 +00:00
schmonz
f921e1b5d2 Include pthread.buildlink3.mk. Should fix the problem seen in
Krister's 1.6.2 bulk build.
2004-08-16 23:21:56 +00:00
dillo
f9ac8c53eb note stella update to 1.4.1 2004-08-16 22:26:14 +00:00
dillo
240d796d12 update to 1.4.1 and fix one bug:
* system properties file was never used.

Changes in 1.4.1:
  * Fixed PAL sound issues.
  * Cleaned up the SDL event gathering loop.
  * Control/Alt can now be used for any event.
  * Updated stella.pro file to work with the latest Good2600 ROMset release
    (Thanks go to Voch for helping to maintain the stella.pro file).
2004-08-16 22:23:58 +00:00
dsainty
f58f8f573f Note PKGREVISION bump for emulators/palmosemulator 2004-08-16 21:20:37 +00:00
minskim
b0bdd57738 Add and enable wipe. 2004-08-16 20:17:35 +00:00
minskim
363f3ec7e1 Import wipe from pkgsrc-wip. Packaged by pancake and modified by me.
Wipe is a secure file wiping utility.

There are some low level issues that must be taken into consideration.
One of these is that there must be some sort of write barrier between
passes.  Wipe uses fdatasync(2) (or fsync(2)) as a write barrier, or
if fsync(2) isn't available, the file is opened with the O_DSYNC or
O_SYNC flag.  For wipe to be effective, each pass must be completely
written.  To ensure this, the drive must support some form of a write
barrier, write cache flush, or write cache disabling.  SCSI supports
ordered command tags, has a force media access bit for commands, and
write cache can be disable on mode page 8.  IDE/ATA drives support
write cache flushes and write cache disabling.

Unfortunately, not all drives actually disable write cache when asked
to.  Those drives are broken.  Write caching should always be
disabled, unless your system is battery backed and always powers down
cleanly.
2004-08-16 20:15:54 +00:00
minskim
16f4fd88d7 Add and enable weewm. 2004-08-16 19:38:04 +00:00
minskim
7fd8b1c7ba Import weewm from pkgsrc-wip. Packaged by xtraeme@ and updated by me.
WeeWM (Wee Enhanced Environment) is a fast and light window manager
for XFree86.  Everything can be done with a keyboard.  It is
customizable, and has dock management, smart window placement, virtual
desktops, and more.
2004-08-16 19:36:32 +00:00
jlam
80739d5835 Update pkgtools/libnbcompat to 20040814. Changes from version 20040813
include:

    * Adding a regex(3) implementation for those platforms that don't
      have one, e.g. IRIX 5.3.

    * Allow nbcompat.h to be included multiple times in case it's needed
      to override values of set by config.h in bootstrap packages.  This
      should fix problems with building pkg_install and pax on platforms
      that have /usr/include/glob.h.

    * Remove namespace.h, which should be a no-op since we're building
      a userland library separate from the NetBSD sources.

    * Remove HAVE_CONFIG_H checks from sources since we're always going
      to have and and we're always going to be including it.

    * Rename all inclusion guards in nbcompat/*.h to be _NBCOMPAT_*_H_ so
      that it won't get triggered by any settings in system headers.

This has been tested on:

	FreeBSD-4.8/i386	Debian Linux 3.0 (woody)
	IRIX 6.5		MacOS X 10.2.8
	MacOS X 10.3.5		NetBSD-1.6.2/i386
	NetBSD-2.0_BETA/i386	Red Hat Linux 7.3
	Solaris 7/sparc		Solaris 8/sparc
	Solaris 9/sparc
2004-08-16 17:24:42 +00:00
minskim
e3a3064024 Add and enable py-funge. 2004-08-16 17:13:54 +00:00
minskim
134277baf7 Initial import of py-funge. Packaged by Yi Min-Cheol.
PyFunge is a Funge-98 interpreter written in Python. It includes almost
all of features found in the Funge-98 specification and also provides
some other features like fingerprints. PyFunge is written in object-
oriented fashion and designed to be extensible from ground up.
2004-08-16 17:11:00 +00:00
recht
264094b870 Note update to zsh to 4.2.1. 2004-08-16 16:20:49 +00:00
seb
448e8b94b9 -source-highlight 2004-08-16 16:20:26 +00:00
recht
3c61724371 update to zsh-4.2.1
Changes since zsh version 4.2.0
-------------------------------

- The autoload and related builtins take options -k and -z to indicate
  ksh or zsh autoloading style for given functions, making it possible
  to mix and match.

- Assignments to associative arrays can use the i and r index flags.
  For example,
    assoc[(i)alpha*]=bravo
  sets the value for the element whose key matches the pattern `alpha*';
    assoc[(r)activ*]=passive
  sets the value for the element whose current value matches the pattern
  `activ*'.

- The glob qualifier F indicates a non-empty directory.  Hence *(F)
  indicates all subdirectories with entries, *(/^F) means all
  subdirectories with no entries.

- fc -p and fc -P provide push/pop for the status of the shell's
  history (both internal and using the history file).  With automatic
  scoping (fc -ap) it becomes easy to use a temporary history in a
  function.  This has been added to the calculator function zcalc to make
  its internal history work more seamlessly.

- A new `try block' and `always block' syntax has been introduced
  to make it easier to ensure the shell runs important tidy-up code
  in the event of an error.  It also runs after a break, continue, or
  return, including a return forced by the ERR_RETURN option
  (but not an exit, which is immediate).  The syntax is:
    `{'  try-block-list `}' `always' `{' always-block-list `}'
  where no newline or semicolon may appear between `}' and `always'.
  This is compatible with all previous valid zsh syntax as an `always'
  at that point used to be a syntax error.  For example,
    { echo Code run in current shell } always { echo Tidy-up code }

- A new zle widget reset-prompt has been added to re-expand the current
  prompt.  Changes to the variable in use as well as changes in its
  expanions are both taken into account.  The same effect is now forced by
  a job change notification, making the %j prompt escape and %(j..) ternary
  expression more useful.

- The zftp module supports ports following the hostname in the normal suffix
  notation, `host:port'.  This requires IPv6 colon-style addresses to be
  specified in suitably quoted square brackets, for example:

  zftp open '[f000::baaa]'
  zftp open '[f000::baaa]:ftp'

  (the two are equivalent).

- Special traps, those that don't correspond to signals, i.e. ZERR, DEBUG
  and EXIT are no longer executed inside other traps.  This caused
  unnecessary confusion if, for example, both DEBUG and EXIT traps
  were set.  The new behaviour is more compatible with other shells.

- New option TRAPS_ASYNC which if set allows traps to run while the
  shell is waiting for a child process.  This is the traditional zsh
  behaviour; POSIX requires the option to be unset.  In sh/ksh
  compatibility mode the option is turned off by default and the option
  letter -T turns it on, for compatibility with FreeBSD sh.
2004-08-16 16:17:39 +00:00
wiz
e82ff0a745 Note glabels-2.0.1. 2004-08-16 16:00:58 +00:00
wiz
0ae893cd48 Add and enable glabels. 2004-08-16 16:00:36 +00:00
wiz
b9d9b71132 Initial import of glabels-2.0.1:
gLabels is a program for creating labels and business cards for
the GNOME desktop environment. It is designed to work with various
laser/ink-jet peel-off label and business card sheets that you'll
find at most office supply stores.
2004-08-16 15:59:59 +00:00
cjep
88ce836f52 note update of nail to 11.2 2004-08-16 15:35:09 +00:00
cjep
db2af5f0bb Update of mail/nail to 11.2
Changes since 11.1 include:
* A message thread-oriented mode is now optionally available; cf. the 'thread'
  and 'unthread' commands, the 'autothread' variable, and addressing changes.
* It is also possible to sort messages by various other criteria; cf. the
  'sort' and 'unsort' commands, the 'autosort' variable, and addressing
  changes.
* New 'fullnames' variable: When replying to a message, full names for the
  recipients are included if it is set, instead of using the plain email
  address.
* New commands 'disconnect' and 'connect'/'online' to switch to disconnected
  IMAP mode and back while retaining the current mailbox.
* IMAP GSSAPI authentication was implemented; it has been successfully
  compiled with MIT, Solaris, and HP-UX GSS libraries. See the 'imap-auth'
  and 'imap-auth-user@host' variables.
* CRAM-MD5 authentication was implemented for IMAP and SMTP. See the
  'imap-auth' and 'smtp-auth' variables.
* POP3 APOP authentication is now supported; see 'pop3-use-apop'.
* STARTTLS is now also supported for IMAP and POP3; see 'imap-use-starttls'
  and 'pop3-use-starttls'.
* Autodetection of the terminal character set works again (did not work since
  10.8).
* The 'showlast' variable works again; it had no effect since version 11.0.
* Made it compile using the HP-UX C compiler again (did not work since 11.0).
* Standard input is now redirected to /dev/null in the child process that
  contacts the MTA. A result is that ssl-verify=ask has the same effect as
  ssl-verify=strict for SMTP servers, and does not put the terminal in an
  indeterminable state anymore.
* The initial connection to IMAP or POP3 servers is now made before the
  previous mailbox (if any) is quit. Thus if a server is unreachable, nail
  keeps the previous mailbox open instead of getting in a mailbox-less
  state.
* Stale cache entries for messages deleted on the server were not removed
  in some circumstances.
* The 'inc'/'newmail' commands are now ignored in disconnected mode and no
  longer display errors about hidden (uncached) messages.
* The cache now compiles and works on systems that lack fchdir(), such as
  some Cray machines (Thanks to Cray-Cyber.org).
* The defaults for /etc/nail.rc have been updated. This will have no effect
  on existing installations unless the file is copied by hand.
* Nail does not hang anymore in disconnected mode if a message addressed
  with ^ or $ is not cached.
2004-08-16 15:34:25 +00:00
seb
3183dd4aad Note update of textproc/source-highlight to version 1.10 [bug fixes and
support for "log files"]
2004-08-16 15:29:20 +00:00
seb
80c952e3a8 Update to version 1.10.
Changes since last packaged version:

Version 1.10
   * Added scanner for log files (also for iptables and apache logs)
     thanks to Jan Tatarik
   * Fixed some bugs in the perl scanner (thanks to Geir Nilsen)
   * configure checks for ios_base
   * check for the right ar to use, fixes problems under Sun compilers
     (thanks to Paul Townsend)
2004-08-16 15:21:45 +00:00
reinoud
4181dd0fd9 The comepage is currently not accessible for downloads; it could be squatted.
Moved the other download site up as first choice
2004-08-16 14:10:33 +00:00
dsainty
da83669a05 Document emulators/palmosemulator/patches/patch-an, a i386 g++ 3.3.x -O2 bug 2004-08-16 13:10:24 +00:00
dsainty
cde849803a Bumped PKGREVISION to 4, fix for building POSE under gcc 3.3.3 with
optimisation as default (g++ -O2).
2004-08-16 12:54:14 +00:00
dsainty
a5b31a5bdc Building POSE under gcc 3.3.3 with optimisation as default (g++ -O2) leads to
a malfunction where POSE will go into an apparent infinite loop after the
first pen operation.  This patch codes around the problem.
2004-08-16 12:51:13 +00:00
dsainty
6d650c60d5 Building POSE under gcc 3.3.3 with optimisation as default (g++ -O2) leads to
a malfunction where POSE will go into an apparent infinite loop after the
first pen operation.  This patch codes around the problem.
2004-08-16 12:36:38 +00:00
kristerw
abb73c1311 Use PKG_SKIP_REASON so that bulk builds reports the packages as
"unavailable" instead of "broken".
2004-08-16 12:27:23 +00:00
wiz
42ee5e8c4b + amavisd-new-20040815, leafnode-1.10.4, libpng-1.2.6, metacity-2.8.3
[pkg/26683], nail-11.2, sox-12.17.5, stella-1.4.1.
2004-08-16 12:09:15 +00:00
salo
af64c4c1ad PKGREVISION++
- obey CFLAGS, use $(CC) instead of cc in Makefile
- install data files in PREFIX/libdata/brs instead of PREFIX/lib,
  rewrite whole "install" target
- correct paths in the manpage
- fix a warning (could be error with some compilers?) in #endif
2004-08-16 11:54:20 +00:00
kristerw
c70ab1c4b4 Use PKG_SKIP_REASON when the ORACLE_HOME is undefined, so that bulk
builds do not report this as a broken package.
2004-08-16 11:41:18 +00:00
kristerw
3c730b23db Note PKGREVISION bump for chat/licq-gui-qt. 2004-08-16 11:31:18 +00:00
kristerw
5d7d6804d7 The .a file is not very useful as a plugin... so remove it from
the package (by using SHLIBTOOL_OVERRIDE).  Bump PKGREVISION.

Problem noted by wiz.
2004-08-16 11:29:03 +00:00
recht
16612fcc17 note postgresql74-lib-7.4.3nb1 2004-08-16 10:30:58 +00:00
recht
157c36d901 Bump PKGREVISION to 1 for the previous thread-safety change.
noted by wiz
2004-08-16 10:27:28 +00:00
recht
e0c761d675 Do not build with --enable-thread-safety on NetBSD. Currently, it
causes more harm than good.
2004-08-16 09:05:08 +00:00
minskim
2bb479933a Update xchat to 2.4.0.
Changes since 2.0.10:
 - Updated translations (ca, de, eu, it, ko, lt, nl, sk, sr, zh_CN).
 - Fixed a possible crash in loading pevents.conf.
 - Made default URL handlers work with Firefox 0.9.x by adding the
   "-a firefox" argument.
 - Plugin API: Added xchat_get_info field "libdirfs".
 - Fixed crash when trying to dcc send a filename which has encoding
   that doesn't match G_FILENAME_ENCODING.
 - Updated translations (de, kr, lt, sk, sr, zh_CN).
 - Added some rudimentary support for the IDENTIFY-MSG feature.
 - Perl: Added Xchat::context_info (Lian Situ).
 - TCL: Added support for time fields in getlist (Daniel P.Stasinski).
 - Added "Open Dialog" event, so you can add a sound-file to it.
 - The standard beep can now be overridden with a sound-file.
 - Fixed tab-nick-completion's cycling behaviour.
 - New keyboard shortcut for line up and down (shift-arrow up/down).
 - Fixed: [986958] tab completion with GTK Input-Methods.
 - Updated translations (eu).
 - Tab nick completion fixes: Crash with space-tab and glib critical
   warning (Ian Kumlien).
 - Heavily reworked the Preferences window. It should be alot clearer
   now, and more gnome-like.
 - 'Pop new tabs to front' setting now has three options (Kyoshiro).
 - New colors and text-events, using a white background.
 - Config files are not saved to disk unless you edit the defaults.
   This makes it easier to change language (for print events, popup
   menu etc).
 - Brand new Server List window. Now much simpler and intuitive. Also
   includes an entry box for NickServ password.
 - The vertical separator line now has its own pointer when you hover
   over it (Richard Gobeille).
 - Alphabetical tab sorting now works and is enabled by default.
 - Added "Small Tabs" option (reduces the font size).
 - Brand new Sound-Events editor in the Preferences window.
 - Added socks5 authentication support (Benjamin Foster).
 - Win32: fixed auto-loading of TCL scripts.
2004-08-16 06:53:08 +00:00
minskim
1dd10c2ebe Remove un-ttf, which is superseded by un-core-ttf and un-extra-ttf. 2004-08-16 06:24:31 +00:00
minskim
7670d3e19d Add and enable un-core-ttf and un-extra-ttf. 2004-08-16 06:21:55 +00:00
minskim
a012bad118 Initial import of un-extra-ttf-1.0. Packaged by Kibum Han.
Un fonts are GPL'd Korean fonts.  They were originally available as
PostScript fonts for HLaTeX, and later converted into TrueType fonts.
This package contains the following 10 extra fonts.

 * UnPen, UnPenheulim: script
 * UnTaza: typewriter style
 * UnBom: decorative
 * UnShinmun
 * UnYetgul: old Korean printing style
 * UnJamoSora, UnJamoNovel, UnJamoDotum, UnJamoBatang
2004-08-16 06:19:37 +00:00
minskim
ac69c16765 Initial import of un-core-ttf-1.0. Packaged by Kibum Han.
Un fonts are GPL'd Korean fonts.  They were originally available as
PostScript fonts for HLaTeX, and later converted into TrueType fonts.
This package contains the following 9 core fonts.

 * UnBatang, UnBatangBold: serif
 * UnDotum, UnDotumBold: sans-serif
 * UnGraphic, UnGraphicBold: sans-serif style
 * UnPilgi, UnPilgiBold: script
 * UnGungseo: cursive, brush-stroke
2004-08-16 06:13:59 +00:00
minskim
33d09e6c8e Update xterm to 196.
Changes since 188:
  - Many bug fixes and enhancements.  See the following web page for
  the complete list.
    http://dickey.his.com/xterm/xterm.log.html
2004-08-16 04:53:46 +00:00
tv
57110d93e1 Add new variable LIBTOOL_LA_FILES, which may be used instead of listing
all of the .a, .la, .so, and .so.* files in the PLIST.  This will
autogenerate the PLIST entries based on the informaion in the .la file.

This include print-PLIST support; if LIBTOOL_LA_FILES contains an
installed .la, its entries will be elided from the output PLIST template.
2004-08-16 03:12:02 +00:00
ben
3a9380afa6 Make hmmer honor $MKDIR for cross-platform install.
Addresses pr#26650 from Georg Schwarz.
2004-08-16 02:47:49 +00:00
schmonz
9482f7b935 If patching fails and either of PKG_OPTIONS and LOCALPATCHES are
defined, note thatthe patch failure may be due to incompatible
build options and/or local patches, and suggest building with fewer.
2004-08-16 01:56:03 +00:00
wiz
1dc3c20a24 crimsonfields updated to 0.4.3. 2004-08-15 22:53:15 +00:00
wiz
a78e21255b Update to 0.4.3:
- added new map 'Across the Omyar Gorge'
  - improved localization support for ISO-8859-2 locales
  - added Polish translation
  - added quick scroll via number pad and NumLock
  - added a way to recover from the password dialog
  - fixed build issues in non-graphical environments
2004-08-15 22:52:32 +00:00
jschauma
2d88922062 Use '-none' instead of '-notall' as the mipspro equivalent to --no-whole-archive 2004-08-15 22:21:14 +00:00
jschauma
35b58c9852 Use '-x' instead of '-X';
use '-none' instead of '-notall' to increase odds that this'll work under
older IRIX versions.
2004-08-15 22:20:02 +00:00
jschauma
72f96c0eab substitute --whole-archive and --no-whole-archive with the appropriate
linker flags (-all and -notall, respectively).  Pointed out by Georg
Schwarz in private mail.
2004-08-15 22:15:18 +00:00