summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-03-12update to 1.4.12drochner2-9/+9
changes: -minor build framework fixes -allow cairo.Context to be subclassed
2008-03-12Mention sysctl for shmmaxpgs.wiz1-1/+5
2008-03-12Added multimedia/goggles version 0.9.1wiz1-1/+2
2008-03-12+ goggles.wiz1-1/+2
2008-03-12Initial import of goggles-0.9.1:wiz5-0/+60
Goggles DVD Player is a frontend for the Ogle DVD player. Besides the usual features like having a play button etc., Goggles tries to provide features not often found in other DVD players. Since Ogle in itself is only a DVD player, it has some neat capabilities that "general" media players cannot provide. Goggles extends these capabilities with a very user-friendly interface. Goggles' attractive and responsive user interface is written using the FOX Toolkit.
2008-03-12update to 1.4.14drochner2-6/+6
changes: -minor bugfixes -make PostScript output more conformant wrt Type 3 fonts
2008-03-12Updated www/apache-tomcat55 to 5.5.26adrianp1-1/+2
2008-03-12Lots of changes, see the changelog for all the details:adrianp3-14/+14
http://tomcat.apache.org/tomcat-5.5-doc/changelog.html Of note: important: Data integrity CVE-2007-6286 important: Information disclosure CVE-2007-5461 low: Elevated privileges CVE-2007-5342 low: Session hi-jacking CVE-2007-5333 Are all fixed in this release.
2008-03-12Skip printing "@dirrm lib/ruby/gems" in the print-PLIST output.jlam1-1/+2
Now, print-PLIST with USE_DESTDIR=full will generate the correct PLISTs for rubygems.
2008-03-12Don't try to remove the intermediate build files unless the ext/ directoryjlam1-9/+10
exists.
2008-03-12+ For print-PLIST, don't output any files or directories injlam1-2/+10
${GEM_DOCDIR} as those are automatically listed by RUBYGEM_GENERATE_PLIST. + Clean up the intermediate build files in the "ext" directory of installed gem by removing everything that's not also in the unpacked gem.
2008-03-12+ By default, support user-destdir installation as the gem installationjlam1-12/+35
process makes that easily possible. + Use ${EXTRACTOR} to manually unpack the gem file. + Change the do-gem-install target to initially build and install the gem into a buildroot, ${WRKDIR}/.inst, then to copy the files from the buildroot into the final install location, ${DESTDIR}${PREFIX}. XXX We still need to find some way to remove the intermediate build XXX files, e.g. *.o object files, from the buildroot before copying XXX to the final location.
2008-03-12Invent new variable EXTRACTOR that has the environment and path to thejlam1-6/+8
extract script. This can be used in a more natural way by custom do-extract targets than EXTRACT_CMD.
2008-03-12Fix whitespacejlam1-2/+2
2008-03-12+ boolean-6.97, bug-buddy-2.22.0, classpath-0.97.1,wiz1-5/+17
deskbar-applet-2.22.0.1, epiphany-extensions-2.22.0, fuse-ntfs-3g-1.2310, gconf-editor-2.22.0, gnome-icon-theme-2.22.0, gnome-media-2.22.0, gnome-panel-2.22.0, gnome-screensaver-2.22.0, gnome-terminal-2.22.0, gtk2-2.12.9, nautilus-2.22.0, nautilus-cd-burner-2.22.0, surfraw-2.2.1.
2008-03-12Fix bug in the interaction between --build-root and --remote noted in:jlam3-6/+25
http://rubyforge.org/pipermail/rubygems-developers/2006-June/002010.html If --build-root is specified, then any remote gems are now downloaded into the "cache" directory under the buildroot. Bump PKGREVISION to 2.
2008-03-12We're at u5 not u4. Add a note about this so it does not happen again.adrianp1-2/+3
2008-03-12Added devel/cvsclone version 0.00wiz1-1/+2
2008-03-12+ cvsclone.wiz1-1/+2
2008-03-12Initial import of cvsclone:wiz5-0/+61
Utility to clone CVS repositories over the pserver interface. Works for anonymous access. FEATURES - reads $HOME/.cvspass - can clone corrupt repositories: writes ,v files directly, does not need rcs. (For example, ccvs module has archives that go backwards in time.)
2008-03-12Update HOMEPAGE and MASTER_SITES.wiz1-3/+3
2008-03-12Added shells/bash-completion version 20060301wiz1-1/+2
2008-03-12+ bash-completion.wiz1-1/+2
2008-03-12Initial import of bash-completion-20060301:wiz4-0/+88
A relatively new feature in bash is programmable completion, which has been available since the beta version of 2.04. Programmable completion will be familiar to you if you are a zsh user. It also exists, albeit in a much less usable form, in tcsh. Standard completion bash has offered many forms of completion since its inception, including path, file, user, host and variable completion. * Path-name completion * File-name completion * User-name completion * Host-name completion * Variable-name completion Programmable completion indefinitely extends the type of completion you can perform. This package contains a variety of completions for various programs.
2008-03-12Updated textproc/WordNet to 3.0wiz1-1/+2
2008-03-12+ WordNet.wiz1-1/+2
2008-03-12Initial import of WordNet-3.0:wiz4-0/+171
WordNet is a large lexical database of English, developed under the direction of George A. Miller. Nouns, verbs, adjectives and adverbs are grouped into sets of cognitive synonyms (synsets), each expressing a distinct concept. Synsets are interlinked by means of conceptual-semantic and lexical relations. The resulting network of meaningfully related words and concepts can be navigated with the browser. WordNet is also freely and publicly available for download. WordNet's structure makes it a useful tool for computational linguistics and natural language processing.
2008-03-12+ Improve the documentation in the header of the rubygem.mk file.jlam1-25/+72
+ Add a build dependency on rake, which is used to build a new gem file. Define RAKE to be the path to the installed rake binary. + Add "ruby" as a package category by default. + Define MASTER_SITES to a default value pointing to the main remote gem repository: http://gems.rubyforge.net/gems/. + Add a "do-gem-extract" target that extracts the files from the downloaded gem and into ${WRKSRC}. This allows us to patch or otherwise manipulate the files that are part of the gem that is to be installed. + Add a "do-gem-build" target that builds a new local gem from the contents of ${WRKSRC} using the provided Rakefile. This local gem which contains all pkgsrc modifications will be the one installed on the system. + Modify "do-gem-install" target to install from the new local gem created by the "do-gem-build" target. XXX The do-gem-install target still needs to use the new --buildroot XXX option to allow DESTDIR-style installations.
2008-03-12Support user-destdir installation.jlam1-7/+11
2008-03-12In the *-install targets, add ${INSTALL_ENV} to the environment passedjlam1-4/+4
to the installation script. This causes DESTDIR to be passed through if a package has DESTDIR support.
2008-03-11Fix build with MIPSPro. PR pkg/38210.tnn2-1/+24
2008-03-11+ We need rubygems>=1.0.1nb1 (which has the OpenSuSE buildroot patch)jlam1-27/+30
for building and installing the gems, but we can use older rubygems at run-time. + Move GEMFILE definition ahead of EXTRACT_SUFX just as a style issue. This looks more like a normal package Makefile layout. + Rename GEMS_BASEDIR to GEM_HOME, which is the actual rubygems variable name for that directory. + Rename some variables to be more in line with other ruby variable names: GEM_LIB_DIR => GEM_LIBDIR GEM_DOC_DIR => GEM_DOCDIR + Set RUBYGEM_PKGPREFIX to ${RUBY_PKGPREFIX}-gem for now. We know that at least we don't want ruby packages to prefix with "rubygems". + Just use EVAL_PREFIX instead of directly using find-prefix.mk.
2008-03-11Try to fix build failure with X11_TYPE=native and any of the X toolkittnn2-1/+15
options enabled.
2008-03-11As discussed on tech-pkg@ add a Makefile fragment intended to helpseb1-0/+87
packaging RubyGems. Its functionality is somewhat limited for now but will be without doubt improved and refactored in the very near future.
2008-03-11Depend on SmartEiffel.joerg1-3/+3
2008-03-11It's *smart*, not small.joerg1-2/+2
2008-03-11Put back a couple of IRIX conditionals the way they used to behave,tnn14-29/+29
e.g. match IRIX 5.x but not 6.x. Some of these may indeed apply to 6.x too, but let's be conservative. PR pkg/38224.
2008-03-11Follow smalleiffel -> SmallEiffel move. Bump revision.joerg1-3/+3
2008-03-11Note update of textproc/p5-XML-Atom-Stream package to 0.11.kleink1-1/+2
2008-03-11+ libarenajoerg1-1/+2
2008-03-11It is user-destdir, not user-destir.joerg2-4/+4
2008-03-11Update p5-XML-Atom-Stream to 0.11; changes since 0.10 include:kleink2-6/+6
0.11 Wed Jan 9 11:01:56 PST 2008 - Fixed a bug where xml:lang is transformed into unknown:lang. (Thanks to David Recordon)
2008-03-11PKG_BUILD_OPTIONS.apr is used, so make sure it is present whenjoerg1-3/+3
this file is included again.
2008-03-11pkg_install-20080311:joerg2-3/+9
If the package db directory doesn't exist, handle it like an empty pkgdb and just return.
2008-03-11PR pkg/38224: Another case of me doing a bad LOWER_OPSYS totnn1-2/+2
MACHINE_PLATFORM conversion. Will revist all of these to make sure they were correct.
2008-03-11Revert previous, /bin/ksh appears to be even worse than /bin/sh.tnn1-2/+2
(Need to consider installing a sane shell as part of bootstrap.)
2008-03-11Explicitly "" around $1, so that e.g. csh-like expansion of {} doesn'tjoerg1-1/+1
happen.
2008-03-11Skip man page handling.joerg1-30/+4
2008-03-11Add the shared library search path in addition to the run path for -lpcre.tnn1-2/+2
2008-03-11Use /bin/ksh instead of /bin/sh on HPUX.tnn1-2/+2
/bin/sh, the "POSIX.2 compliant" shell, is FUBAR: $ echo {a,b} a b