summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2005-04-11Note update of mathomatic.minskim2-3/+3
2005-04-11Update mathomatic to 12.2c.minskim2-6/+6
Changes: - Use mkstemp() for temp file in edit command. Put temp file in "/tmp", instead of current directory. - Created my_strlcpy(), since Linux doesn't have strlcpy(). - Made everything declared static that should be. - Prime Number Tools cleaned up and compiled with "-Wall". - Made them all successfully compile with g++. - A bug fix for HTML mode. - Completely removed sensitivity command and simplified parsing code. - Fixed minor bug in fraction format display routine.
2005-04-11Add and enable ruby-cmd.minskim2-2/+4
2005-04-11Import ruby-cmd.minskim4-0/+37
cmd is a library for building line-oriented command interpreters in Ruby. Simply inherit from cmd's Cmd class, and methods whose names start with do_ become interactive commands. cmd is inspired by the Python library of the same name, but offers a distinctive Ruby feel and several additional features.
2005-04-11patch tclConfig.sh and tkConfig.sh so that they do not contain referencesjschauma4-6/+30
to the build environment, which of course no longer exists once we install the file. Also make sure that variables are set using double quotes, so that variables inside are expanded. Ok jwise@.
2005-04-10Don't use — -- this doesn't seem to know about it.jschauma1-10/+54
Import README.Linux
2005-04-10synch with last changes to bootstrap and READMEsjschauma1-2/+15
2005-04-10Update README's for last change in bootsrap.jschauma3-12/+30
2005-04-10Implement changes suggested on tech-pkg some time ago:jschauma1-24/+75
(1) rework how command-line arguments are parsed: instead of --command=<arg>, use --command <arg> This allows us to not rely on certain commands for which we first need to figure out where they are to parse the arguments, which in turn allows us to (2) add the command-line option --preserve-path to prevent bootstrap from munging the PATH (as it does on some platforms) and look in places that are not currently in the PATH Finally, (3) add a check to see if we're using gcc, and set and add the PKGSRC_COMPILER=<compiler> flag to the sample mk.conf. This is particularly useful (and actually necessary) under IRIX. Bump BOOTSTRAP_VERSION.
2005-04-10teTeX3-bin uses xpm. Changes approved by hubertf.schwarz1-1/+3
2005-04-10uncomment the checksums for IRIXjschauma1-4/+4
(the commented version was committed by mistake)
2005-04-10Note update of gtk-send-pr to 0.4.5.cube2-3/+3
2005-04-10Update to 0.4.5, provided by Miguel Mendez in PR#29904.cube2-6/+6
0.4.4 -> 0.4.5 - It's now possible to use STARTTLS to encrypt SMTP traffic. - Some memory leaks were fixed (a bunch of missing g_free()). - Parts of the code were edited to conform to the FreeBSD coding style guide. - A new application icon is included. - The man page was updated.
2005-04-10prevent patch-aa from elimiating CFLAGS= from Makefile.in. This enablesschwarz2-12/+10
configure to pass the CFLAGS it has determined which would otherwise get ignored. Pkgsrc CFLAGS are taken into account by configure already. Change approved by recht.
2005-04-10note update of devel/splint to 3.1.1jschauma2-3/+3
2005-04-10Update splint to 3.1.1.jschauma2-6/+6
The 3.1.0 release contained numerous enhancements over the previous 3.0.1.6 release. Among other improvements, the accuracy of the bounds checking code has improved; Splint can produce output in html or comma separated value(CSV) format; and support for numabstract types has been added. Additionally the code contains numerous bugs fixes and house keeping updates. (Details at http://www.splint.org/changes.html ) No list of changes available for the 3.1.1 release.
2005-04-10+ gimp-2.2.6, gtk2+-2.6.5, imp4-4.0.3, p7zip-4.16, xlog-1.2.2.wiz1-2/+6
2005-04-10Explicitly disable howl; fixes build if it's installed.jmmv1-1/+2
2005-04-10Fix typo.jmmv1-2/+2
2005-04-10Patch from http://web.mit.edu/kerberos/advisories/2005-001-patch_1.4.txtjlam3-2/+100
which fixes MITKRB5-SA-2005-001 (CAN-2005-0468 & CAN-2005-0469) relating to buffer overflows in the telnet client. Bump PKGREVISION to 1.
2005-04-10Remove the examples directory on deinstallation.jlam1-1/+2
2005-04-10-mit-krb5-1.4jlam1-2/+1
2005-04-10Updated security/mit-krb5 to krb5-1.4. Changes from version 1.3.6 include:jlam16-163/+186
* Merged Athena telnetd changes for creating a new option for requiring encryption. * Add implementation of the RPCSEC_GSS authentication flavor to the RPC library. * The kadmind4 backwards-compatibility admin server and the v5passwdd backwards-compatibility password-changing server have been removed. * Thread safety for krb5 libraries. * Yarrow code now uses AES. * Merged Athena changes to allow ftpd to require encrypted passwords. * Incorporate gss_krb5_set_allowable_enctypes() and gss_krb5_export_lucid_sec_context(), which are needed for NFSv4. * Fix heap buffer overflow in password history mechanism. [MITKRB5-SA-2004-004]
2005-04-10Add and enable ruby-actionwebservice.minskim2-2/+4
2005-04-10Import ruby-actionwebservice.minskim4-0/+107
Simple support for publishing Web Service APIs for Rails applications. Supports SOAP and XML-RPC, as well as generating WSDL for SOAP bindings.
2005-04-10Add RMD160 sums for all the optional patches.schmonz1-5/+18
2005-04-10Add and enable ruby-activerecord.minskim2-2/+4
2005-04-10Import ruby-activerecord.minskim5-0/+95
Active Record connects business objects and database tables to create a persistable domain model where logic and data is presented in one wrapping. It is an implementation of the object-relational mapping (ORM) pattern by the same name as described by Martin Fowler: "An object that wraps a row in a database table or view, encapsulates the database access, and adds domain logic on that data." Active Records main contribution to the pattern is to relieve the original of two stunting problems: lack of associations and inheritance. By adding a simple domain language-like set of macros to describe the former and integrating the Single Table Inheritance pattern for the latter, Active Record narrows the gap of functionality between the data mapper and active record approach.
2005-04-10Note update of ruby-actionmailer.minskim1-1/+2
2005-04-10Install required files not installed by the install script, and add aminskim4-3/+29
missing dependency. Bump PKGREVISION.
2005-04-10Add and enable ruby-actionpack.minskim2-2/+4
2005-04-10Import ruby-actionpack.minskim5-0/+159
Action Pack splits the response to a web request into a controller part (performing the logic) and a view part (rendering a template). This two-step approach is known as an action, which will normally create, read, update, or delete (CRUD for short) some sort of model part (often backed by a database) before choosing either to render a template or redirecting to another action. Action Pack implements these actions as public methods on Action Controllers and uses Action Views to implement the template rendering. Action Controllers are then responsible for handling all the actions relating to a certain part of an application. This grouping usually consists of actions for lists and for CRUDs revolving around a single (or a few) model objects. So ContactController would be responsible for listing contacts, creating, deleting, and updating contacts. A WeblogController could be responsible for both posts and comments. Action View templates are written using embedded Ruby in tags mingled in with the HTML. To avoid cluttering the templates with code, a bunch of helper classes provide common behavior for forms, dates, and strings. And it's easy to add specific helpers to keep the separation as the application evolves.
2005-04-10If the "tls" option is enabled, append the additional targets toschmonz1-2/+2
INSTALL_TARGET, rather than replacing them. This had been broken with the introduction of djbware.mk.
2005-04-10Add and enable ruby-activesupport.minskim2-2/+4
2005-04-10Import ruby-activesupport.minskim4-0/+73
Active Support is a collection of various utility classes and standard library extensions that were found useful for Rails. All these additions have hence been collected in this bundle as way to gather all that sugar that makes Ruby sweeter.
2005-04-10Remove <errno.h> TODO item -- it's fine as is. Rationale: theschmonz1-2/+1
current subst.mk hack does not cause any change in behavior on any platform where the software already compiles and runs. Thanks rillig@ for suggesting this.
2005-04-10Add and enable ruby-actionmailer.minskim2-2/+4
2005-04-10Import ruby-actionmailer.minskim4-0/+67
Action Mailer is framework for designing email-service layers. These layers are used to consolidate code for sending out forgotten passwords, welcoming wishes on signup, invoices for billing, and any other use case that requires a written notification to either a person or another system. Additionally, an Action Mailer class can be used to process incoming email, such as allowing a weblog to accept new posts from an email (which could even have been sent from a phone).
2005-04-10Add and enable rubygems.minskim2-2/+4
2005-04-10Import rubygems.minskim4-0/+80
RubyGems is a way to package Ruby libraries/applications for distribution, its a distribution manager, its a package manager. RubyGems brings to the world of Ruby a very valuable capability--the ability to manage concurrent versions of libraries and dependencies between those libraries. This last aspect of RubyGems is one of the most important to the end user, because its value is continuous as you use and program Ruby, but to understand its impact an explanation of how Ruby manages libraries is in order.
2005-04-10Add PRINT_PLIST_AWK patterns for ruby modules.minskim1-1/+8
2005-04-10Update udfclient package to 0.3.5 fixing a serious enough memory leak toreinoud3-8/+9
justify the update!
2005-04-09Sense of a USE_BUILDLINK3 test was reversed when USE_BUILDLINK3 wasmarkd1-2/+1
switched on always, resulting in instances of X11R6/lib libraries being linked in to binaries along with pkgsrc versions of the same. Fix.
2005-04-09Note ucspi-tcp PKGREVISION bump (manpage updates).schmonz1-1/+2
2005-04-09Update to 20020317 manpages, merging upstream web page changes intoschmonz2-6/+7
tcpclient.1. Bump PKGREVISION.
2005-04-09Note djbdns PKGREVISION bump (PLIST fix).schmonz1-1/+2
2005-04-09Note axfrdns-conf(8) manpage in PLIST, and bump PKGREVISION. Whileschmonz3-4/+6
here, add an RMD160 checksum for the "ignoreip2" patch.
2005-04-09Standardize handling of additional distfiles (such as externallyschmonz5-27/+28
supplied manual pages) across djbware.
2005-04-09Note update of skype to 1.0.0.20.jmmv1-1/+2
2005-04-09Update to 1.0.0.20:jmmv3-13/+23
18.03.2005 Skype for Linux version 1.0.0.20 * feature: SkypeIn * feature: voicemail sending and receiving * feature: contact grouping * feature: Central Contact List * feature: drag and drop between contact groups * change: chat window doesn't steal focus * change: contact list (x/y) indicators * bugfix: calling to too long SkypeOut numbers crash * bugfix: start tab texts messed up with nondefault font size * bugfix: showing/hiding offline contacts * bugfix: adding/removing SkypeOut contacts * bugfix: startconference, addtochat windows are modal * bugfix: Skype crashes, if there is incoming conference call * bugfix: callhistory bugs, show calls which are redirected to voicemail, dont show missed calls under incoming calls. after delete update the filter * bugfix: Missing title bar, if you call to emergency number * bugfix: problem with user counter on start tab * bugfix: don't show already deleted voicemails on start tab * bugfix: sometimes System Tray icon blinks without any reason * bugfix: does not ignore incoming call * known issue: Start tab does not yet show SkypeIn and Voicemail service status. You can check current service status on My Account page 14.02.2005 Skype for Linux version 1.0.0.7 * change: Call tab no longer closes if remote does not accept call because of won't close, if you have privacy problems * change: prank call prevention suggestion * change: new Options layout * change: addressbar behaviour should depend on General option (start chat / start call) * bugfix: limit field lengths in profile editor * bugfix: voicemail sending crashfixes * bugfix: icon fix when adding a blocked contact to contact list * bugfix: Hold button on toolbar should be disabled until call is picked up. * bugfix: crash when context menu remains open in call * bugfix: call holding and resuming - context menu and toolbar button sync * bugfix: "hang up call" sound works * bugfix: crash when context menu remains open in call * bugfix: e-mail and full name locations changed in profile editor * bugfix: search results order fix when doing several searches after one another * bugfix: "away" and "not available" should allow 3 digits * bugfix: search someone who is already in Contact list - can't add twice * bugfix: tab order in advanced search form * bugfix: icons have names for non-taskbar window managers * bugfix: tray alert does not blink any more when there are no missed events/chats