summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2002-09-20- add dependancy on converters/libiconvgrant1-2/+5
- convert to buildlink2 - bump PKGREVISION as discussed with jlam.
2002-09-19Note addition of netscape7jschauma1-1/+2
2002-09-19Add and enable netscape7jschauma1-1/+2
2002-09-19Initial import of www/netscape7 -- this is Netscape's famous Browser/Mail- andjschauma11-0/+622
Newclient suite version 7.0, now including AIM and ICQ clients etc. It is run under Linux emulation on NetBSD. At the moment, this package is only for NetBSD-*-i386 and Linux-*-i[3-6]86.
2002-09-19tweakhubertf1-2/+2
2002-09-19Update 6to4 to 1.3. Change:hubertf5-52/+121
- adapt for NetBSD 1.6 and later which needs an "ifconfig stf0 create" (also needed on FreeBSD). Patch contributed by Kimura Fuyuki <fuyuki@hadaly.org> in private mail.
2002-09-19Note addition of rt-mysql and rt-pgsql packages, both version 2.0.13.atatat1-1/+2
RT is an industrial-grade ticketing system. It lets a group of people intelligently and efficiently manage requests submitted by a community of users. RT is used by systems administrators, customer support staffs, NOCs, developers and even marketing departments at over a thousand sites around the world.
2002-09-19Add rt-mysql and rt-pgsql pkgsatatat1-1/+3
2002-09-19Initial import of a pkg for the RT ticketing system.atatat1-0/+5
RT is an industrial-grade ticketing system. It lets a group of people intelligently and efficiently manage requests submitted by a community of users. RT is used by systems administrators, customer support staffs, NOCs, developers and even marketing departments at over a thousand sites around the world. This version is backed by the postgres database.
2002-09-19Initial import of a pkg for the RT ticketing system.atatat9-0/+1146
RT is an industrial-grade ticketing system. It lets a group of people intelligently and efficiently manage requests submitted by a community of users. RT is used by systems administrators, customer support staffs, NOCs, developers and even marketing departments at over a thousand sites around the world. This version is backed by the mysql database.
2002-09-19add easydiskpasswddrochner1-1/+2
2002-09-19a little tool to send a password string to these cute USB flash disks;drochner5-0/+212
makes them more usable under NetBSD (by myself)
2002-09-19Honor ${PKG_SYSCONFDIR}.kei9-18/+18
XXX doing make install for same xpdf-* package more than once causes ${PKG_SYSCONFDIR}/xpdfrc have duplicated entries. Is there any easy way of avoiding this?
2002-09-19Note update of wm/blackbox to latest 0.65.0 release:jschauma1-1/+2
Changes from 0.62.1 to 0.65.0: - added Taiwan Chinese (zh_TW), Hungarian (hu_HU), Latvian (lv_LV), Korean (ko_KR), Norwegian (no_NO), Polish (pl_PL), Romanian (ro_RO) and Ukrainian (uk_UA) nls files and updated most of the others. - removed the Estonian (ee_ET) and Turkish (tr_TR) locales due to their being heavily out of date and unmaintained - remove slit and netwm as compile time options - strip much of BaseDisplay's original functionality and move it to the blackbox class. - huge amounts of internal cleanups - added emacs local variables to each file that prevent the addition of tabs - added a Util.cc file which contains useful functions with no obvious home. - move code over to the STL - removed several unused variables and otherwise reduced the memory usage of the objects in Blackbox. For the record the binary is roughly 100k larger than 0.62.0 and that is mostly due to the STL but there is also a fair bit of new code. However for the most part blackbox runs faster and is still one of the leanest window managers out there today. - bsetroot now sets _XROOTPMAP_ID, so pseudo transparent apps will be happy - beginnings of a strut implementation. toolbar and slit are removed from the available screen area if 'full maximize' is not set - XReparentWindow sends an UnmapNotify to the window manager however in certain cases the window is already unmapped so the window manager never gets the event and the unmapNotify event is where reparentNotify was handled. Added a reparentNotifyEvent handler in the BlackboxWindow class and a new case in the Blackbox class's process_event function. - no more blackbox->grab/ungrab calls everywhere - compression of motion and expose - Now we have one function which turns ~/ into /home/user/. This is now called everywhere this expansion should be done. Even added this to the resource.menu_file so now the menu file may be specified as ~/blackbox_menu. - added a TimerQueue which is a priority_queue with the ability to release items it contains before they reach the top of the queue. Also added a TimerQueueManager protocol class which BaseDisplay now inherits from. - BTimer now defaults to NOT recurring. Most of the timers in blackbox were one shots so I saw little benefit in defaulting to repeating timers. - update transient handling, should solve issues with apps like acroread. added a getTransientInfo() method of the BlackboxWindow class which handles checking the transient state in X and setting the appropriate variables on the window. To attack the infinite loops this function ensures that client.transient != this and we check for loops of the form A -> B -> C -> A. The new transient code also allows for one window to have multiple transients so applications like xmms and web browsers are better behaved. - even better ICCCM support and focus handling - wmswallow works - fix for clock clipping in the toolbar - better support for non decorated windows and toggling decor - the geometry window shown when moving or resizing a window now handles the parentrelative setting better. parentrelative support has been improved for all of the other widgets as well. - better window group handling - improved edge snap support (still no window to window snapping) - changing preferences no longer leads to windows being raised - the window's "send to" menu ignores the current workspace, which is a better UI approach - new placeWindow algorithm. Blows the old one out of the water. Not only is it faster but it is also cleaner code too (-: Went from number 5 in the profiling results to under 30. Image rendering is now the slowest part of managing of new windows. Because of the new code layout, support is now there for new and different layout options but this will wait for after 0.65.0. - smart window placement ignores shaded windows now - new option in the Config menu which allows Scroll Lock to disable Blackbox's keybindings.
2002-09-19Update the fabolous Blackbox windowmanager to latest 0.65.0 Releasejschauma3-24/+31
(the first major release from the new maintainer, IIRC). Many new goodies, bugfixes and overall improvements. This closes PR pkg/18131. Changes from 0.62.1 to 0.65.0: - added Taiwan Chinese (zh_TW), Hungarian (hu_HU), Latvian (lv_LV), Korean (ko_KR), Norwegian (no_NO), Polish (pl_PL), Romanian (ro_RO) and Ukrainian (uk_UA) nls files and updated most of the others. - removed the Estonian (ee_ET) and Turkish (tr_TR) locales due to their being heavily out of date and unmaintained - remove slit and netwm as compile time options - strip much of BaseDisplay's original functionality and move it to the blackbox class. - huge amounts of internal cleanups - added emacs local variables to each file that prevent the addition of tabs - added a Util.cc file which contains useful functions with no obvious home. - move code over to the STL - removed several unused variables and otherwise reduced the memory usage of the objects in Blackbox. For the record the binary is roughly 100k larger than 0.62.0 and that is mostly due to the STL but there is also a fair bit of new code. However for the most part blackbox runs faster and is still one of the leanest window managers out there today. - bsetroot now sets _XROOTPMAP_ID, so pseudo transparent apps will be happy - beginnings of a strut implementation. toolbar and slit are removed from the available screen area if 'full maximize' is not set - XReparentWindow sends an UnmapNotify to the window manager however in certain cases the window is already unmapped so the window manager never gets the event and the unmapNotify event is where reparentNotify was handled. Added a reparentNotifyEvent handler in the BlackboxWindow class and a new case in the Blackbox class's process_event function. - no more blackbox->grab/ungrab calls everywhere - compression of motion and expose - Now we have one function which turns ~/ into /home/user/. This is now called everywhere this expansion should be done. Even added this to the resource.menu_file so now the menu file may be specified as ~/blackbox_menu. - added a TimerQueue which is a priority_queue with the ability to release items it contains before they reach the top of the queue. Also added a TimerQueueManager protocol class which BaseDisplay now inherits from. - BTimer now defaults to NOT recurring. Most of the timers in blackbox were one shots so I saw little benefit in defaulting to repeating timers. - update transient handling, should solve issues with apps like acroread. added a getTransientInfo() method of the BlackboxWindow class which handles checking the transient state in X and setting the appropriate variables on the window. To attack the infinite loops this function ensures that client.transient != this and we check for loops of the form A -> B -> C -> A. The new transient code also allows for one window to have multiple transients so applications like xmms and web browsers are better behaved. - even better ICCCM support and focus handling - wmswallow works - fix for clock clipping in the toolbar - better support for non decorated windows and toggling decor - the geometry window shown when moving or resizing a window now handles the parentrelative setting better. parentrelative support has been improved for all of the other widgets as well. - better window group handling - improved edge snap support (still no window to window snapping) - changing preferences no longer leads to windows being raised - the window's "send to" menu ignores the current workspace, which is a better UI approach - new placeWindow algorithm. Blows the old one out of the water. Not only is it faster but it is also cleaner code too (-: Went from number 5 in the profiling results to under 30. Image rendering is now the slowest part of managing of new windows. Because of the new code layout, support is now there for new and different layout options but this will wait for after 0.65.0. - smart window placement ignores shaded windows now - new option in the Config menu which allows Scroll Lock to disable Blackbox's keybindings.
2002-09-19Updated rconfig to 0.13:abs3-6/+7
Permit locking of files (to exclude from push)
2002-09-19Add "USE_X11=YES" to get run time path for X11 libraries.tron1-6/+6
2002-09-19- move the pkgsrc related HACKS into a separate file.lukem1-0/+297
- remove the pkgsrc|basesrc|syssrc (etc) prefix from file entries; it wasn't consistently used anyway
2002-09-19doc/pkg-CHANGES is now pkgsrc/doc/CHANGESlukem1-2/+2
2002-09-19move doc/pkg-CHANGES* -> pkgsrc/doc/CHANGES*lukem7-1/+10612
move pkgsrc/TODO -> pkgsrc/doc/TODO as mentioned on developers and subsequently confirmed with agc@
2002-09-19Restore the ability to not automatically install the rc.d script intojlam3-5/+22
/etc/rc.d. This is controlled by the new variable PKG_RCD_SCRIPTS which may be set in /etc/mk.conf or in the shell environment in which the INSTALL script is executed. PKG_RCD_SCRIPTS only takes effect if ${PKG_CONFIG} == "YES" and defaults to NO.
2002-09-19Take advantage of the auto-generation and installation of rc.d scripts.jlam31-223/+40
2002-09-19Automatically generate and install the rc.d scripts if specified byjlam1-3/+51
RCD_SCRIPTS. From the comments in bsd.pkg.install.mk: # rc.d scripts are automatically generated and installed into the rc.d # scripts example directory at the post-install step. The following # variables are relevent to this process: # # RCD_SCRIPTS lists the basenames of the rc.d scripts # # RCD_SCRIPT_SRC.<script> the source file for <script>; this will # be run through FILES_SUBST to generate # the rc.d script # # RCD_SCRIPTS_EXAMPLEDIR the directory in which to install the # example rc.d scripts # # If the source rc.d script is not present, then the automatic handling # doesn't occur.
2002-09-19buildlink1 -> buildlink2jlam1-2/+2
2002-09-19Rename files/chronyd to files/chronyd.sh for forthcoming changes tojlam2-2/+2
auto-handle rc.d scripts.
2002-09-19There is no RCD_SCRIPT.jlam1-2/+1
2002-09-19Allow for the chmod command to fail, e. g. if the distfile is on a readonlywennmach1-2/+2
medium, or if the directory protections don't allow it.
2002-09-19We're using buildlink2, so don't lie about where the rpm headers andjlam1-5/+5
libraries are actually found.
2002-09-19Add libevent.uebayasi1-1/+2
2002-09-19Initial import of libevent-0.6.uebayasi4-0/+36
The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. libevent is meant to replace the asynchronous event loop found in event driven network servers. An application just needs to call event_dispatch() and can then add or remove events dynamically without having to change the event loop. Currently, libevent supports kqueue(2) and select(2). Support for poll(2) and /dev/poll is planned. The internal event mechanism is completely independent of the exposed event API, and a simple update of libevent can provide this new functionality without having to redesign the server applications.
2002-09-19Updated print/xpdf to version 1.01. Changes from version 1.00 include:jlam7-97/+54
Honoring ${PKG_SYSCONFDIR} for location of xpdfrc. Implemented Type 3 fonts. Implemented PostScript CID font embedding; added a psEmbedCIDPostScriptFonts option. Implemented PostScript 16-bit font substitution; added psNamedFont16 and psFont16 options. Moved the initialZoom setting from X resources to the xpdfrc file. Implemented the radial shading type in the sh (shaded fill) operator. [Thanks to Mike Sweet.] Added an 'include' command to the xpdfrc format. Added the displayNamedCIDFontX option so different fonts can be used within one character collection. Implemented stroked text in XOutputDev (with t1lib and FreeType2). [Thanks to Leonard Rosenthol.] Implemented stroked text in PSOutputDev. Added a built-in Unicode map for UCS-2. PSOutputDev will now embed external TrueType fonts in addition to external Type 1 fonts. Added the Big5ascii Unicode map to the Chinese-traditional support package (maps 7-bit ASCII straight through). [Thanks to Lawrence Lai.] Modified the EUC-CN and EUC-JP encodings to pass 7-bit ASCII straight through. [Thanks to Lawrence Lai.] In the code that guesses character names (for font subsets), also handle names of the form 'ABnnn'. [Thanks to Colin Granville.] Tweak the Type 1 font bbox code to look at the bboxes in both the PDF font object and the embedded font file. Added an optional displayCIDFontX entry for one of the Arphic TrueType fonts in the traditional Chinese 'add-to-xpdfrc' file. Added psASCIIHex parameter. Added the GBK Unicode map to the simplified Chinese language pack. Pdftotext now opens the text file in binary mode to avoid Microsoft's annoying automatic end-of-line translation stuff. Added an executeCommand function in goo/gfile.cc. [Thanks to Mikhail Kruk.] The %ALDImagePosition OPI comment was wrong if the page was scaled to a different paper size. The OPI code was saving the default transform matrix before calling setpagedevice, which can change the matrix. PSOutputDev now handles PostScript XObjects.
2002-09-19It's "@unexec", not "@@unexec".jlam1-2/+2
2002-09-19Update fonts/t1lib to 1.3.1. Changes from version 1.1.1 include:jlam8-118/+140
* Move t1lib.config.netbsd sample file to t1lib.config.sample, which is more OS-neutral. - Bug fixes. - Fixed kerning mapping code. Kerning did not work correctly for characters that appeared multiple times in an encoding vector. - In the same context a new function, T1_GetEncodingIndices() has been added to the API. It returns an array of indices (by contrast, T1_GetEncodingIndex() returns only the lowest index found). - Support for composite characters. - Additional support for dvips encoding files (thanks to suggestion and contribution by Nicolai Langfeldt (janl@linpro.no). - Global Font Metrics Information is loaded from AFM files in order to be able to read the typographic ascender. Line ruling did not behave as documented. However, problems could still exist because the typographic ascender specification is optional in AFMs. - Reorganized search path handling and, in particular, the respective documentation is more detailed. - The configuration file now allows multiple lines of one type of search path specification and it is also possible to quote path specification in order to specify paths that contains special characters like spaces, colons, etc. - Multiple font databases are supported. - T1_PrintLog() extended to accept a variable argument list. - The environment variable T1LIB_LOGMODE is evaluated to give the user the chance to specify a loglevel and hence to detect t1lib-problems even if the application programmer did not enable the log file features. - Color problem in t1x11-module fixed. - Fixes in AFM parser. Among others, Version had been read as name, instead of as string. This led to a failure to scan global font info for some standard AFMs.
2002-09-19buildlink1 -> buildlink2 and use bsd.pkg.install.mk instead of localjlam4-85/+25
DEINSTALL/INSTALL scripts.
2002-09-18Update print/xpp to version 1.1. Changes from version 1.0 include:jlam3-21/+18
- Removed function overloading for the password dialog, used the new method of CUPS 1.1.3 - Added support for the "natural-scaling" image size option introduced in CUPS 1.1.9 - Added support for the new PPD-O-Matic PPD files of linuxprinting.org (numerical options appeared twice before). The old CUPS-O-Matic files can still be used. - The COMDATA lines in the PPD files of the new XML Foomatic changed in a way incompatible to the parser for the numerical options in XPP. Modified parser to read both the old and the new format.
2002-09-18Move the psraster.convs example file to ${PREFIX}/share/examples/cups.jlam2-6/+6
2002-09-18Recognize ghostscript-esp{,-nox11}.jlam1-1/+16
2002-09-18Update print/cups to 1.15.1. Changes from version 1.14 include:jlam11-137/+144
====================================================================== * Removed the pstoraster filter (based on GNU Ghostscript 5.50) and now * provide the raster "driver" and patch file necessary to use the current * GNU Ghostscript 7.05 release. Pkgsrc users should install the * print/ghostscript-esp package. ====================================================================== - Many, many bug fixes. - Improvements to polling and scheduling of jobs to CUPS and to connected printers. - Updated the CUPS license agreement for the new MacOS and OpenSSL license exceptions. - The jobs.cgi web interface now handles all job operations, allowing the administrator to allow "job administrators" or operators to manage jobs (but not queues) on the server. - New SCSI printer backend. - The PostScript filter now supports 6, 9, and 16-up output, as well as new page-border and number-up-layout options. - Added ConfigFilePerm and LogFilePerm directives. - The HTML job operation templates now link back to the destination printer or class. - Removed unnecessary fonts and updated the Courier and Symbol fonts to the latest versions to better support non-ISOLatin1 text. - The text filter now always embeds the Courier and Symbol fonts to ensure that they contain the full set of glyphs. - The PostScript image filter (imagetops) now supports printing CMYK images using the CMYK colorspace. - The cupsaddsmb program was updated to use the setdriver command instead of addprinter. - The Allow, Deny, BrowseAllow, BrowseDeny, and BrowseAddress directives now support the network interface names "@LOCAL" and "@IF(name)" for access control and browsing based on the current interface addresses instead of fixed names or IP addresses. - The cupsaddsmb program now supports alternative CUPS and SAMBA server names. - The PostScript filter now supports the Orientation comment and rotates the page as needed automatically.
2002-09-18Add and enable ghostscript-esp* packages.jlam1-1/+3
2002-09-18Initial import of ghostscript-esp-nox11-7.05.5.jlam2-0/+18
Ghostscript is the well-known PostScript interpreter which is available for all common and most esoteric platforms and supports many different printers and some displays. This package contains ESP Ghostscript, which is a separately maintained distribution of GNU Ghostscript and distributed under the terms of the GNU Public License. ESP Ghostscript incorporates the CUPS raster printer driver and a large number of contributed Ghostscript printer drivers. This package is built without support for X11 displays.
2002-09-18Fix punctuation.jlam1-1/+1
2002-09-18Initial import of ghostscript-esp-7.05.5.jlam8-0/+564
Ghostscript is the well-known PostScript interpreter which is available for all common and most esoteric platforms and supports many different printers and some displays. This package contains ESP Ghostscript, which is a separately maintained distribution of GNU Ghostscript and distributed under the terms of the GNU Public License. ESP Ghostscript incorporates the CUPS raster printer driver, and a large number of contributed Ghostscript printer drivers.
2002-09-18Conflict with the forthcoming ghostscript-esp* packages.jlam1-1/+2
2002-09-18Conflict with ghostscript-gnu-x11 and with the forthcoming ghostscript-esp*jlam1-2/+3
packages.
2002-09-18Add necessary "bsd.pkg.install.mk" glue code to create the "news" grouptron1-3/+7
required by this package. Bump package revision once more.
2002-09-18When using bsd.pkg.install.mk, if a DEINSTALL or INSTALL file alreadyjlam19-52/+27
exists, then use it as the default value of DEINSTALL_EXTRA_TMPL or INSTALL_EXTRA_TMPL.
2002-09-18Only attempt to remove the man/de/* directories as other packages may alsojlam1-3/+3
have man pages there.
2002-09-18Add secure HTTP support to the "wget" package. It is turned on by defaulttron2-2/+17
and can be turned of by "WGET_USE_SSL=NO".
2002-09-18Added mserv_irman-0.14abs1-1/+2
mserv_irman allows easy control of the 'mserv' mp3 jukebox program using ordinary remote controls and irman receivers from evation.com. mserv already allows rating of tracks to allow the system to pick tracks appropriate to who is currently connected. mserv_irman works with this to permit relatively peaceful sharing of an mp3 jukebox in an office of widely disparate tastes.
2002-09-18Import mserv_irman 0.14:abs4-0/+44
mserv_irman allows easy control of the 'mserv' mp3 jukebox program using ordinary remote controls and irman receivers from evation.com. mserv already allows rating of tracks to allow the system to pick tracks appropriate to who is currently connected. mserv_irman works with this to permit relatively peaceful sharing of an mp3 jukebox in an office of widely disparate tastes.