Work-in-progress packages for pkgsrc, the portable package system from NetBSD [mirror]
Find a file
Filip Hajny 666bcabf39 Updated wip/ap2-passenger to 3.0.7.
Release 3.0.7
-------------

 * Fixed a bug passenger-install-apache2-module. It could crash on
   some systems due to a typo in the code.
 * Upgraded preferred Nginx version to 1.0.0.
 * Phusion Passenger Standalone now pre-starts application processes
   at startup instead of doing that at the first request.
 * When sending data to Union Station, the HTTP status code is now also
   logged.
 * Various Union Station-related stability improvements.
 * The Linux OOM killer was previously erroneously disabled for all
   Phusion Passenger processes, including application processes. The
   intention was to only disable it for the Watchdog. This has been
   fixed, and the Watchdog is now the only process for which the OOM
   killer is disabled.
 * Fixed some compilation problems on OpenBSD.
 * Due to a typo, the dependency on file-tail was not entirely removed
   in 3.0.6. This has now been fixed.


Release 3.0.6
-------------

 * Fixed various compilation problems such as XCode 4 support and OpenBSD
   support.
 * Fixed various Union Station-related stability issues.
 * Fixed an issue with host name detection on certain platforms.
 * Improved error logging in various parts.
 * The dependency on the file-tail library has been removed.
 * During installation, check whether /tmp is mounted with 'noexec'.
   Phusion Passenger's installer relies on /tmp *not* being mounted
   with 'noexec'. If it is then the installer will now show a helpful
   error message instead of bailing out in a confusing manner. Users
   can now tell the installer to use a different directory for storing
   temporary files by customizing the $TMPDIR environment variable.
 * Phusion Passenger Standalone can now run Rackup files that are not named
   'config.ru'.
   The filename can be passed through the command line using the -R option.


Release 3.0.5
-------------

 * [Apache] Fixed Union Station process statistics collection
   Union Station users that are using Apache may notice that no process
   information show up in Union Station. This is because of a bug in
   Phusion Passenger's Apache version, which has now been fixed.
 * [Apache] PassengerAnalytics has been renamed to UnionStationSupport
   This option has been renamed for consistency reasons.
 * [Nginx] passenger_analytics has been renamed to union_station_support
   This option has been renamed for consistency reasons.
 * Fixed Union Station data sending on older libcurl versions
   Some Union Station users have reported that their data don't show up.
   Upon investigation this turned out to be a compatibility with older
   libcurl versions. Affected systems include all RHEL 5 based systems,
   such as RHEL 5.5 and CentOS 5.5. We've now fixed compatibility
   with older libcurl versions.
 * Added support for the Union Station filter language
   This language can be used to limit the kind of data that's sent to
   Union Station. Please read
   https://engage.unionstationapp.com/help#filtering for details.
 * Fixed a PassengerMaxPoolSize/passenger_max_pool_size violation bug
   People who host a lot of different applications on Phusion Passenger
   may notice that it sometimes spawns more processes than is allowed
   by PassengerMaxPoolSize/passenger_max_pool_size. This has been fixed.


Release 3.0.4
-------------

 * [Apache] Changed mod_dir workaround hook priority
   Phusion Passenger temporarily disables mod_dir on all Phusion
   Passenger-handled requests in order to avoid conflicts. In order to do this
   it registers some Apache hooks with the APR_HOOK_MIDDLE priority, but it
   turned out that this breaks some other modules like mod_python. The hook
   priority has been changed to APR_HOOK_LAST to match mod_dir's hook
   priorities. Issue reported by Jay Freeman.
 * Added support for Union Station: http://www.unionstationapp.com/
 * Some error messages have been improved.


Release 3.0.3
-------------

 * [Nginx] Preferred Nginx version upgraded to 0.8.54
   The previous preferred version was 0.8.53.
 * PATH_INFO and REQUEST_URI now contain the original escaped URI
   Phusion Passenger passes the URI, as reported by Apache/Nginx, to
   application processes through the PATH_INFO and REQUEST_URI variables.
   These variables are supposed to contain the original, unescaped URI, e.g.
   /clubs/%C3%BC. Both Apache and Nginx thought that it would be a good idea
   to unescape the URI before passing it to modules like Phusion Passenger,
   thereby causing PATH_INFO and REQUEST_URI to contain the unescaped URI,
   e.g. /clubs/ü. This causes all sorts of encoding problems. We now manually
   re-escape the URI when setting PATH_INFO and REQUEST_URI. Issue #404.
 * The installer no longer detects directories as potential commands
   Previously the installer would look in $PATH for everything that's
   executable, including directories. If one has /usr/lib in $PATH
   and a directory /usr/lib/gcc exists then the installer would recognize
   /usr/lib/gcc as the compiler. We now explicitly check whether the item
   is also a file.
 * PseudoIO now responds to #to_io
   Phusion Passenger sets STDERR to a PseudoIO object in order to capture
   anything written to STDERR during application startup. This breaks
   some libraries which expect STDERR to respond to #to_io. This has now
   been fixed. Issue #607.
 * Fixed various other minor bugs
   See the git commit log for details.


Release 3.0.2
-------------

 * [Nginx] Fixed compilation problems
   The Nginx compilation process was broken due to not correctly reverting
   the working directory of the Nginx configure script. This has been fixed:
   issue #595.
 * [Nginx] Fixed crash if passenger_root refers to a nonexistant directory
   Issue #599.
 * Fixed compilation problems on NetBSD
   There was a typo in a NetBSD-specific fcntl() call. It also turns out that
   NetBSD doesn't support some ISO C99 math functions like llroundl(); this
   has been worked around by using other functions. Issue #593.
 * Fixed file descriptor closing issues on FreeBSD
   Phusion Passenger child processes didn't correct close file descriptors
   on FreeBSD because it queries /dev/fd to do that. On FreeBSD /dev/fd
   only returns meaningful results if fdescfs is mounted, which it isn't
   by default. Issue #597.


Release 3.0.1
-------------

 * MUCH faster compilation
   We've applied code aggregation techniques, allowing Phusion Passenger
   to be compiled much quicker now. For example, compiling the Nginx
   component (not Nginx itself) on a MacBook Pro now takes only 29
   seconds instead of 51 seconds, an improvement of 75%! Compiling the
   Apache module on a slower Dell Inspiron now takes 39 seconds instead of
   1 minute 22 seconds, or 110% faster!
 * Fixed malfunction after web server restart
   On Linux systems that have a non-standard filesystem on /tmp, Phusion
   Passenger could malfunction after restarting the web server because of
   a bug that's only triggered on certain filesystems. Issue #569.
 * Boost upgraded to version 1.44.0.
   We were on 1.42.0.
 * Much improved startup error messages
   Phusion Passenger performs many extensive checks during startup to ensure
   integrity. However the error message in some situation could be vague.
   These startup error messages have now been improved dramatically, so that
   if something goes wrong during startup you will now more likely know why.
 * Curl < 7.12.1 is now supported
   The previous version fails to compile with Curl versions earlier than
   7.12.1. Issue #556.
 * passenger-make-enterprisey fixed
   This is the command that people can run after donating. It allows people
   to slightly modify Phusion Passenger's display name as a joke. In 3.0.0 it
   was broken because of a typo. This has been fixed.
 * Removed passenger-stress-test
   This tool was used during the early life of Phusion Passenger for stress
   testing websites. Its performance has never been very good and there are
   much better tools for stress testing, so this tool has now been removed.
 * [Apache] RailsEnv and RackEnv configuration options are now equivalent
   In previous versions, RailsEnv only had effect on Rails 1 and Rails 2 apps
   while RackEnv only had effect on Rack apps. Because Rails 3 apps are
   considered Rack apps, setting RailsEnv had no effect on Rails 3 apps.
   Because this is confusing to users, we've now made RailsEnv and RackEnv
   equivalent. Issue #579.
 * [Nginx] Fixed compilation problems on systems with unpowerful shells
   Most notably Solaris. Its default shell does not support some basic
   constructs that we used in the Nginx configure script.
 * [Nginx] Upgraded default Nginx version to to 0.8.53
   The previous default was 0.8.52.
 * [Nginx] passenger_enabled now only accepts 'on' or 'off' values
   Previously it would recognize any value not equal to 'on' as meaning
   'off'. This caused confusion among users who thought they could also
   specify 'true', so we now throw a proper error if the value is
   unrecognized. Fixes issue #583.
2011-05-16 12:45:21 +00:00
389-ds-base Added vuln notes 2011-03-21 22:14:11 +00:00
a2ps-sharatype
abclock INSTALLATION_DIRS=bin is needed to avoid overwriting. 2011-05-15 19:20:46 +00:00
acpiclient Import acpi-1.5nb1 as wip/acpiclient. 2011-01-02 16:38:53 +00:00
acpid Mention SA42947 2011-01-20 22:39:36 +00:00
acroread9 Update to 9.4.2 2011-03-16 21:07:32 +00:00
acroread9-chsfont Import acroread9-chsfont-9.1 as wip/acroread9-chsfont. 2010-10-27 11:51:27 +00:00
acroread9-chtfont Import acroread9-chtfont-9.1 as wip/acroread9-chtfont. 2010-10-27 12:12:14 +00:00
acroread9-font-share Import acroread9-font-share-9.1 as wip/acroread9-font-share. 2010-10-27 10:50:23 +00:00
acroread9-jpnfont Import acroread9-jpnfont-9.1 as wip/acroread9-jpnfont. 2010-10-27 10:51:11 +00:00
acroread9-korfont Fix typo. 2010-10-27 11:35:51 +00:00
adamem
adms Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
admsmb
ae-fonts-decorative Import ae-fonts-decorative-2.1 as wip/ae-fonts-decorative. 2011-01-24 09:33:43 +00:00
aegis-devel
aeneas added licensing information 2010-09-05 09:10:47 +00:00
aespipe
afflib
aida
aircrack-ng
airsnort
akonadi Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
alberta Import alberta-2.0.1 as wip/alberta. 2011-01-19 14:05:03 +00:00
alex Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
alive
alphamail Mark BROKEN (doesn't build against current Boost versions). Drop mntner- 2010-11-05 04:17:43 +00:00
alsa-lib
alsa-plugins
alsa-utils
am-utils fix for pkglint warning 2011-01-09 11:36:47 +00:00
amanda3-client Import amanda-client-3.1.2 as wip/amanda3-client. 2010-08-24 02:43:11 +00:00
amanda3-common Update to 3.1.3 ---- next up 3.2.x 2011-01-03 04:10:12 +00:00
amanda3-plot Remove unnecessary PKGVERSION. 2010-08-24 03:39:50 +00:00
amanda3-server Import amanda-server-3.1.2 as wip/amanda3-server. 2010-08-24 03:28:51 +00:00
amarok Stop maintaining amarok. 2011-04-22 10:09:42 +00:00
and
anki !!! It is not tested good enough yet !!! 2010-10-14 18:58:23 +00:00
ann Import ann-1.1.2 as wip/ann. 2011-01-17 22:02:17 +00:00
anthy-dic-jis34 Import anthy-dic-jis34-0.2 as wip/anthy-dic-jis34. 2011-05-12 05:36:32 +00:00
aoi
aokell Import aokell-2.0 as wip/aokell. 2011-01-19 14:14:04 +00:00
aols-freetds
aols-openssl
aols-postgres
aolserver
aolserver4
ap-bunzip2
ap-choke
ap-chxj
ap-evasive
ap-lisp
ap-macro
ap-mod_geoip2 Remove 2011-05-15 16:17:30 +00:00
ap-ometer Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
ap2-auth-imap
ap2-auth-pam
ap2-encoding
ap2-evasive
ap2-jk2
ap2-layout
ap2-limitipconn
ap2-lisp
ap2-macro
ap2-passenger Updated wip/ap2-passenger to 3.0.7. 2011-05-16 12:45:21 +00:00
ap2-xsendfile Updated wip/ap2-xsendfile to 0.12. Fixed changed URL. 2011-05-11 07:25:56 +00:00
ap2-zeroconf
ap22-layout
apache-commons-beanutils Import apache-commons-beanutils-1.8.3 as wip/apache-commons-beanutils. 2010-09-08 23:14:09 +00:00
apache-commons-codec Import apache-commons-codec-1.4 as wip/apache-commons-codec. 2010-09-08 23:59:12 +00:00
apache-commons-collections Import apache-commons-collections-3.2.1 as wip/apache-commons-collections. 2010-09-08 23:37:41 +00:00
apache-commons-configuration Import apache-commons-configuration-1.6 as wip/apache-commons-configuration. 2010-09-09 00:41:47 +00:00
apache-commons-dbcp Import apache-commons-dbcp-1.4 as wip/apache-commons-dbcp. 2010-09-13 09:46:50 +00:00
apache-commons-digester Import apache-commons-digester-2.0 as wip/apache-commons-digester. 2010-09-09 00:24:52 +00:00
apache-commons-io Import apache-commons-io-1.4 as wip/apache-commons-io. 2010-09-08 23:29:47 +00:00
apache-commons-lang Import apache-commons-lang-2.5 as wip/apache-commons-lang. 2010-09-08 23:46:13 +00:00
apache-commons-logging Import apache-commons-logging-1.1.1 as wip/apache-commons-logging. 2010-09-09 00:13:40 +00:00
apache-commons-pool Import apache-commons-pool-1.5.5 as wip/apache-commons-pool. 2010-09-13 08:46:06 +00:00
apache-log4j Import apache-log4j-1.2.16 as wip/apache-log4j. 2010-09-09 01:47:48 +00:00
apache-velocity Import apache-velocity-1.6.4 as wip/apache-velocity. 2010-09-09 00:57:34 +00:00
apachebench2
applewmproto
apstget
apvlv
ar7 added licensing information 2010-09-05 09:10:47 +00:00
arabeyes-qr-ttf
arandr Makefile using distutils, PLIST fixed egg-info 2011-01-08 13:28:24 +00:00
arcem-current Update to 20100819 snapshot. 2010-08-21 09:10:51 +00:00
archimedes updated to version 0.9.1 2010-09-05 08:57:37 +00:00
argouml Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
arista
arla-3.99.14
armagetronad Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
arora
arpdig
arphic-ukai-ttf Import arphic-ukai-ttf-0.2.20080216.1 as wip/arphic-ukai-ttf. 2011-03-09 19:57:15 +00:00
arphic-uming-ttf Import arphic-uming-ttf-0.2.20080216.1 as wip/arphic-uming-ttf. 2011-03-09 19:57:56 +00:00
artemis
ascii2binary Import ascii2binary-2.14 as wip/ascii2binary. 2011-04-13 10:27:32 +00:00
aspell-dictionaries
aspell-finnish
aspell-telugu
atftp
ati-xfree86-bin
ati-xfree86-bin-unstable
atlas Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
aubio Fix build with python2.6 for me. 2011-05-11 09:47:09 +00:00
auctex-current new package to follow auctex cvs repository 2010-10-13 13:06:29 +00:00
audacity-devel
audiere DragonFLy 2.8.2 is not supported yet. 2010-11-19 11:49:51 +00:00
audio-mml Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
audit-system
auto-complete-mode Bump revison to 1. 2010-10-14 04:40:21 +00:00
autocutsel
autoproject
autopsy
autossh
avida2
avifile-devel Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
awesome update to awesome-3.4.9 and fix incompatibilities with Cmake-2.8.4 2011-03-08 09:26:37 +00:00
awflwm
axe
axel
azureus
backintime
backplane
bagel Import bagel-2.0.0 as wip/bagel. 2011-05-09 21:02:50 +00:00
bakery
baler Hardcode ruby interpreter into script, like we want it in pkgsrc. 2011-05-15 16:10:22 +00:00
bashdb Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
bastard
bastille
beast
beryl
beryl-core
beryl-manager
beryl-plugins
beryl-settings
beryl-settings-bindings
beryl-settings-simple
bibliographer Update Makefile: Change E-mail Maintainer 2010-09-11 10:20:56 +00:00
bicho Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
bindgraph *** empty log message *** 2010-12-06 12:38:27 +00:00
biopython
bioruby
bird bird-1.3.0 2011-04-22 16:09:57 +00:00
bird6
bkchem Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
blam MASTER_SITES changed. 2010-12-23 13:00:16 +00:00
blassic Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
bleachbit Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
blueproxy
bluez-gnome
bluez-hcidump
bluez-hciemu
bluez-libs
bluez-utils
bmap
bmp-docklet
bnr2
boa added security patch. See http://secunia.com/advisories/39775/ 2010-12-18 22:42:52 +00:00
bochs-snapshot Update 2011-01-25 snapshot. 2011-02-12 11:22:29 +00:00
bodr * Add buildlink3.mk file. 2011-03-10 12:15:12 +00:00
bogomips
boinc
boinc-client
boinc-lib Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
boost-test-suite
bouml
Box2D Import Box2D-2.1.2 as wip/Box2D. 2010-08-10 07:58:32 +00:00
bridge-utils
briquolo
brltty
bscript
bsdbuild Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
bsfilter
bsh Import bsh-2.0b4 as wip/bsh. 2011-01-19 14:04:20 +00:00
bsnes
bsnmp
bss
bsvc
btscanner
bub-n-bros Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
bunny
busybox
bwm-ng
bwping Import bwping-1.3 as wip/bwping. 2011-05-10 12:24:33 +00:00
bzr Import bzr-2.3.0 as wip/bzr. 2011-03-01 21:49:59 +00:00
bzrtools Import bzrtools-2.3.0 as wip/bzrtools. 2011-03-01 21:52:00 +00:00
c-news Note DESTDIR task. 2011-03-30 20:14:25 +00:00
c2hs Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
cabal-install Upstream update to cabal-install-0.10.2 2011-05-11 00:25:07 +00:00
cacti Mention SA44133 2011-04-15 18:08:53 +00:00
cacti-plugin-arch
cacti-plugin-hostinfo
cacti-plugin-monitor
cacti-plugin-settings
cacti-plugin-thold
cacti-plugin-tools
cacti-plugin-weathermap
cacti-spine
cairo-java
calcurse
calcurse-2.8
callweaver + patch for res_monitor, which adds system command execution possibility after channel record. It can help with queue monitoring things (sending recorded files to e-mail, for example), because CW's Queue() function can not continue dialplan after hangup channel (there is no options), or i just do not know something :) 2011-01-19 10:12:30 +00:00
canna inputmethod/canna* for 3.7p3, intending to bump version from 3.6pl4. 2011-01-02 08:49:59 +00:00
canna-canuum inputmethod/canna* for 3.7p3, intending to bump version from 3.6pl4. 2011-01-02 08:49:59 +00:00
canna-dict use ${XMKMF} and ${MAKE} instead of xmkmf and make 2011-01-02 13:04:30 +00:00
canna-lib inputmethod/canna* for 3.7p3, intending to bump version from 3.6pl4. 2011-01-02 08:49:59 +00:00
canna-server inputmethod/canna* for 3.7p3, intending to bump version from 3.6pl4. 2011-01-02 08:49:59 +00:00
cartago Import cartago-1.4.0 as wip/cartago. 2010-08-03 18:53:20 +00:00
castget
cb2bib
cclive Update to 0.7.3.1 2011-05-13 07:36:24 +00:00
ccrtp
ccrypt
cddlib
cdogs
cdpr
cedet
cfengine
cgal Mention that pkgsrc cannot fetch from https servers. 2010-10-28 14:31:48 +00:00
cgit mention SA43633 2011-03-07 23:08:33 +00:00
cglib Import cglib-2.2 as wip/cglib. 2010-09-02 12:10:01 +00:00
cgterm Import cgterm-1.7b2 as wip/cgterm. 2011-02-18 11:39:11 +00:00
chbg
chemical-mime-data * use MASTER_SITE_SOURCEFORGE 2011-03-10 12:59:34 +00:00
chems
cherokee
chicken Update to 4.6.2 development snapshot. 2010-10-06 20:04:18 +00:00
Chinput
chmlib/patches
chora
chromium Add libXtst to fix build with modular x11 2011-05-02 20:39:10 +00:00
chrsh
cinelerra Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
cinelerra-cv Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
ciwiki Update ciwiki to 1.7.0.1. 2010-09-13 10:28:43 +00:00
cjk-latex
cjk-latex-wadalab
cl-alexandria Merged implementation of Common Lisp packages to mk/cl-package.mk. Added 2011-03-08 13:36:33 +00:00
cl-babel Merged implementation of Common Lisp packages to mk/cl-package.mk. Added 2011-03-08 13:36:33 +00:00
cl-bordeaux-threads Merged implementation of Common Lisp packages to mk/cl-package.mk. Added 2011-03-08 13:36:33 +00:00
cl-cffi Merged implementation of Common Lisp packages to mk/cl-package.mk. Added 2011-03-08 13:36:33 +00:00
cl-fad Merged implementation of Common Lisp packages to mk/cl-package.mk. Added 2011-03-08 13:36:33 +00:00
cl-flexi-streams Merged implementation of Common Lisp packages to mk/cl-package.mk. Added 2011-03-08 13:36:33 +00:00
cl-ppcre Merged implementation of Common Lisp packages to mk/cl-package.mk. Added 2011-03-08 13:36:33 +00:00
cl-ppcre-unicode Merged implementation of Common Lisp packages to mk/cl-package.mk. Added 2011-03-08 13:36:33 +00:00
cl-split-sequence Merged implementation of Common Lisp packages to mk/cl-package.mk. Added 2011-03-08 13:36:33 +00:00
cl-trivial-features Merged implementation of Common Lisp packages to mk/cl-package.mk. Added 2011-03-08 13:36:33 +00:00
cl-trivial-gray-streams Merged implementation of Common Lisp packages to mk/cl-package.mk. Added 2011-03-08 13:36:33 +00:00
cl-unicode Merged implementation of Common Lisp packages to mk/cl-package.mk. Added 2011-03-08 13:36:33 +00:00
cl-who Merged implementation of Common Lisp packages to mk/cl-package.mk. Added 2011-03-08 13:36:33 +00:00
clamassassin
clang update to recent snapshot (almost 2.9) 2011-03-31 11:20:10 +00:00
classgen Import classgen-1.4 as wip/classgen. 2010-08-02 21:40:41 +00:00
classic-mac-font-pack
clhep
clips
clisp CLISP team converted (or is converting) to Mercurial. 2011-05-02 10:41:57 +00:00
cloc
clockspeed
clustalx
clustershell
cmetrics Update Makefile 2011-04-23 20:02:41 +00:00
codeblocks Update to version 10.05. 2010-09-15 09:43:19 +00:00
coldfire
collectd new recommended options which should work on all platforms 2010-12-31 20:33:08 +00:00
color-theme Import color-theme-6.6.0 as wip/color-theme. 2011-02-18 09:48:30 +00:00
com_err
common-mml Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
commoncpp2
compare
compiz-gnome-current
converttomp3
cops
copytape
coq
couchdb-glib Repair build and version upgrade. 2010-12-23 21:58:30 +00:00
courierpassd
coxeter g++ requir version added 2010-08-08 10:57:18 +00:00
cpdup
cpm Use devel/dotconf. 2010-11-15 18:37:33 +00:00
creal
cream
crfpp
crm114
crrcsim Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
cryptcat
csoap
csp2b
cspchecker
css-mode
csstidy
ctemplate Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
cubature Import cubature-20101018 as wip/cubature. 2011-05-09 20:18:03 +00:00
cup Import java-cup-11a as wip/cup. 2010-08-03 18:55:39 +00:00
cvs-syncmail
cvs2darcs Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
cvs20hg
cvsanaly Fix DEPENDS 2010-08-21 14:19:58 +00:00
cvsnt Add TODO file to mention new vulnerability: CVE-2010-1326 2010-09-15 21:46:03 +00:00
cvsproxy
cvstrac
cvsup-mirror Fix a few documentation errors in MESSAGES. Remove referece to a 'delta' subdirectory I use internally to avoid confusion 2010-10-15 16:57:27 +00:00
cwebx Import cwebx-3.5 as wip/cwebx. 2011-01-17 22:07:32 +00:00
cxfreeze Update to version 4.2: 2010-08-11 17:27:26 +00:00
cycle
cygwin cygwin-binutils/PLIST had inconsistency, fix it. 2010-08-04 01:33:43 +00:00
cygwin-binutils (1) Bump the version 2.18 to 2.20 2010-10-14 03:53:53 +00:00
d-feet Update to 0.1.11, added PYVERSSUFFIX in PLIST 2010-08-13 16:41:29 +00:00
d4x
daphne
darcnes-svgalib
darcs Upstream update to darcs-2.5 2011-01-12 05:56:33 +00:00
darcs-to-git
dasm
datapipe
dates Some spaces to tabs in Makefile.in. 2010-12-23 13:22:32 +00:00
db1
dbf
dbus-explorer
ddate
debian_base
debian_glib
debian_gtk
debian_linux
debian_x11
debugger-git Improve HOMEPAGE. 2011-05-15 11:21:13 +00:00
deforaos-browser Packaged DeforaOS Browser 0.3.4 2011-03-03 07:28:11 +00:00
deforaos-configure
deforaos-editor Packaged DeforaOS Editor 0.2.0 2011-02-12 15:10:22 +00:00
deforaos-framer
deforaos-init
deforaos-keyboard DeforaOS Keyboard 0.0.2 is out 2010-08-27 13:37:34 +00:00
deforaos-libdesktop DeforaOS' libDesktop depends on Gtk+ 2.0 2011-02-24 13:21:10 +00:00
deforaos-libsystem Updated the PLIST 2010-12-31 17:47:04 +00:00
deforaos-locker Packaged DeforaOS Locker 0.0.1 2011-02-24 22:57:52 +00:00
deforaos-mixer
deforaos-panel Packaged DeforaOS Panel 0.2.6 2011-05-10 14:07:02 +00:00
deforaos-phone Packaged DeforaOS Phone 0.2.8 2011-03-17 11:28:48 +00:00
deforaos-player Packaged DeforaOS Player 0.1.3 2011-03-17 11:51:38 +00:00
deforaos-probe
deforaos-surfer Packaged DeforaOS Surfer 0.2.4 2011-03-17 11:15:37 +00:00
deforaos-todo Packaged DeforaOS Todo 0.1.2 2011-03-17 11:31:07 +00:00
depsolver
deskcribe
desktop-data-model
desktopcouch
desmume
despotify
detachtty Import detachtty-9 as wip/detachtty. 2011-02-20 20:58:40 +00:00
dfbpoint
dfbsee
dfu-util
dhex initial commit 2011-03-05 22:13:33 +00:00
di
diablo
dicom3tools
dict-est-rus
dict-freedict-eng-ara Import dict-freedict-eng-ara-0.0.2 as wip/dict-freedict-eng-ara. 2010-09-11 09:57:26 +00:00
dict-freedict-eng-fra Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
dikt Import dikt-2d as wip/dikt. 2010-08-29 14:13:36 +00:00
ding
dionysus remove duplicate for 2010-09-07 12:18:36 +00:00
dir2ogg
directfb Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
discident-glib gobject-introspection was imported as pkgsrc/devel/gobject-introspection. 2010-11-17 01:41:24 +00:00
discount Updated wip/discount to 2.0.9. 2011-05-11 08:52:05 +00:00
distbb minor clean-ups 2011-05-11 19:49:18 +00:00
distbb-current Use pkg_summary-utils from pkgtools/ 2011-05-11 19:43:10 +00:00
distella
ditz-commander Import ditz-commander-0.4 as wip/ditz-commander. 2011-03-18 05:39:35 +00:00
diveintopython
djview4 Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
dk-milter
dmd Initial import of dmd-2.0.51. 2011-02-16 17:10:41 +00:00
dmd-bin
dmt-ux
dmxproto
dnrd added licensing information 2010-09-05 09:10:47 +00:00
dns2tcp updated to version 0.5.2 of dns2tcp 2010-12-20 01:08:44 +00:00
dnscheck-engine
dnswalk
docbook-xsl-ko
docbook2X
doorman
dos2unix Update to 5.3 2011-04-29 22:54:29 +00:00
dotconf
dotproject
dovecot-antispam
dpic
dragbox
dri update to Mesa-7.8.2 2010-08-18 10:28:25 +00:00
drow
drpython
drumpiler
dsh
dspam
dssi
duali-data
duff Import duff-0.5 as wip/duff. 2011-04-13 09:42:44 +00:00
dumb Add mk/bsd.pkg.mk. 2010-12-24 18:39:35 +00:00
duplo
dvbsnoop
dvd2xvid
dwepcrack
dxmake
dzen
e-uae
e00pg
e2fsprogs
e3
e16keyedit Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
e16menuedit Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
e17
easymesh
eboard-extras
ecasound
ecb
eciadsl-usermode
ecl Sync. 2011-03-15 04:15:48 +00:00
eclipse It seems an additional call to "mkdir -p" is required in some environments 2011-03-01 08:35:26 +00:00
ecore Add missing libXcursor libXinerama libXtst buildlink3s 2011-05-12 10:28:15 +00:00
edb Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
edbus
edelib
editline
edje
edoc
efltk Some libpng-1.5 fixes (not completed). 2011-03-14 11:13:15 +00:00
efreet
eic
ejourn
ekg2 Update to newest stable version. Add support for readline frontend, 2011-02-26 17:38:20 +00:00
electricsheep Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
electricsheep-svn Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
elementary
elinks-libmm
elinks-snapshot
elk Import elk-1.1.4 as wip/elk. 2011-01-19 14:26:42 +00:00
emacs-current Upstream Add/Remove/Move files 2011-05-05 23:21:19 +00:00
emacs-current-nox11 | To: "Makoto Fujiwara" <makoto@users.sourceforge.net> 2010-07-31 13:30:31 +00:00
emacs-ditz Import emacs-ditz-0.5nb20110511 as wip/emacs-ditz. 2011-05-11 05:06:58 +00:00
emacs-jabber
emacs-pr-el
emacs-w3m-current (1) add bookmark.el{,c} (2) convert share/emacs/site-lisp into ${EMACS_LISPPREFIX} 2010-10-14 01:24:34 +00:00
emboss
emboss-base Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
emboss-domainatrix
emboss-emnu
emboss-hmmer
emboss-java
emboss-meme
emboss-mse
emboss-phylip
emboss-topo
emelfm2
emerald
emerald-themes
emirror
emovix
enet
enigma2000 Fix destdir installation. 2011-03-15 01:52:58 +00:00
enigmail
ent
entrance
eor Create bin/ before installing files to it. 2011-05-15 16:10:31 +00:00
eot
epeg Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
epsilon
erc
eric4
erlang Fix "java" and "unixodbc" options. 2011-04-13 21:08:17 +00:00
es40
es40-firmware
esdl
esmart Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
ethtool
ETL Upstream update to ETL-0.04.13 2011-03-21 12:45:33 +00:00
etoile Fix DEPENDS 2010-08-21 14:19:58 +00:00
etoile-core
etoile-services
eventlog
ever-note-mode emacs-evernote-mode requires ruby-gdbm package. 2011-04-24 11:45:48 +00:00
evilvte Fix man page installation. 2011-03-30 08:20:06 +00:00
evolution-couchdb Repair build and version upgrade. 2010-12-23 21:58:30 +00:00
evolution-rss Make evolution-rss build again and version update. 2010-12-23 20:24:39 +00:00
ewl
exact-image Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
exhume Import exhume-1.3.5 as wip/exhume. 2011-05-09 20:15:34 +00:00
expiretable
ezbounce
ezstream
fail2ban Import fail2ban-0.8.4 as wip/fail2ban. 2010-12-09 16:47:06 +00:00
fakenes
fakeroot
farsi-ttf
fasm Update fasm to 1.69.31 2011-02-19 01:54:44 +00:00
fasta
fastbit Initial commit of FastBit, version 1.2.0. 2010-10-11 23:33:57 +00:00
fastrpc
fbida Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
fbpager
fbpanel
fdm
feynhiggs Import feynhiggs-2.7.3 as wip/feynhiggs. 2011-04-02 22:32:34 +00:00
ffmpeg Enable cpu-detect on Darwin; use pkgsrc CFLAGS; pkglint clean-up 2011-01-14 11:10:54 +00:00
ffmpeg-snapshot
ficl Fix checksum. 2010-10-08 07:13:02 +00:00
filelight Fix build with gcc4.5 2011-02-17 10:10:20 +00:00
filepp
firebird
fireflysung-ttf
firefox Update to ffx 4.0rc1 2011-03-15 20:18:48 +00:00
firefox-wrapper
firehose
fish Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
flam3-svn Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
flasm
flc
flexdump
FlightCrew Remove a patch that is not suitable for DragonFly. 2011-05-14 06:35:39 +00:00
flimp Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
flimsel
flpsed
fltk13 Handle common options. 2010-10-05 22:02:43 +00:00
fluxspace
flv2mpeg4
flvmeta
flvstreamer
flyback
fnord Solaris needs some extra libraries 2011-01-16 17:49:52 +00:00
fnteditfs
fntsample FntSample is a tool that can be used to make font samples that show coverage 2011-02-14 21:22:59 +00:00
fontedit
FontManager
fonttosfnt
foo2zjs
fortunes-it
fprobe
fragrouter
freecell
freedict-tools-xsl
freedup
freej Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
freevo
freevrrpd
fricas Reorder sections so that VCS definitions could be easily excluded. 2011-05-01 17:30:06 +00:00
frobby
froggymicroblog Update Makefile: Change E-mail Maintainer 2010-09-11 10:10:34 +00:00
frozen-bubble
fs2open Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
fslsfonts
fstobdf
ftgl Add workaround for DragonFly 2.8.2. 2010-11-19 11:36:06 +00:00
ftpd-tls
ftpsesame
fuse-smbfs
fusefs-btfs
fusefs-sshfs
fusil No need to buildlink with py-Xlib, just DEPENDS. 2010-08-07 05:12:31 +00:00
fvcool
fvwm-crystal
fvwm1-tch
fxrays Import py26-fxrays-1.0 as wip/fxrays. 2011-01-17 22:03:21 +00:00
g21k-binutils Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
galib
galoisfieldarth Import GaloisFieldArithmetic-2006 as wip/galoisfieldarth. 2011-01-19 14:00:00 +00:00
gambas2
gambc
gaphor Import gaphor-0.15.0 as wip/gaphor. 2010-08-29 11:54:41 +00:00
gappa
gauche-dbd-pg
gauche-fastcgi
gcap Update to 0.0.8. 2011-03-27 00:30:39 +00:00
gcc42
gcc43
gconf-cleaner
gdal
gdal-docs
gdal-grass
gde
gDesklets Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
gDesklets-CornerXMMS HOMEPAGE and MASTER_SITES change. 2010-12-24 13:14:30 +00:00
gDesklets-rssgrab HOMEPAGE and MASTER_SITES change and version upgrade. 2010-12-24 13:16:24 +00:00
gDesklets-starterbar HOMEPAGE and MASTER_SITES change and version upgrade. 2010-12-24 13:16:24 +00:00
gdmap
gdvb
geant
gecko-sharp
gemrb Fix installation path for manpage. 2011-01-25 12:36:46 +00:00
genus2reduction Import genus2reduction-0.3 as wip/genus2reduction. 2011-05-09 20:20:10 +00:00
gerris
gf2x add dependency (math/ntl) 2011-01-24 09:02:03 +00:00
gfa
gfan
gfontview
gforge
gforth
ggz-gtk-client
ggz-gtk-games
ggz-server
ghc Upstream update to GHC 7.0.3 2011-05-06 02:30:25 +00:00
ghc-core PKGNAME should be ghc-core-* rather than hs-ghc-core-* because this isn't a library. 2011-01-06 15:56:24 +00:00
ghemical
ghostpcl-urwfonts-ttf
ghostscript (1) ghostscript 2011-03-30 12:49:24 +00:00
ghostscript-cidfonts (1) ghostscript 2011-03-30 12:49:24 +00:00
ghostscript-cidfonts-ryumin (1) Makefile 2011-05-14 03:08:47 +00:00
giggle
gimmie
gimp-high-pass-filter
git
givaro Update 3.3.3 -> 3.3.4 2011-01-17 10:08:40 +00:00
gjots2
gksu
gl Remove useless include files (cairo doesn't build if include/glew.h is 2010-09-15 20:38:06 +00:00
glade2-nognome
glfw Add dependencies. 2010-11-18 10:02:47 +00:00
glib-java
glibc Note a couple more security issues... I'll not add more 'til these are 2011-04-07 22:20:48 +00:00
glide3
glimmerm
glista
glkloader
glkterm
globulation2
gloox Remove unnecessary comments and bsd.prefs.mk inclusion. 2011-01-23 15:13:23 +00:00
glsl Import glsl-7.9 as wip/glsl. 2010-11-22 23:39:34 +00:00
glu update to Mesa-7.8.2 2010-08-18 10:29:56 +00:00
glulxe
glut Update to Mesa-7.8.2 2010-08-18 10:33:43 +00:00
glw Update to Mesa-7.8.2 2010-08-18 10:33:43 +00:00
glx-utils
gmc2mid
gmm
gmock Fix wip/gtest to devel/googletest 2011-05-13 10:58:41 +00:00
gmp-ecm
gmpc-lyricsplugin DESCR: 2011-02-27 15:32:10 +00:00
gmpc-wikipedia Initial import of gmpc-wikipedia-0.20.0: 2011-02-27 17:00:23 +00:00
gmrun Import gmrun-0.9.2 as wip/gmrun. 2010-11-06 17:08:02 +00:00
gnocchi
gnochm
gnokii Add install-devel target to install pkgconfig and header files. 2010-12-14 16:43:44 +00:00
gnomad2
gnome-activity-journal
gnome-alsamixer
gnome-bluetooth
gnome-chemistry-utils * Remove obsolete patch. 2011-05-10 10:59:56 +00:00
gnome-clipboard-daemon
gnome-do
gnome-jabber Add USE_TOOLS+=perl and remove some gtk2-engine files from PLIST. 2010-12-23 11:14:46 +00:00
gnome-js-common
gnome-keyring-sharp
gnome-paint
gnome-user-share
gnomebaker
gnomeradio
gnormalize
gnubg
GNUMail-pgp
gnump3d
gnunet
gnupoc-makesis
gnupod
goattracker
godura
goldwater Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
google-perftools
googlecl Update to 0.9.13 2011-05-04 12:37:19 +00:00
GoogleEarth
googlesharing Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
gosmore
gov2
gpac-devel Import gpac-0.4.6pre20110225 as wip/gpac-devel. 2011-02-25 02:04:07 +00:00
gpak
gpicview Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
gplbasic
gps
gpsdrive
gpx2shp
grake Import p5-grake-0.0.4 as wip/grake. 2010-11-17 10:45:07 +00:00
grandr
granule
graphmonkey
grass Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
grass-gully
grass-JockeyRidge
grass-Maas
grass-Slovakia
grass-Spearfish
grass-Spearfish-imagery
grass-WakeCounty
graveman
gretl Minimal PLIST correction. 2010-12-24 15:01:21 +00:00
grip Hopefully fixes CVE-2005-0706 2010-12-22 02:31:50 +00:00
grisbi Fix destdir support 2010-09-27 15:29:51 +00:00
groku
grsync
grub2
grub2-current Python command replacement. 2011-03-10 20:04:41 +00:00
GSCommander
gst-inspector update Makefile 2010-09-09 00:02:57 +00:00
gst-plugins0.10-farsight
gstat
gstreamer-plugins
gsview
gtg
gtimelog Import gtimelog-0.5.0 as wip/gtimelog. 2011-03-30 21:11:34 +00:00
gtk-gnutella-current
gtk-grdc
gtk-imonc added licensing information 2010-09-05 09:38:50 +00:00
gtk-qt-engine
gtk-server
gtk-theme-switch
gtk2-engines-dwerg
gtk2-engines-flat
gtk2-engines-galaxy Corrected MASTER_SITES and PLIST. 2010-12-24 11:55:23 +00:00
gtk2-engines-magicchicken
gtk2-engines-qt Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
gtk2-theme-pack
gtk2hs
gtkada
gtkaml
gtkfontsel
gtkglextmm Update Makefile: Change E-mail Maintainer 2010-09-11 10:10:34 +00:00
gtkglk
gtkhotkey Update Makefile: Change E-mail Maintainer 2010-09-11 10:10:34 +00:00
gtksourcecompletion Update Makefile: Change E-mail Maintainer 2010-09-11 10:10:34 +00:00
gts
gtuxnes
gtypist
guichan
guile-scsh Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
guilerxspencer Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
guitone Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
gune
gupnp-dlna Import gupnp-dlna-0.4.0 as wip/gupnp-dlna. 2010-10-05 12:43:53 +00:00
gupnp-ui Change E-Mail maintainer 2010-09-12 15:49:59 +00:00
gupnp-vala
gurlchecker
gvariant
gwget Add epiphany 2.29, 2.30 detection. (upstream is notified) 2010-12-25 13:58:57 +00:00
gwhois
gwibber Try to fix use prefix, but it fails now. 2011-02-26 11:56:25 +00:00
gwsmhg
gxconsole Update e-mail Maintainer 2010-09-11 21:45:51 +00:00
gxmessage Update e-mail Maintainer 2010-09-11 21:38:26 +00:00
gxmms2
habak
haddock Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
hanazono-ttf Changelog: 2010-10-18 21:09:26 +00:00
happy Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
haproxy use @RCD_SCRIPTS_SHELL@ 2011-04-12 20:40:34 +00:00
haproxy14 use @RCD_SCRIPTS_SHELL@ 2011-04-12 20:40:34 +00:00
harminv resolv edependency external package with harminv 2011-04-30 22:07:07 +00:00
hasciicam
haserl
haskell-mode
haydar-fonts
haze
hdhomerun_config Update hdhomerun_config to 20100828. 2011-03-15 20:27:50 +00:00
hdparm
heirloom-awk
heirloom-banner
heirloom-basename
heirloom-bdiff
heirloom-bfs
heirloom-cal
heirloom-calendar
heirloom-cat
heirloom-chmod
heirloom-chown
heirloom-cksum
heirloom-cmp
heirloom-col
heirloom-comm
heirloom-common
heirloom-copy
heirloom-cp
heirloom-csplit
heirloom-cut
heirloom-date
heirloom-dd
heirloom-diff3
heirloom-dirname
heirloom-doc
heirloom-du
heirloom-ed
heirloom-env
heirloom-factor
heirloom-file
heirloom-find
heirloom-fmt
heirloom-fold
heirloom-getconf
heirloom-getopt
heirloom-grep
heirloom-groups
heirloom-hd
heirloom-head
heirloom-hostname
heirloom-id
heirloom-join
heirloom-libcommon
heirloom-line
heirloom-listusers
heirloom-ln
heirloom-logins
heirloom-logname
heirloom-ls
heirloom-mesg
heirloom-mkdir
heirloom-mkfifo
heirloom-mknod
heirloom-more
heirloom-news
heirloom-nice
heirloom-nl
heirloom-nohup
heirloom-od
heirloom-paste
heirloom-pathchk
heirloom-pg
heirloom-pgrep
heirloom-pr
heirloom-printenv
heirloom-printf
heirloom-priocntl
heirloom-ps
heirloom-psrinfo
heirloom-pwd
heirloom-random
heirloom-renice
heirloom-rm
heirloom-rmdir
heirloom-sdiff
heirloom-sed
heirloom-setpgrp
heirloom-sh
heirloom-shl
heirloom-sleep
heirloom-sort
heirloom-split
heirloom-stty
heirloom-su
heirloom-sum
heirloom-sync
heirloom-tail
heirloom-tapecntl
heirloom-tar
heirloom-tcopy
heirloom-tee
heirloom-time
heirloom-touch
heirloom-tr
heirloom-tsort
heirloom-tty
heirloom-ul
heirloom-uname
heirloom-uniq
heirloom-units
heirloom-users
heirloom-wc
heirloom-what
heirloom-who
heirloom-whoami
heirloom-whodo
heirloom-xargs
heirloom-yes
heliodor
hengband
hepmc update category 2011-04-23 17:27:23 +00:00
heroes
hgsubversion hgsubversion is an extension for Mercurial that allows using Mercurial 2010-08-04 16:07:45 +00:00
hgview
hijra Update maintainer 2010-08-06 21:37:18 +00:00
hitori
hlint Upstream update to hlint-1.8.7 2011-02-17 15:09:03 +00:00
homebank
hplip Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
hplip3 Update to hplip-3.11.3a. 2011-05-13 00:38:17 +00:00
hpoj
hs-ansi-terminal Import hs-ansi-terminal-0.5.5 as wip/hs-ansi-terminal. 2011-01-06 15:23:07 +00:00
hs-base-unicode-symbols Upstream update to base-unicode-symbols-0.2.1.5 2011-05-10 12:19:14 +00:00
hs-binary
hs-binary-strict
hs-bindings-audiofile Upstream update to bindings-audiofile-0.1.0.2 2010-12-31 14:07:43 +00:00
hs-bindings-DSL Upstream update to bindings-DSL-1.0.10 2011-05-10 12:23:01 +00:00
hs-bindings-EsounD Import hs-bindings-EsounD-0.1.0.1 as wip/hs-bindings-EsounD. 2010-12-30 09:30:43 +00:00
hs-bindings-librrd
hs-bytestring-trie
hs-cabal Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
hs-cabal-query
hs-chalkboard
hs-chalkboard-viewer
hs-chunks
hs-colorize-haskell Import hs-colorize-haskell-1.0.1 as wip/hs-colorize-haskell. 2011-01-06 15:40:06 +00:00
hs-ConfigFile
hs-convertible
hs-cpphs Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
hs-curl
hs-data-accessor
hs-data-default Upstream update to data-default-0.2.0.1 2011-05-10 23:19:24 +00:00
hs-dataenc Upstream update to dataenc-0.13.0.4 2011-01-07 09:27:22 +00:00
hs-deepseq Upstream update to deepseq-1.1.0.2 2011-01-12 02:34:04 +00:00
hs-derive
hs-digest
hs-event-list
hs-explicit-exception
hs-explicit-iomodes Upstream update to explicit-iomodes-0.6.0.2 2011-05-10 23:32:06 +00:00
hs-FileManip
hs-GLURaw
hs-GLUT
hs-gnuplot
hs-hashed-storage Upstream update to hashed-storage-0.5.4 2011-01-07 09:39:19 +00:00
hs-hashed-storage3
hs-haskeline Upstream update to haskeline-0.6.3.2 2011-01-07 09:55:53 +00:00
hs-haskell-lexer Import hs-haskell-lexer-1.0 as wip/hs-haskell-lexer. 2011-01-06 15:30:33 +00:00
hs-haskell-src
hs-haskell-src-exts Upstream update to haskell-src-exts-1.10.1 2011-02-17 14:48:14 +00:00
hs-haskelldb
hs-haskelldb-hdbc
hs-haskelldb-hdbc-sqlite3
hs-haskore
hs-HCL
hs-HDBC
hs-HDBC-sqlite3
hs-hinstaller
hs-HList
hs-hopenssl Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
hs-hscolour Upstream update to hscolour-1.17 2011-02-17 14:53:10 +00:00
hs-HSH
hs-HsHyperEstraier
hs-hslogger
hs-hslogger-template
hs-HsOpenSSL
hs-HsSVN
hs-html
hs-HTTP fix buildlink3.mk 2011-01-07 10:08:05 +00:00
hs-HUnit
hs-hxt
hs-hxt-xpath
hs-iconv
hs-irc
hs-Lucu
hs-magic
hs-markov-chain
hs-midi
hs-mime
hs-MissingH
hs-mmap Upstream update to mmap-0.5.7 2011-01-07 09:31:57 +00:00
hs-mmap4
hs-monad-control Import hs-monad-control-0.2.0.1 as wip/hs-monad-control. 2011-05-10 12:56:48 +00:00
hs-monad-peel Import hs-monad-peel-0.1 as wip/hs-monad-peel. 2010-12-30 08:24:23 +00:00
hs-MonadCatchIO-transformers Upstream update to MonadCatchIO-transformers-0.2.2.0 2010-11-02 16:50:07 +00:00
hs-monoid-transformer
hs-mtl Added missing dependency on wip/hs-transformers 2011-01-14 06:52:43 +00:00
hs-network Upstream update to network-2.3.0.2 2011-05-10 12:49:54 +00:00
hs-network-bytestring
hs-non-negative Upstream update to non-negative-0.1 2010-11-02 16:07:11 +00:00
hs-numeric-prelude
hs-numeric-quest
hs-ObjectName
hs-OpenGL
hs-OpenGLRaw
hs-parallel
hs-parseargs
hs-parsec Upstream update to parsec-3.1.1 2011-03-03 01:45:43 +00:00
hs-pathtype Import hs-pathtype-0.5.2 as wip/hs-pathtype. 2010-11-02 16:56:21 +00:00
hs-pcre-light Upstream update to pcre-light-0.4 2011-01-06 15:47:29 +00:00
hs-primitive Import hs-primitive-0.3.1 as wip/hs-primitive. 2011-01-08 04:42:00 +00:00
hs-QuickCheck Upstream update to QuickCheck-2.4.1.1 2011-05-10 12:33:26 +00:00
hs-QuickCheck1
hs-readline
hs-regex-base Upstream update to regex-base-0.93.2 2011-01-07 10:11:58 +00:00
hs-regex-compat Upstream update to regex-compat-0.93.1 2011-01-07 10:15:58 +00:00
hs-regex-posix Upstream update to regex-posix-0.94.4 2011-01-07 10:14:13 +00:00
hs-regional-pointers Upstream update to regional-pointers-0.6 2011-05-10 23:35:47 +00:00
hs-regions Upstream update to regions-0.9 2011-05-10 13:03:16 +00:00
hs-safer-file-handles Upstream update to safer-file-handles-0.10 2011-05-10 23:38:03 +00:00
hs-semigroups Import hs-semigroups-0.5.0 as wip/hs-semigroups. 2011-05-10 23:24:47 +00:00
hs-SHA
hs-StateVar
hs-stm
hs-storable-record
hs-storablevector Upstream update to storablevector-0.2.7 2011-05-10 12:43:13 +00:00
hs-stream-fusion Import hs-stream-fusion-0.1.2.2 as wip/hs-stream-fusion. 2011-01-13 12:16:46 +00:00
hs-strict Import hs-strict-0.3.2 as wip/hs-strict. 2011-01-06 13:07:28 +00:00
hs-syb Import hs-syb-0.3 as wip/hs-syb. 2010-12-30 07:24:04 +00:00
hs-tagged Upstream update to tagged-0.2.2 2011-05-10 23:30:31 +00:00
hs-tagsoup
hs-tar
hs-Tensor
hs-terminfo Upstream update to terminfo-0.3.1.3 2011-01-07 09:48:12 +00:00
hs-text Seems like I imported a completely different package. Sorry. 2011-01-12 02:40:24 +00:00
hs-tfp
hs-time-http
hs-time-w3c
hs-transformers Upstream update to transformers-0.2.2.0 2010-11-02 16:11:16 +00:00
hs-uconv
hs-uniplate Upstream update to uniplate-1.6 2011-02-17 14:58:38 +00:00
hs-utf8-string
hs-utility-ht Upstream update to utility-ht-0.0.7 2011-05-10 12:36:51 +00:00
hs-vector Import hs-vector-0.7.0.1 as wip/hs-vector. 2011-01-08 04:59:25 +00:00
hs-x11
hs-x11-extras Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
hs-x11-xft
hs-zip-archive
hs-zlib Upstream update to zlib-0.5.3.1 2011-01-12 01:51:44 +00:00
ht2html Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
html2latex
httrack
hu-go
hunspell-it_IT
hydrogen-current
hyena
hylafax Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
hylafax-devel Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
i3
i3-devel Update to i3-tree-pr2 2011-03-11 12:16:10 +00:00
i3bar update to i3bar-0.6 2011-03-11 12:17:33 +00:00
i3lock
ibus-sogoupycc many of ibus packages were imported. 2010-08-07 02:41:34 +00:00
icc11 Update to version 11.1.075. 2010-12-19 19:30:28 +00:00
icecast
icecat Update to icecat 3.6.8 2010-08-23 13:17:05 +00:00
ices
ices-vorbis
icmpchat
idled
ifstat
igal
igowin
igraph
iisemulator
iksemel
ilbc-rfc3951 Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
ile
ilohamail
imagination Update Makefile: Change E-mail Maintainer 2010-09-11 12:33:10 +00:00
imonc added licensing information 2010-09-05 09:43:23 +00:00
InfoNES
innotop
interbase-docs
interchange
io
io-base
io-blowfish
io-cgi
io-continuedfraction
io-contracts
io-distributedobjects
io-editline
io-fnmatch
io-lzo
io-md5
io-random
io-range
io-rational
io-regex
io-securesocket
io-sha1
io-socket
io-sqldatabase
io-sqlite3
io-syslog
io-systemcall
io-thread
io-user
io-vm
io-zlib
iodine
ion3 Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
ipax0208font-ttf
ipfm
ipmitools
ipsvd
iptables
iptstate
ironpython
irrlicht Import irrlicht-1.7.2 as wip/irrlicht. 2011-02-24 15:12:08 +00:00
ised Import ised-2.2.2 as wip/ised. 2010-09-02 12:06:52 +00:00
islamic-menus Import islamic-menus-1.0.2 as wip/islamic-menus. 2010-09-07 00:59:04 +00:00
ispell-dictionaries
ispell-lietuviu
itask-ng
iText
iTextXML
itools Import itools-1.0 as wip/itools. 2010-09-07 00:54:21 +00:00
ja-freewnn-cvs Refer kinput2/options.mk issue on TODO 2011-05-14 01:04:13 +00:00
jabberd
jabberd-aim
jabberd2
jabref
jacorb-lib
jad
jakarta-log4j
jakarta-oro Import jakarta-oro-2.0.8 as wip/jakarta-oro. 2010-09-08 23:07:42 +00:00
jakarta-struts
jalview
jamaica
jason Import jason-1.3.3 as wip/jason. 2010-09-02 12:35:35 +00:00
java-asm
java-basicplayer update Makefile 2010-09-08 22:27:03 +00:00
java-bcel
java-BigDecimal
java-charva
java-crimson
java-frozenbubble
java-getopt
java-gnucrypto
java-gnujaf
java-gnujaxp
java-jbluez
java-jep
java-jlayer Import java-jlayer-1.0.1 as wip/java-jlayer. 2010-09-09 02:38:36 +00:00
java-jspeex Import java-jspeex-0.9.7 as wip/java-jspeex. 2010-09-08 22:17:08 +00:00
java-mp3spi Import java-mp3spi-1.9.4 as wip/java-mp3spi. 2010-09-08 22:31:33 +00:00
java-muse
java-swingwt
java-swt
java-tritonus-share Import java-tritonus-share-0.3.6 as wip/java-tritonus-share. 2010-09-09 03:13:56 +00:00
java-vorbisspi Import java-vorbisspi-1.0.3 as wip/java-vorbisspi. 2010-09-09 01:23:35 +00:00
java-xmlrpc
javascript-guide
javascript-reference
jbmgen I don't use these packages any more; drop MAINTAINERship. 2010-10-24 21:55:44 +00:00
jc
jdk15 Use ${LOWER_OPSYS} instead of hard-coded "netbsd". 2011-03-23 05:16:04 +00:00
jdk16 use same option name for JCE in Makefile and in options.mk 2011-01-11 17:10:43 +00:00
jemboss-standalone
jetty
jgloss
jlibtool Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
jmol Import jmol-12.0.12 as wip/jmol. 2011-01-17 22:05:28 +00:00
joomla
jp2a Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
jpgtn Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
jpicedt Import jpicedt-1.4.1-03 as wip/jpicedt. 2011-01-24 09:04:35 +00:00
jsl
json-c
jumpnbump
junit Import junit-4.8.2 as wip/junit. 2010-08-03 18:53:09 +00:00
jupp
just
jython Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
k3b Actually commit what I thought I had yesterday with further fix to do 2011-03-17 08:01:51 +00:00
k4dirstat
kacst-ttf
kaffe
kaffe-x11 Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
kahakai
kahua
kannel-gateway
kapital
katapult
kawa
kBuild NetBSD-current has dprintf(3), avoid conflict. 2011-02-17 13:14:51 +00:00
kde4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kde4-l10n-ar
kdeaccessibility4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdeadmin4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdeartwork4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdebase-runtime4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdebase-workspace4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdebase4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdebindings4-python Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdeedu4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdegames4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdegraphics4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdelibs4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdemultimedia4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdenetwork4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdepim-runtime4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdepim4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdepimlibs4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdeplasma-addons4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdesdk4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdetoys4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdeutils4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdewebdev4 Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
kdiff3
kgrab
kgraphviewer
kile
kino
kissme
klamav clamav moved from mail to security, adapt path. 2011-01-13 09:55:18 +00:00
kmymoney-devel Depend on latest kdelibs4 and fix PLIST. 2010-10-27 07:59:54 +00:00
kmymoney-svn
knutclient
koffice Avoid using env. Add missing dependency. Bump PKGREVISION. 2011-05-03 08:41:22 +00:00
koha
korelib
kpanta
kplayer
krusader
kuickshow Add desktopdb.mk. 2011-03-06 16:46:28 +00:00
kvirc Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
kxmleditor
kyotocabinet upgrade kyotocabinet from 1.2.51 -> 1.2.52, fixing solaris portability issues 2011-05-01 02:57:50 +00:00
kyototycoon Import kyototycoon-0.9.38 as wip/kyototycoon. 2011-04-19 11:23:30 +00:00
kyra
kyra2
l2tpd
LabPlot
labyrinth Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
lasem
lasi Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
last-exit
last.fm
lastfm-sharp
lat
lbt
lcalc
lcdproc
lcrack
ldapbrowser
ldapdns
ldapuseradd ldapuseradd addition. 2010-09-21 04:59:22 +00:00
lde
ldtp
ledger
leim-current
leo
lhs2tex Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
libanimal
libAppleWM
libargp
libassa
libatomic_ops
libavc1394
libbrahe
libbtctl
libburn Update to 1.0.6.pl00 2011-04-10 15:16:51 +00:00
libcli
libcm
libcmt
libcpu
libcuba Import libcuba-2.1 as wip/libcuba. 2011-03-25 18:43:42 +00:00
libdbglog Import libdbglog-1.5.1 as wip/libdbglog. 2010-08-31 08:46:10 +00:00
libdialog
libdisasm
libdjconsole
libdmx
libdshconfig
libdssialsacompat
libee Update to 0.3.1. 2011-04-18 13:42:33 +00:00
libepc
libestr Import libestr-0.1.0 as wip/libestr. 2011-04-14 09:07:40 +00:00
libexecinfo adding libexecinfo for use in Rubinius and MongoDB in pkgsrc wip 2011-02-14 01:00:30 +00:00
libexosip updated libexosip to 3.5.0 2011-02-19 17:14:58 +00:00
libfplll
libgadu update buildlink3.mk with rest of package 2010-11-18 14:57:06 +00:00
libGenome
libgeotiff
libghemical
libginac update file: added buildlink3.mk, remove TODO (finished task) 2011-03-08 10:48:53 +00:00
libgksu
libgksuui
libglade-java
libgnome-java
libgrass5
libgtask Update E-mail Maintainer 2010-09-10 20:52:47 +00:00
libgtk-java
libgtkhtml-java
libgtksourceviewmm
libgxim
libharu Update 2.2.0 -> 2.2.1 2011-01-17 09:26:28 +00:00
libhttpd
libipctdata
libisoburn Update to 1.0.8.00 2011-04-17 00:18:01 +00:00
libisofs Update to 1.0.8 2011-05-15 02:32:34 +00:00
libitl Import libitl-0.7.0 as wip/libitl. 2010-09-07 00:53:34 +00:00
libjingle
liblingoteach
liblo
liblognorm Update to version 0.3.1. 2011-04-18 13:41:31 +00:00
libmemcached Updated wip/libmemcached to 0.43. 2010-09-17 11:57:05 +00:00
libmpg123
libmrss Update E-mail Maintainer 2010-09-10 20:46:19 +00:00
libmusclecard
libneural
libnfo Removing Vim swap file 2010-11-06 11:03:01 +00:00
liboauth remove clone 2010-09-03 11:35:55 +00:00
libode Import libode-0.11.1 as wip/libode. 2011-01-24 09:40:28 +00:00
liboglappth
libopenmodeller
libopensync-plugin-moto
libopensync-plugin-palm Initial import of libopensync-plugin-palm-0.22: 2010-12-14 17:02:31 +00:00
libowl-av Update Maintainer 2010-09-19 08:26:05 +00:00
libpano12 Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
libpar2 Review comments incorporated. 2010-10-31 15:34:53 +00:00
libparsifal
libpcap-latest
libplist Initial import of libplist-1.3. 2011-02-28 17:54:12 +00:00
libpthread-stubs
libpusb
libraw1394
libreoffice3-bin Remove if line, java is essential for this version. 2011-05-10 12:56:08 +00:00
libscscp Import libscscp-0.6.1 as wip/libscscp. 2010-09-02 12:26:06 +00:00
libsidplay2
libslab
libsnappy improve lzf_compress() patch for NetBSD 2011-03-29 06:22:28 +00:00
libSoundTouch
libspt libspt-1.1, unprivileged secure pty library 2010-12-31 16:21:21 +00:00
libstacktrace Update HOMEPAGE 2011-03-16 13:06:16 +00:00
libtextcat Add Open/LibreOffice patches. 2011-02-17 13:19:17 +00:00
libticables
libticalcs
libtifiles
libtlen2
libtogl Import libtogl-2.0 as wip/libtogl. 2011-03-07 11:54:25 +00:00
libtorrent-rasterbar * Switch to 0.14.12. 2011-05-11 09:18:46 +00:00
libupnp Update libupnp to 1.6.13. 2011-03-18 04:39:47 +00:00
libuuid
libuxre
libvalhalla Import libvalhalla-1.0.1 as wip/libvalhalla. 2010-11-06 12:40:09 +00:00
libvc
libvg
libwbxml2-patched
libxc Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
libyubikey
libzdb
libzn-poly Import libzn-poly-0.9 as wip/libzn-poly. 2011-01-24 09:21:57 +00:00
libzrtpcpp Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
lidia Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
linbox Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
lincity-ng Update 2.0 from 1.1.2 2011-05-15 18:29:41 +00:00
lingoteach-lesson
lingoteach-ui
links-hacked Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
links1
linphone Add missing files to PLIST. 2011-03-15 01:49:14 +00:00
linux-acl
linux-attr
linux-ch
linux-chprofessional
linux-hotplug
linux-kbd
linux-kernel CVE-2011-1180 2011-03-26 04:20:57 +00:00
linux-kernel-headers
linux-makedev
linux-module-init-tools
linux-modutils
linux-modutils-old
linux-nfs-utils
linux-wlan-ng
linux24-kernel Mention http://secunia.com/advisories/42649/ 2010-12-20 13:16:17 +00:00
linux24-kernel-headers
linuxdcpp
linuxigd
linuxigd-current
linuxtv-dvb-apps
lirc Remove incorrect categories 2010-08-29 12:49:44 +00:00
lire
lissac
lives
llvm Sync. 2011-03-17 05:16:04 +00:00
llvm28 Taking over the llvm28 Port from adam.hoka@gmail.com as per his recommendation to add options required by the Rubinius package 2011-01-23 07:05:09 +00:00
lmfit Import lmfit-3.2 as wip/lmfit. 2011-03-07 12:01:16 +00:00
lmtp2nntp
logfmon-devel
logrotate previous commit removed handling of prefixes. This commit solves the problem 2011-04-22 07:59:42 +00:00
lorder
lpdsrv added support for Solaris 2011-01-18 21:13:53 +00:00
lrslib Import lrslib-042b as wip/lrslib. 2010-08-16 13:18:15 +00:00
lsw Import lsw-0.1 as wip/lsw. 2011-01-04 15:48:52 +00:00
ltrace
lua-filesystem
lua-lrexlib
lua-lrexlib-onig
lua-lrexlib-pcre
lua-lrexlib-posix
lua-pgsql
luacheia
luaposix
luasec
luasocket
lucene Import lucene-3.0.2 as wip/lucene. 2010-08-04 00:07:25 +00:00
lwc
lxde-common
lxmenu-data
lxmusic
lxpanel
lxrandr
lxterminal
lzs-lkm
mac-robber
macaulay2
mago
mailfilter
majordomo-devel
makedict
maloc Import maloc-1.4 as wip/maloc. 2011-03-25 18:11:59 +00:00
man
man-db
manatee
manifold Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
map-browse
mapnik Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
marathon-scenarios
marsyas Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
matanza
mathopd Change e-mail address. 2011-04-03 02:48:41 +00:00
mawk Update to 1.3.4-20100625 2010-08-25 20:00:00 +00:00
mawk-libc Import mawk-libc-1.3.4.20100625 as wip/mawk-libc. 2010-08-27 10:18:05 +00:00
mawk-onig fix: LIBS is used instead of MAKEFLAGS, original problem was fixed in upstream 2010-09-04 14:10:00 +00:00
mawk-rxspencer fix: LIBS is used instead of MAKEFLAGS, original problem was fixed in upstream 2010-09-04 14:10:00 +00:00
mawk-tre fix: LIBS is used instead of MAKEFLAGS, original problem was fixed in upstream 2010-09-04 14:10:00 +00:00
mawk-uxre fix: LIBS is used instead of MAKEFLAGS, original problem was fixed in upstream 2010-09-04 14:10:00 +00:00
maxima Update to Maxima 5.24.0. 2011-04-19 23:02:13 +00:00
mc-mp
mcabber
mcats
mcats-iodbc
mcpp
mcwm Update mcwm to 20110308: 2011-03-15 13:09:43 +00:00
mdadm
mdbtools
memcached14
memdump
memgrep
menu-cache
menumaker
Mesa
MesaLib
meta-tracker
metalog
metasploit add security issue 2011-02-13 06:51:18 +00:00
metatheme Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
mg-lsh
mic-paren Upstream update to mic-paren 3.8 2011-02-18 04:52:05 +00:00
microcom
microtetris
mid2gmc
milter-greylist-devel
mime-support
mimedefang
min12xxw
mingw-w64-binutils Import mingw-w64-binutils-2.20.1 as wip/mingw-w64-binutils. 2010-08-10 14:50:56 +00:00
mingw-w64-crt Import mingw-w64-crt-1.0 as wip/mingw-w64-crt. 2010-08-10 16:40:54 +00:00
mingw-w64-gcc Import mingw-w64-gcc-4.5.1 as wip/mingw-w64-gcc. 2010-08-11 14:33:10 +00:00
mingw-w64-headers Not sure which package is going to own common directories and symlinks. 2010-08-10 16:27:23 +00:00
mingw-w64-libgcc Import mingw-w64-libgcc-4.5.1 as wip/mingw-w64-libgcc. 2010-08-11 15:11:01 +00:00
minimalist
minisat2
miniupnpc
minuit2 o fixed PKGNAME 2011-04-25 23:03:16 +00:00
miracl
mirage Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
miro Change MAINTAINER e-mail address. 2011-05-11 09:23:40 +00:00
mixer.tk Corrected email. 2011-03-27 20:05:49 +00:00
mixmaster
mixnet Update Makefile 2011-01-24 09:07:10 +00:00
mixxx
mk Merged implementation of Common Lisp packages to mk/cl-package.mk. Added 2011-03-08 13:36:33 +00:00
mkcabal
mkdep
mksend
mlmmj
mlton-svn
mmdb Import mmdb-1.21 as wip/mmdb. 2010-08-08 19:09:31 +00:00
mmm-mode
mnogosearch
modplugplay
modular-xorg-xephyr Packaged Xephyr from the Modular X11 Server 1.6.5 2011-02-20 01:04:31 +00:00
moe upgraded to 1.4 2011-01-18 18:11:55 +00:00
MoleInvasion Fix libGL issue. 2011-05-14 22:28:47 +00:00
molmol Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
monajat
mongodb updates 2011-02-14 06:19:40 +00:00
monkey-bubble Reset maintainer. 2010-11-01 00:08:22 +00:00
mono-zeroconf
monodevelop
monotone-cvsimport Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
moonlight note additional security advosory 2011-04-08 20:03:58 +00:00
mopac7 Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
moregroupware
moto4lin
mozldap
mozplugger
mp3chop
mp3gain
mpc-el
mpg123 Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
mpg123-0.65
mpg123-nightly
mpg123-oss
mpg123-sun
mpgedit
mpi-ch Update to mpich2-trunk-r8294 snapshot. 2011-03-28 19:46:53 +00:00
mplayer
mplayer-mt Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
mplayer-share Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
mplayer-snapshot Initial import of mplayer-1.0rc3. Not extensively tested yet! 2010-09-07 21:52:27 +00:00
mplayer-snapshot-share Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
mplus-bitmap-fonts set LICENSE=mplusfont. 2011-05-08 12:34:37 +00:00
mplus-outline-fonts Welcome to M+ TESTFLIGHT 039 2011-05-15 02:16:49 +00:00
mppdec
mpq-tools
msworkbench
mtd-utils
mtf
mtop
mtrack
mu Initial import of mu-0.9.3 (packages fine, untested -- useful?) 2011-02-28 18:21:48 +00:00
mu-cite Import mu-cite-201006212322 as wip/mu-cite. 2011-04-07 03:01:53 +00:00
mu-conference Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
muine
multisync Add used by wip/multisync-syncml-moto comment. 2010-12-13 19:49:57 +00:00
multisync-backup
multisync-ldap Make multisync-ldap build again. 2010-12-13 18:12:46 +00:00
multisync-opie
multisync-palm Make multisync-palm build again. 2010-12-13 18:07:14 +00:00
multisync-syncml Add conflict w/ multisync-syncml-moto. 2010-12-14 17:13:07 +00:00
multisync-syncml-moto Import of Motorola SyncML module for Multisync. 2010-12-13 17:50:15 +00:00
mumble Import mumble-1.2.2 as wip/mumble. 2010-11-05 16:01:32 +00:00
munin-common Add comments to patches. 2011-03-03 13:53:56 +00:00
munin-master Fix paths and inclusion order. 2011-02-27 14:33:39 +00:00
munin-node Fix paths and inclusion order. 2011-02-27 14:33:39 +00:00
mupen64
mupen64-base
mupen64-plugin-input
mupen64-plugin-rsp
mupen64-plugin-sound
mupen64-plugin-video
muscle-cflexplugin
muscle-mcardplugin
muscle-pam
muscle-pkcs11
muscletool
musepack
mutt-ng
muttvcquery
mvsis
mwf-designer
mxallowd
mysql++
mysql-docs
mysql-workbench version++ 2010-08-13 10:43:53 +00:00
mysqltcl
mythtv
nag Import nag-2.3.6 as wip/nag. 2011-01-10 13:49:53 +00:00
nanoblogger
naqsh-ttf Import naqsh-ttf-20030228 as wip/naqsh-ttf. 2010-09-22 14:28:10 +00:00
natali
naturaldocs
nautilus-image-converter
nautilus-open-terminal Corrected distinfo and PLIST. 2010-12-23 10:48:48 +00:00
nautilus-search-tool Remove eel dependency, it was integrated into nautilus. 2011-01-13 09:56:05 +00:00
nautilus-sound-converter
nauty Import nauty-24r2 as wip/nauty. 2010-09-02 12:05:14 +00:00
navigatrix Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
nbfc
ncbi
ncbi-bin
ncbi-c++-lib Remove broken (and unused) buildlink3.mk file. 2011-03-06 16:39:14 +00:00
ncbi-lib
ncdu Make pkglint -W all happy 2011-02-27 08:33:49 +00:00
ncp
ncurses-devel
neb-cd512
neb-hdtoolbox
nehe-opengl-tutorials
nemo
nestra
net-quanta
net-tools
netbsd-awk Update to nbawk-20110509 2011-05-09 18:04:30 +00:00
netbsd-make Add LICENSE. 2010-12-01 22:40:36 +00:00
netclasses
netkit-base
netkit-routed
netkit-telnet
netkit-tftp
netlogo Import netlogo-4.1 as wip/netlogo. 2010-08-02 21:31:38 +00:00
netrik
netwib
netwox
netx
newsbeuter
nginx
nicotine+
nios2 Gcc (3.4.6) and binutils (2.15) are for ALTERA Nios2 2010-11-26 12:38:21 +00:00
nios2-binutils TODO was a little bit old. Delete file or delete line 2010-11-26 13:00:45 +00:00
nios2-gcc TODO was a little bit old. Delete file or delete line 2010-11-26 13:00:45 +00:00
njb-sharp
nmap Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
nmzmail
nnrpd
nodau Change MASTERSITES to upstream's URL. 2011-02-12 11:08:17 +00:00
node updated patch-ak from ewdafa/#pkgsrc 2011-05-07 20:32:15 +00:00
noip
noiptun
nomadio
noor
nos-tun
nostromo Nostromo aka nhttpd is a simple, fast and secure HTTP server. It 2011-03-24 16:27:50 +00:00
notify-sharp Change E-Mail maintainer 2010-09-12 15:49:59 +00:00
notmuch
nsc2ke Import nsc2ke-1.0.2 as wip/nsc2ke. 2010-09-02 11:57:25 +00:00
nsp Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
nullpop
nuppelvideo
nuttcp
nvidia-freebsd
nx-client-bin
nzbget Review-annotations implemented and version changed from 0.7.0-testing-r380 2011-01-02 10:38:53 +00:00
obmenu
ocamlgraph
ocamlweb
octave Now based on math/octave - but removed all libtool stuff 2010-10-21 20:25:03 +00:00
ode
ogmrip
ogre
olsrd Packaged olsrd 0.6.1 (untested) 2011-01-20 14:56:52 +00:00
OmegaT-bin Replace _ with . in version number. 2011-01-21 12:38:26 +00:00
OmegaT-devel-bin Update to 2.2.3 update 3. 2011-03-19 07:13:56 +00:00
omniORB
oneloop Import oneloop-1.1 as wip/oneloop. 2011-04-02 22:15:39 +00:00
oolite
oops use @RCD_SCRIPTS_SHELL@ 2011-04-12 20:40:34 +00:00
oorexx
opax
opd
open21xx
openal-soft Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
openaxiom Catch up. 2011-05-02 16:59:55 +00:00
openbabel Add DESCR. 2011-03-13 03:47:19 +00:00
openbgpd
openbgpd-as4byte
openbsd-input-usbtablet Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
openca
opencascade Add buildlink3.mk 2011-01-04 15:40:58 +00:00
opencobol Update to OpenCOBOL 1.1 2011-02-16 11:39:22 +00:00
openconnect note SA42381 2010-12-06 20:52:23 +00:00
opendchub
opendesktop-fonts
opendnssec OpenDNSSEC 1.3.0rc1: 2011-04-28 22:41:28 +00:00
OpenGLUT
openlogos
openmpi Update to openmpi-1.5.4a1r24568 2011-03-28 19:44:17 +00:00
openscep
opensips
opentracker-current
openttd-opengfx Bump opengfx version. 2010-09-25 16:54:38 +00:00
openttd-openmsx Fix the makefile, PLIST 2010-09-25 17:41:41 +00:00
openttd-opensfx Rework makefile a little bit, for future convinience, and consistency with 2010-09-25 17:11:20 +00:00
openvrml Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
opera Update opera to 11.10. 2011-04-13 12:38:45 +00:00
opera-devel note CVE-2010-2576 2010-08-12 22:35:57 +00:00
oqtplayer
or1ksim
orion
oslc Import oslc-3.0 as wip/oslc. 2010-09-02 12:08:48 +00:00
osmose
othman
outguess
overgod
owl Mention potential vuln from CVE-2010-2725 2010-08-14 16:01:08 +00:00
oww-nox11
oxim catch up to ftp server re-layout. 2011-04-13 13:58:47 +00:00
oxim-filter catch up to current ftp server layout. 2011-04-13 14:00:26 +00:00
oxim-setup catch up to current ftp server layout. 2011-04-13 14:00:26 +00:00
oxygen-icons Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
ozymandns updated MASTER_SITES 2011-03-02 18:36:02 +00:00
p2kmoto
p3nfs
p5-Aceperl
p5-AI-NeuralNet-Simple
p5-AI-Prolog
p5-Algorithm-Cluster
p5-Apache-AuthenNTLM I don't use these packages any more; drop MAINTAINERship. 2010-10-24 21:55:44 +00:00
p5-Apache2-ModSSL
p5-App-cpanminus
p5-Arch
p5-Astro-SpaceTrack
p5-Authen-Htpasswd
p5-AxKit Fix DEPENDS 2010-08-22 05:52:18 +00:00
p5-B-Deobfuscate
p5-Barcode-Code128
p5-Bit-Vector-Minimal
p5-Cache-Mmap
p5-Catalyst-Engine-Apache
p5-Catalyst-Log-Log4perl
p5-Catalyst-Model-CDBI
p5-Catalyst-Model-DBIC
p5-Catalyst-Model-DBIC-Plain
p5-Catalyst-Model-LDAP
p5-Catalyst-Plugin-Authentication-CDBI
p5-Catalyst-Plugin-Authentication-Store-Htpasswd
p5-Catalyst-Plugin-Authorization-ACL
p5-Catalyst-Plugin-Cache-FileCache
p5-Catalyst-Plugin-DefaultEnd
p5-Catalyst-Plugin-Email FIX: DEPENDS on s,mail/p5-Email-MIME-Creator,mail/p5-Email-MIME, 2010-08-21 14:14:35 +00:00
p5-Catalyst-Plugin-FillInForm
p5-Catalyst-Plugin-FormValidator
p5-Catalyst-Plugin-HTML-Widget
p5-Catalyst-Plugin-Pluggable
p5-Catalyst-Plugin-Prototype
p5-Catalyst-Plugin-Session-FastMmap FIX: DEPENDS on s,wip/p5-URI-Find,www/p5-URI-Find, 2010-08-21 14:16:36 +00:00
p5-Catalyst-Plugin-Session-State-URI FIX: DEPENDS on s,wip/p5-URI-Find,www/p5-URI-Find, 2010-08-21 14:16:36 +00:00
p5-Catalyst-Plugin-Session-Store-CDBI
p5-Catalyst-Plugin-Session-Store-DBI
p5-Catalyst-Plugin-Singleton
p5-Catalyst-Plugin-Static
p5-Catalyst-Plugin-SubRequest
p5-Catalyst-Plugin-Unicode-Encoding
p5-Catalyst-Plugin-XMLRPC
p5-CGI-Application-Dispatch
p5-CGI-Application-Plugin-AutoRunmode
p5-CGI-Application-Plugin-ConfigAuto
p5-CGI-Application-Plugin-DevPopup
p5-CGI-Application-Plugin-ErrorPage
p5-CGI-Application-Plugin-FillInForm
p5-CGI-Application-Plugin-Forward
p5-CGI-Application-Plugin-LogDispatch
p5-CGI-Application-Plugin-Redirect
p5-CGI-Application-Plugin-Session
p5-CGI-Application-Plugin-Stream
p5-CGI-Application-Plugin-TT
p5-CGI-Application-Plugin-ViewCode
p5-CGI-Application-Server
p5-CGI-Application-Standard-Config
p5-CGI-Untaint
p5-CGI-Untaint-date
p5-CGI-Untaint-email
p5-Class-Date
p5-Class-DBI-AsForm
p5-Class-DBI-FromForm
p5-Class-DBI-Loader
p5-Class-DBI-Loader-Relationship
p5-Class-DBI-Pager
p5-Class-DBI-Plugin-RetrieveAll
p5-Class-DBI-Plugin-Type
p5-Class-DBI-SQLite
p5-Class-DBI-Sweet
p5-Class-Virtual
p5-Config-Simple
p5-CPANPLUS
p5-Crypt-CAST5 Drop mntner-ship. 2010-11-05 04:18:19 +00:00
p5-Crypt-Serpent
p5-Data-ObjectDriver
p5-Data-Properties
p5-Data-Random Add user-destdir support. 2010-11-12 21:43:03 +00:00
p5-Date-Range
p5-DBIx-Easy
p5-DBIx-Simple
p5-Devel-Profiler
p5-Email-AddressParser Drop mntner-ship. 2010-11-05 04:18:19 +00:00
p5-Encode-compat
p5-Encode-IMAPUTF7 Drop mntner-ship. 2010-11-05 04:18:19 +00:00
p5-Exception-Base
p5-Exception-Class-TryCatch
p5-Exporter-Tidy
p5-File-Map
p5-File-ReadBackwards
p5-Frontier-RPC Reset maintainer. 2010-11-01 00:08:22 +00:00
p5-GD-Barcode
p5-Getopt-GUI-Long
p5-GPS-Garmin
p5-Gtk2-Spell Import p5-Gtk2-Spell-1.03 as wip/p5-Gtk2-Spell. 2010-11-13 12:52:04 +00:00
p5-Hash-AsObject
p5-Hash-MultiValue
p5-HTML-CalendarMonthSimple
p5-HTML-GenerateUtil
p5-HTML-Latex
p5-HTML-TableContentParser
p5-HTML-TagCloud
p5-HTML-WebMake
p5-HTML-Widget
p5-HTTP-BrowserDetect
p5-Image-EXIF
p5-Imager Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
p5-IO-Lambda
p5-JavaScript-SpiderMonkey
p5-Libencode-Arabic Import p5-Encode-Arabic-1.8 as wip/p5-Libencode-Arabic. 2010-09-07 00:56:29 +00:00
p5-Lingua-PT-Stemmer
p5-Lingua-Stem
p5-Lingua-Stem-Fr
p5-Lingua-Stem-It
p5-Lingua-Stem-Ru
p5-Lingua-Stem-Snowball-Da
p5-Lingua-Stem-Snowball-No
p5-Lingua-Stem-Snowball-Se
p5-Lingua-StopWords
p5-Lingua-Translate
p5-Log-Dispatch-Array
p5-MARC-Charset
p5-MARC-XML
p5-MasonX-Apache2Handler
p5-Math-FixedPrecision
p5-Math-IntervalSearch
p5-Maypole
p5-MediaWiki-API
p5-Metadata
p5-MKDoc-XML
p5-MMapDB
p5-Module-Pluggable-Fast
p5-Module-Pluggable-Ordered
p5-Module-Starter-Plugin-CGIApp
p5-Mojo
p5-mozldap
p5-Net-DBus-GLib This package also needs p5-glib2. 2010-11-13 12:49:55 +00:00
p5-Net-Delicious
p5-Net-IP-Match-Regexp
p5-Net-PcapUtils
p5-Net-SenderBase
p5-Net-SMTP-TLS
p5-Net-Syslog
p5-Net-Twitter-Lite Update Net::Twitter::Lite to the latest stable version (0.10003). 2011-01-20 20:33:08 +00:00
p5-Net-UPnP Import p5-Net-UPnP-1.4.2 as wip/p5-Net-UPnP. 2010-10-03 12:56:43 +00:00
p5-Net-Whois-RIPE
p5-News-Newsrc
p5-NNTPClient
p5-PDF-Reuse
p5-PDF-Reuse-Barcode
p5-PDF-Table
p5-PDL
p5-Petal
p5-Picasa
p5-Plucene
p5-Plucene-Plugin-Analyzer-SnowballAnalyzer
p5-PluceneSimple
p5-Pod-Constants
p5-Pod-Xhtml
p5-POD2-IT
p5-POSIX-strptime
p5-qt3
p5-Quota
p5-RTF-Writer
p5-Spread
p5-Startup
p5-String-Similarity
p5-Sub-Recursive
p5-Sub-WrapPackages
p5-Syntax-Highlight-Perl-Improved
p5-Sys-Syslog
p5-Task-Catalyst
p5-Template-Plugin-Class
p5-Template-Provider-Encoding
p5-Term-Encoding
p5-Test-Assertions-TestScript
p5-Test-WWW-Mechanize-CGIApp
p5-Test-XML
p5-Text-ASCIITable
p5-Text-CHM
p5-Text-Context
p5-Text-EtText
p5-Text-German
p5-Text-Hatena
p5-Text-Quote Fix DEPENDS 2010-08-21 14:40:44 +00:00
p5-Text-Trim
p5-Text-VimColor
p5-TheSchwartz
p5-Tie-DB_Lock
p5-Time-Piece-Range
p5-Tk-TableMatrix
p5-Unicode-CheckUTF8
p5-Unicode-Collate Drop mntner-ship. 2010-11-05 04:18:19 +00:00
p5-Unicode-Normalize
p5-UNIVERSAL-exports
p5-URI-Find-Rule
p5-URI-Title
p5-WebService-Audioscrobbler Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
p5-WebService-CIA
p5-WWW-YouTube-VideoURI
p5-XML-DOM-XPath
p5-XML-DT
p5-XML-DTDParser
p5-XML-Writer-Simple
packman
pagetools
pal Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
palp
pam-pkcs11
pam-pop3
pam-pwdfile
pam-yubico
pan2-git
panda Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
pandoc
paperbox
parallel Upgrade to 20110322 2011-04-17 11:38:32 +00:00
paraview Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
parcellite
parted
partonevolution Import partonevolution-1.1.2 as wip/partonevolution. 2011-03-22 13:27:55 +00:00
pasmo
passepartout
pbbuttonsd
pcp Import pcp-2.2 as wip/pcp. 2010-09-02 11:56:15 +00:00
pcsx
pcsx-df
pdb2ldif
pdf2djvu Update to 0.7.7 2011-04-17 00:37:04 +00:00
pdf2svg
pdfedit Set LICENSE. 2011-01-06 23:00:58 +00:00
pdfgrep Import pdfgrep-1.1 as wip/pdfgrep. 2011-01-21 15:03:20 +00:00
pdfminer Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
pdfmod Add upstream bug report URLs and update patch-ab to a version that's 2011-01-06 21:12:48 +00:00
pdftk
pdnsd upgraded to pdnsd-1.2.8 2010-09-05 11:26:37 +00:00
pdq
pear-channel-phpunit Import php5-pear-channel-phpunit-2010.05.12 as wip/pear-channel-phpunit. 2010-08-25 07:59:44 +00:00
pear-DB_DataObject user-destdir ready. 2010-09-02 00:40:29 +00:00
pear-HTML_Table
pear-HTTP_Client user-destdir ready. 2010-08-25 08:22:32 +00:00
pear-HTTP_Request2
pear-Math_BigInteger
pear-Net_URL2
pear-XML_Parser
pessulus
petsc
pfe Update to PFE 0.33.71 2010-10-08 09:15:43 +00:00
pgp6
phlib Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
phonon Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
phonon-backend-gstreamer Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
phonon-backend-xine Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
php-doc
php-doc-ar
php-doc-br
php-doc-de
php-doc-en
php-doc-es
php-doc-fi
php-doc-fr
php-doc-hk
php-doc-hu
php-doc-it
php-doc-ja
php-doc-kr
php-doc-nl
php-doc-ro
php-doc-ru
php-doc-sk
php-doc-sl
php-doc-sv
php-dtrace
php-fileinfo Extension is compiled into lang/php53 already, so making this PHP 5.2 only. 2010-09-17 08:15:10 +00:00
php-fpm - startup script 2010-12-31 17:53:45 +00:00
php-http
php-igbinary
php-memcached Updated wip/php-memcached to 1.0.2. 2010-09-17 12:01:44 +00:00
php-oauth
php-recode
php-suhosin
php-tclink
php-tidy
php-xcache Maintainer-change as discussed here: 2011-01-02 09:47:21 +00:00
PHPUnit pear fragments had been updated in pkgsrc/lang/php. 2010-08-29 06:10:25 +00:00
picasm
picocom
picosat
picprog
pidgin-festival Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
pidgin-guifications
pidgin-rhythmbox
pidgin-sipe Update to pidgin-sipe-1.10.1. (should be imported to pkgsrc after Q3) 2010-09-28 07:49:42 +00:00
pike
pike-core Moved libnettle to security/nettle 2011-04-26 09:24:52 +00:00
pike-gdbm
pike-Gettext
pike-Gz
pike-mime
pike-Pipe
pike-Regexp-PCRE
pinball
pinkpony Import pinkpony-1.2.1 as wip/pinkpony. 2010-11-18 13:44:03 +00:00
pizza
pjproject
pkg_conflicts use pkgtools/pkg_summary-utils instead of wip/ 2011-05-11 20:45:40 +00:00
pkg_fake
pkg_get
pkg_online-client use pkgtools/pkg_summary-utils instead of wip/ 2011-05-11 21:34:47 +00:00
pkg_online-server Update pkg_online client to 0.12.1 2011-03-19 15:12:15 +00:00
pkg_rmleaves
pkg_status documentation for ! in the output of pkg_status -b 2011-01-18 10:21:46 +00:00
pkg_summary-utils place MAKE_PROGRAM= above .include "../../mk/bsd.pkg.mk" 2011-05-11 19:21:22 +00:00
pkgin Switched to SF.net 2011-03-05 23:59:38 +00:00
pkgmanager
pkgnih use pkgtools/pkg_summary-utils instead of wip/ 2011-05-11 22:20:52 +00:00
pkgnih-current fix #!/usr/bin/env issue 2011-05-15 08:14:05 +00:00
plasti Import plasti-1.0.0 as wip/plasti. 2011-01-22 13:14:48 +00:00
plconfig Initial import of plconfig. 2010-12-14 22:30:18 +00:00
plod
plplot Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
plugger Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
pmars
pmk Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
png2ico
pngnq
pnmcurve
poco Have the package correctly handle the case where expat (and perhaps others) 2011-01-25 05:38:29 +00:00
poco-data update with suggestions from Thomas Klausner. 2011-01-23 23:23:01 +00:00
poco-data-mysql update with suggestions from Thomas Klausner. 2011-01-23 23:23:01 +00:00
poco-data-odbc update with suggestions from Thomas Klausner. 2011-01-23 23:23:01 +00:00
poco-data-sqlite update with suggestions from Thomas Klausner. 2011-01-23 23:23:01 +00:00
pointfree Upstream update to pointfree-1.0.4.1 2011-03-03 01:49:21 +00:00
pointless
polipo
polylib Import polylib-5.22.5 as wip/polylib. 2011-05-09 20:35:37 +00:00
pop-before-smtp
pop3.proxy Fix path to clamav. 2011-03-06 15:56:11 +00:00
postal2-mpdemo-bin
postgresql-uniqueidentifier
postoffice
postr
pound
PPower4
ppp
ppr
premake
probcons Import probcons-1.12 as wip/probcons. 2011-01-22 13:23:48 +00:00
probe
procps
progreiserfs
prosody
protobuf Replace "==" with "=" in configure script. 2010-12-12 21:15:29 +00:00
prover9 Clean up patches and remove subshells. 2011-01-16 17:20:53 +00:00
proxychains
proxyknife tweaked a bit for Solaris 2011-01-19 20:49:02 +00:00
prozilla Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
prtunnel
psh Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
pstreams Import pstreams-0.7.0 as wip/pstreams. 2011-02-24 19:12:20 +00:00
psybnc
pt-cyrillic-ttf The PT Serif has been released one year later. 2010-12-30 10:31:31 +00:00
pts
ptunnel
pudb
pxlib
pxview
py-addons
py-aipy Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-albatross Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
py-algopy update to 0.3.0 2011-04-25 21:00:36 +00:00
py-amqplib
py-anyjson Update Makefile 2010-09-10 20:37:06 +00:00
py-aopython
py-arabic Import py26-arabic-0.2 as wip/py-arabic. 2011-01-17 22:00:14 +00:00
py-asciidata
py-ase Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-aspects
py-aspell
py-aspyct Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-astropysics Update category 2011-04-24 18:42:08 +00:00
py-Beaker
py-behaviour
py-bidict Import py26-bidict-0.1.1 as wip/py-bidict. 2011-04-02 22:36:43 +00:00
py-bigfloat Import py26-bigfloat-0.2.1 as wip/py-bigfloat. 2010-09-06 13:54:52 +00:00
py-bip Import py26-bip-0.5.4 as wip/py-bip. 2011-04-02 22:40:52 +00:00
py-biskit Import py26-biskit-2.3.1 as wip/py-biskit. 2010-08-09 21:40:36 +00:00
py-bitarray Import py26-bitarray-0.3.5 as wip/py-bitarray. 2011-03-20 22:48:46 +00:00
py-bitstring Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-bottleneck Import py26-bottleneck-0.1.0dev as wip/py-bottleneck. 2011-04-02 22:35:05 +00:00
py-Brenda
py-brian Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-bsddb Oops - close trailing bracket for regex (worked with unclosed o_O, but DTRT). 2011-04-04 11:12:47 +00:00
py-buildbot Update to buildbot 0.8.3p1. Edit Makefile so it pkglint say it looks ok. 2011-05-10 18:32:50 +00:00
py-buildslave Update to buildbot-slave 0.8.3. Edit Makefile so pkglint say it looks ok. 2011-05-10 18:34:20 +00:00
py-bytecodeassembler
py-calverter Import py26-calverter-1.5 as wip/py-calverter. 2010-09-02 14:18:10 +00:00
py-captcha Change Maintainer 2010-09-08 23:21:32 +00:00
py-cclib Import py26-cclib-1.0 as wip/py-cclib. 2010-09-02 12:20:27 +00:00
py-ccuracy
py-cdecimal Import py26-cdecimal-2.2 as wip/py-cdecimal. 2011-03-20 23:19:17 +00:00
py-chaco Import py26-chaco-3.3.1 as wip/py-chaco. 2010-08-09 21:46:17 +00:00
py-chaintipy Import py26-chiantipy-0.1 as wip/py-chaintipy. 2010-08-09 21:44:59 +00:00
py-chaos Import py26-chaos-1.0 as wip/py-chaos. 2011-03-20 23:17:13 +00:00
py-chm
py-cinfony Import py26-cinfony-1.0 as wip/py-cinfony. 2010-08-09 21:39:11 +00:00
py-cjson
py-clics Import py26-clics-0.1.0 as wip/py-clics. 2011-01-24 09:31:55 +00:00
py-Climate
py-clnum Import py26-clnum-1.6 as wip/py-clnum. 2010-09-06 13:49:09 +00:00
py-clonedigger
py-codepy
py-cogent
py-configobj Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-construct Import py25-construct-2.04 as wip/py-construct. 2011-05-15 04:18:09 +00:00
py-corebio Import py26-corebio-0.5.0 as wip/py-corebio. 2011-03-20 23:35:10 +00:00
py-cosmolopy
py-couchdb
py-cryptoidlib Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-csa Import py26-csa-0.0.1 as wip/py-csa. 2011-03-20 22:25:47 +00:00
py-cscope
py-csp
py-cvf Import py26-cvf-0.2.0 as wip/py-cvf. 2011-03-20 23:23:02 +00:00
py-CVSToys
py-cvxopt Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
py-daemon Update to 1.5.5 2010-08-16 12:18:16 +00:00
py-dana Import py26-dana-0.3.1 as wip/py-dana. 2011-03-20 22:51:12 +00:00
py-datarray Import py26-datarray-0.0.3 as wip/py-datarray. 2010-07-31 12:19:28 +00:00
py-dbglog Import py26-dbglog-1.5.0 as wip/py-dbglog. 2010-08-31 08:59:54 +00:00
py-dbutils
py-decorator Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-decoratortools
py-delny Import py26-delny-0.4.1 as wip/py-delny. 2011-04-27 22:22:34 +00:00
py-dexml
py-diffpy-structure
py-diffpy_pdffit2 Import py26-diffpy-pdffit2-1.0-r3067-20090410 as wip/py-diffpy_pdffit2. 2011-01-22 13:47:34 +00:00
py-DirectoryStorage
py-distutils-extra Update to 2.26. 2011-05-11 09:26:35 +00:00
py-divisi2
py-divmod-axiom
py-divmod-epsilon
py-divmod-mantissa
py-divmod-vertex
py-django-diario
py-django-helmholtz Import py26-django-helmholtz-0.1.0 as wip/py-django-helmholtz. 2011-03-20 21:59:19 +00:00
py-django-nose wip-changes: 2010-08-16 10:57:50 +00:00
py-django-quran Import py26-django_quran-0.1 as wip/py-django-quran. 2010-08-02 21:39:51 +00:00
py-django-tagging Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-djvulibre b uildlink3.mk is not needed. 2011-05-07 21:44:02 +00:00
py-djvusmooth Update MAINTAINER e-mail address. 2011-05-07 21:35:41 +00:00
py-DNS
py-duali Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-EditObj2 Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-embedc
py-emmsa Import py26-emmsa-0.0.3 as wip/py-emmsa. 2011-05-09 21:20:04 +00:00
py-empy Import py26-empy-0.1.2 as wip/py-empy. 2011-01-24 09:52:24 +00:00
py-errorhandler Import py26-errorhandler-1.1.1 as wip/py-errorhandler. 2010-08-31 18:57:49 +00:00
py-event
py-eventlet
py-extremes
py-eyed3
py-ezPyCrypto
py-fastaudio
py-fdm Import py26-fdm-0.3.1 as wip/py-fdm. 2011-05-09 21:01:55 +00:00
py-fftw Import py26-fftw-0.2 as wip/py-fftw. 2010-09-02 12:29:46 +00:00
py-figleaf Import figleaf-0.6.1 as wip/py-figleaf. 2010-08-04 16:22:26 +00:00
py-fipy Import py26-fipy-2.1.2 as wip/py-fipy. 2011-05-09 20:30:18 +00:00
py-fitsarray Import py26-fitsarray-0.2.0 as wip/py-fitsarray. 2011-03-20 22:21:46 +00:00
py-flakes
py-Fnorb
py-Fnorb-docs
py-fs
py-fuzzpy Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-fwarp Import py26-fwrap-0.1.1 as wip/py-fwarp. 2011-05-09 20:39:37 +00:00
py-fyzz Import py26-fyzz-0.1.0 as wip/py-fyzz. 2010-07-31 13:46:39 +00:00
py-gaphas Import py26-gaphas-0.7.0 as wip/py-gaphas. 2010-08-29 10:49:44 +00:00
py-gcalendarsync
py-gccxml Import py26-gccxml-1.0.0 as wip/py-gccxml. 2011-05-09 20:13:21 +00:00
py-generateDS Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
py-Genetic
py-gettext-tools
py-gevent
py-gist Import py26-gist-1.5.28 as wip/py-gist. 2011-03-07 10:45:51 +00:00
py-gnm Import py26-gnm-0.1 as wip/py-gnm. 2011-01-24 09:01:26 +00:00
py-gnucash Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
py-gpaw Import py26-gpaw-0.7.2.6974 as wip/py-gpaw. 2011-03-07 10:12:56 +00:00
py-greenlet Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-griddata Import py26-griddata-0.1.2 as wip/py-griddata. 2011-04-02 22:38:36 +00:00
py-grpy Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-gsl Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-gtk2-docs
py-gts
py-guppy Import py26-guppy-0.1.9 as wip/py-guppy. 2010-08-17 12:12:34 +00:00
py-hcluster Import py26-hcluster-0.2.0 as wip/py-hcluster. 2010-08-09 21:31:41 +00:00
py-hfk Import py26-hfk-1.0 as wip/py-hfk. 2011-01-22 16:16:43 +00:00
py-httplib2 Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-igraph Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-imgSeek
py-Impacket
py-ipaddr Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-ipython Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-jabber-aimt
py-jabber-icqt
py-jabber-msnt
py-jabber-palaver
py-jabber-proxy65
py-jabber-punjab
py-jabber-yahoo-transport
py-jabberbot update to 0.12 -- no change log available. 2011-03-11 05:25:20 +00:00
py-joblib Import py26-joblib-0.4.6 as wip/py-joblib. 2011-03-20 23:33:48 +00:00
py-julio
py-kaa-base
py-kaa-imlib2
py-kaa-metadata
py-kcs11
py-keyczar
py-keyring
py-knockknock Fix DEPENDS 2010-08-21 14:40:44 +00:00
py-kyra
py-lapack Import py26-lapack-0.21 as wip/py-lapack. 2011-01-24 09:18:14 +00:00
py-larry Import py26-la-0.4.0 as wip/py-larry. 2011-01-24 09:46:43 +00:00
py-last
py-lazr.uri
py-lib
py-libmc Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-libmpdclient2
py-libopensync-plugin
py-libtextcat Update COMMENT and DISTNAME 2010-08-16 11:00:51 +00:00
py-libtorrent-rasterbar Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-libtunepimp
py-liveplots Import py26-liveplots-0.7.1 as wip/py-liveplots. 2011-03-20 21:43:34 +00:00
py-lockfile Update PLIST 2010-08-16 12:06:44 +00:00
py-logilab-database Import py26-logilab-database-1.1.0 as wip/py-logilab-database. 2010-07-31 12:23:44 +00:00
py-logilab-mtconverter
py-logilab-pigg
py-magnitude
py-matplotlib
py-matplotlib-gtk2
py-MayaVi
py-mcview Import py26-mcview-0.4.0 as wip/py-mcview. 2011-03-07 10:17:26 +00:00
py-mdp
py-memcached Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-metrics
py-mlstats Import py26-mlstats-0.4 as wip/py-mlstats. 2011-04-27 22:34:10 +00:00
py-mocker
py-model-builder Import py26-model-builder-0.4.6 as wip/py-model-builder. 2011-03-23 11:00:51 +00:00
py-mois Import py26-pymois-0.1 as wip/py-mois. 2010-09-02 12:18:36 +00:00
py-mpich4py
py-multichain_mcmc Import py26-multichain_mcmc-0.3 as wip/py-multichain_mcmc. 2011-03-23 09:53:08 +00:00
py-mwavepy update maintainer 2011-03-20 22:55:54 +00:00
py-mx-base
py-mysqldb-docs
py-ncomb Import py26-ncomb-1.0.0 as wip/py-ncomb. 2010-09-06 16:42:10 +00:00
py-netcdf
py-neurolab Import py26-neurolab-0.0.5 as wip/py-neurolab. 2011-04-27 22:16:55 +00:00
py-neuronpy Import py26-neuronpy-0.1.2 as wip/py-neuronpy. 2011-04-27 22:18:43 +00:00
py-nibabel Import py26-nibabel-1.0.0 as wip/py-nibabel. 2011-01-24 09:29:44 +00:00
py-nodepy Import py26-nodepy-0.3 as wip/py-nodepy. 2011-03-07 10:50:33 +00:00
py-nose-senario
py-ntch Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-numdifftools Update maintainer 2011-04-25 21:19:27 +00:00
py-numpy Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
py-nzmath Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-oak
py-oasa Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-oauth Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-omniORBpy
py-OpenAL
py-openopt Import py26-openopt-0.31 as wip/py-openopt. 2011-03-07 11:01:56 +00:00
py-openxmllib Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-orm
py-osd
py-paida Import py26-paida-3.2.1.2.10 as wip/py-paida. 2010-09-02 12:16:19 +00:00
py-pandas update pandans move to 0.3.0 2011-03-07 19:53:09 +00:00
py-papy Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-papyon Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-papyros
py-paragram Import py26-paragram-0.1.2 as wip/py-paragram. 2011-03-07 11:03:34 +00:00
py-parsing Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-pcapy
py-PEAK
py-PEAK-docs
py-peak-rules
py-pip
py-piquant Import py26-piquant-0.1 as wip/py-piquant. 2011-03-07 11:07:27 +00:00
py-plex Import py26-plex-2.0.0 as wip/py-plex. 2010-08-02 21:35:03 +00:00
py-plink Import py26-plink-1.1 as wip/py-plink. 2011-03-07 11:10:04 +00:00
py-plucker
py-ply Import PLY-3.3 as wip/py-ply. 2010-08-04 16:15:27 +00:00
py-pmi
py-pp
py-prayertime
py-prioritized-methods
py-processing
py-prody Import py26-prody-0.2.0 as wip/py-prody. 2011-03-07 11:12:55 +00:00
py-Protocols
py-Protocols-docs
py-psychopy Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-ptrace Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-pulp Import py26-pulp-1.4.7 as wip/py-pulp. 2011-03-07 11:18:41 +00:00
py-Py2Play
py-pyaiml
py-pyamf
py-pyamg
py-pycifrw
py-pydec Import py26-pydec-0.67.0nb20110509 as wip/py-pydec. 2011-05-09 20:43:28 +00:00
py-pydelay Update COMMENT 2011-04-11 23:44:24 +00:00
py-pydot
py-pyecm Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-pyentropy
py-pyevolve Fix DEPENDS (typo) 2010-08-21 14:45:28 +00:00
py-pyexiv2 Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-pyfits
py-pygi Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-pygr Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-pygraphviz Import py26-pygraphviz-1.0 as wip/py-pygraphviz. 2010-10-01 05:48:10 +00:00
py-pylons Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
py-pymc Import pymc-2.1beta as wip/py-pymc. 2011-03-20 23:26:42 +00:00
py-pymvpa Import py26-mvpa-0.4.5 as wip/py-pymvpa. 2011-03-23 09:48:20 +00:00
py-PyPE
py-pypedal Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-pypol Import py26-pypol-0.5 as wip/py-pypol. 2010-08-09 21:52:59 +00:00
py-pyqu
py-pyquante C Support 2010-08-06 20:57:11 +00:00
py-pyslha update HOMEPAGE 2011-04-25 21:16:09 +00:00
py-pythics
py-PythonDirector
py-PythonMagick
py-pyvib2
py-qecalc Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-qitensor Import py26-qitensor-0.5 as wip/py-qitensor. 2011-04-27 22:20:37 +00:00
py-quaternionarray Import py26-quaternionarray-0.6.1 as wip/py-quaternionarray. 2010-09-06 14:04:11 +00:00
py-qutrub Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-rcsparse
py-rdflib Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-remctl Update remctl and py-remctl to 2.16. 2011-03-15 20:15:31 +00:00
py-repositoryhandler Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-repoze.tm2
py-restkit
py-rlcompleter2 wip-changes: 2010-08-05 14:03:34 +00:00
py-rogues Import py26-rogues-0.2.0 as wip/py-rogues. 2011-03-07 11:35:50 +00:00
py-rpncalc Import py26-rpncalc-2.7 as wip/py-rpncalc. 2011-03-20 23:38:15 +00:00
py-rpyc
py-ruffus Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-RXP
py-sage
py-scikits-bvp_solver Import py26-scikits-bvp_solver-0.3.0 as wip/py-scikits-bvp_solver. 2011-01-19 14:29:25 +00:00
py-scikits_ann Import py26-scikits_ann-0.2 as wip/py-scikits_ann. 2011-01-19 14:30:11 +00:00
py-scikits_bvp1lg Import py26-scikits_bvp1lg-0.2.5 as wip/py-scikits_bvp1lg. 2011-01-19 14:32:20 +00:00
py-scikits_datasmooth Import py26-scikits_datasmooth-0.5 as wip/py-scikits_datasmooth. 2011-01-22 16:18:40 +00:00
py-scikits_hydroclimpy Import py26-scikits_hydroclimpy-0.67.0nb20110322 as wip/py-scikits_hydroclimpy. 2011-03-22 08:19:47 +00:00
py-scikits_image Import py26-scikits_talkbox-0.2.5 as wip/py-scikits_image. 2011-01-17 22:18:27 +00:00
py-scikits_learn Import py26-scikits_learn-0.5 as wip/py-scikits_learn. 2011-01-17 22:17:27 +00:00
py-scikits_optimization Import py26-scikits_optimization-0.1 as wip/py-scikits_optimization. 2011-01-17 22:22:47 +00:00
py-scikits_samplerate Import py26-scikits_samplerate-0.3.3 as wip/py-scikits_samplerate. 2011-03-22 08:24:23 +00:00
py-scikits_scattpy Import py26-scikits_scattpy-0.1.0 as wip/py-scikits_scattpy. 2011-01-17 22:19:36 +00:00
py-scikits_statsmodels Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-scikits_talkbox Import py26-scikits_talkbox-0.2.5 as wip/py-scikits_talkbox. 2011-01-19 14:36:48 +00:00
py-scikits_timeseries Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-scikits_vectorplot Import py26-scikits_vectorplot-0.1.1 as wip/py-scikits_vectorplot. 2011-03-22 08:21:39 +00:00
py-scipy Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
py-scitools Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-scrobbler
py-se Import py26-se-0.3.1 as wip/py-se. 2011-03-23 10:21:01 +00:00
py-selenium
py-setupdocs
py-setuptools_git Import py26-setuptools_git-0.3.4 as wip/py-setuptools_git. 2010-08-29 09:46:25 +00:00
py-sexy Import py26-sexy-0.1.9 as wip/py-sexy. 2010-09-02 12:29:08 +00:00
py-sfepy Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-shedskin Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-shtoom
py-siginterrupt Import py26-siginterrupt-1.0 as wip/py-siginterrupt. 2010-08-08 20:20:07 +00:00
py-simplegeneric fixed world-writable file, message 2010-08-29 10:32:49 +00:00
py-simpleparse-mxtexttools
py-snmp
py-sofa Import py26-sofa-0.1.0a2 as wip/py-sofa. 2011-01-24 09:26:54 +00:00
py-Soya
py-spambayes
py-sparce Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
py-spark DESTDIR Support 2010-10-07 00:37:20 +00:00
py-sparqlwrapper Import py26-spaqrlwrapper-1.4.2 as wip/py-sparqlwrapper. 2011-05-10 13:17:32 +00:00
py-spectral Import py26-spectral-0.6 as wip/py-spectral. 2011-03-20 22:38:26 +00:00
py-speex
py-spfpm Import py26-spfpm-0.6.1 as wip/py-spfpm. 2010-09-06 13:55:53 +00:00
py-spyse Import py26-spyse-0.2 as wip/py-spyse. 2010-08-02 21:38:35 +00:00
py-SQLObject
py-srpy Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-ssh2 Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-sshpt Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-statgrap
py-stem
py-storm
py-sumatra Import py26-sumatra-0.2.1 as wip/py-sumatra. 2010-08-09 21:36:25 +00:00
py-swarmsdk Import py26-swarmsdk-0.7.1 as wip/py-swarmsdk. 2010-08-09 21:41:36 +00:00
py-swiginac Import py26-swiginac-1.5.1.1 as wip/py-swiginac. 2011-03-23 09:46:00 +00:00
py-symboltype
py-symeig Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-sympycore
py-t3m Import py26-t3m as wip/py-t3m. 2011-03-07 12:13:12 +00:00
py-tagger Delint. 2010-10-27 18:10:04 +00:00
py-taglib
py-tappy Import py26-tappy-0.8.3 as wip/py-tappy. 2011-01-22 13:37:27 +00:00
py-tasphyne Import py26-tashaphyne-0.1 as wip/py-tasphyne. 2011-03-20 22:40:08 +00:00
py-telepathy Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-tempita Update Makefile 2010-08-30 12:23:29 +00:00
py-teng Import py26-teng-2.0.0 as wip/py-teng. 2010-08-31 07:39:55 +00:00
py-texml
py-theano Import py26-theano-0.3.0 as wip/py-theano. 2011-03-07 12:07:27 +00:00
py-thermopy Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-topkapi Import py26-topkapi-0.2.0 as wip/py-topkapi. 2011-01-22 13:33:53 +00:00
py-toscawidgets Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-tracks
py-traits Import py26-traits-3.4.0 as wip/py-traits. 2010-08-09 20:30:37 +00:00
py-traitsgui Import py26-traitsgui-3.4.0 as wip/py-traitsgui. 2010-08-09 20:29:43 +00:00
py-tranquil Update Makefile 2010-09-08 23:48:44 +00:00
py-transaction
py-turbojson
py-twisted-kqueue
py-utilib_common Import py26-utilib_common-3.0.4 as wip/py-utilib_common. 2011-05-09 19:55:41 +00:00
py-utilib_component_app Import py26-utilib_component_app-1.0.5 as wip/py-utilib_component_app. 2011-05-09 20:06:54 +00:00
py-utilib_component_config Import py26-utilib_component_config-3.2.3 as wip/py-utilib_component_config. 2011-05-09 20:07:42 +00:00
py-utilib_component_core Import py26-utilib_component_core-3.0.4 as wip/py-utilib_component_core. 2011-05-09 20:07:51 +00:00
py-utilib_component_executables Import py26-utilib_component_executables-3.4 as wip/py-utilib_component_executables. 2011-05-09 20:09:15 +00:00
py-utilib_component_loader Import py26-utilib_component_loader-3.2.3 as wip/py-utilib_component_loader. 2011-05-09 20:09:37 +00:00
py-utilib_enum Import py26-utilib_enum-1.0.5 as wip/py-utilib_enum. 2011-05-09 19:57:43 +00:00
py-utilib_excel Import py26-utilib_excel-3.0.4 as wip/py-utilib_excel. 2011-05-09 20:00:19 +00:00
py-utilib_math Import py26-utilib_math-3.0.4 as wip/py-utilib_math. 2011-05-09 20:01:43 +00:00
py-utilib_misc Import py26-utilib_misc-4.3 as wip/py-utilib_misc. 2011-05-09 20:05:17 +00:00
py-utilib_ply Import py26-utilib_ply-3.0.4 as wip/py-utilib_ply. 2011-05-09 19:59:11 +00:00
py-uuid update Makefile 2010-08-16 12:56:24 +00:00
py-van.testing
py-visionegg
py-visionegg-contrib
py-visionegg-demos
py-visionegg-docs
py-vo
py-vtkmodule
py-wadllib Fix DEPENDS 2010-08-21 14:46:33 +00:00
py-wafo Import py26-wafo-0.1.2 as wip/py-wafo. 2011-01-22 13:26:28 +00:00
py-wally
py-weave
py-weberror
py-webflash
py-webhelpers
py-webkit Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-webob Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
py-willow
py-workerpool
py-wsgi-intercept
py-wsgiref
py-wxWidgets-unicode
py-xdgapp
py-xlutils Import py26-xlutils-1.4.1 as wip/py-xlutils. 2010-08-31 19:52:24 +00:00
py-xlwt Import py26-xlwt-0.7.2 as wip/py-xlwt. 2010-08-31 19:51:17 +00:00
py-xmiparser Update DISTNAME 2010-08-16 11:17:13 +00:00
py-xmpppy Modify the PKGNAME to include the rc1 marker; 2011-01-16 06:23:44 +00:00
py-xsdb
py-yapgvb
py-yapps2
py-zeitgeist
PyBabelFish
pydance Unbreak packaging. 2010-10-29 19:44:34 +00:00
pydb Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
pylint ident Makefile 2011-01-18 08:25:34 +00:00
pynfo
pypanel Remove inclusion of non-existent file. 2011-01-13 09:56:54 +00:00
pypod
pysite Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
pysvn remove vim-swap file from package. 2010-08-13 15:01:45 +00:00
pythia6 Import pythia-6.4.25 as wip/pythia6. 2011-04-23 22:00:55 +00:00
python31 Note python Issue11662. 2011-03-26 06:13:28 +00:00
pythoncad Add PYPKGPREFIX to PKGNAME. 2010-10-18 20:14:35 +00:00
Pythonol
pywm
pyzor
q3-urbanterror
qca2-gnupg
qcomicbook
qdevelop Import qdevelop-0.28 as wip/qdevelop. 2010-08-10 03:10:59 +00:00
qemu-neo1973
qemu-neo1973-images
qhacc
qico use @RCD_SCRIPTS_SHELL@ 2011-04-12 20:40:34 +00:00
qinx Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
qmpdclient
qn-x11
qpsmtpd
qrint update maintainer 2011-03-20 22:55:54 +00:00
qtcreator
qtre
quantlib Reorder declarations in quantlib/Makefile 2011-02-27 08:40:19 +00:00
qucs
quickfix
quickie
quickml add TODO. 2011-05-12 13:31:00 +00:00
quodlibet Apply an untested fix from Ian D. Leroux. At the same time, drop mntner- 2010-11-05 04:07:01 +00:00
qvamps Adapt to more picky swig. 2010-09-10 13:00:34 +00:00
R-digest Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
R-entropy Oops, new entropy package has been released a week ago - update. 2011-04-02 19:42:42 +00:00
R-mclust Fix gettext-lib dependency (catched on MacOS). 2011-04-02 19:34:58 +00:00
R-Rdbi
R-Rdbi.PgSQL
R-rgdal
R-Rserve
r8s
rabbitmq Updated rabbitmq to 2.1.0. 2010-09-16 14:08:27 +00:00
radare
Radiator
Radiator-all
radiotray Fix licence; remove notification-daemon dependency; add TODO. 2011-03-11 07:59:40 +00:00
rar3
rast Import rast-0.3.1 as wip/rast. 2011-02-21 11:36:58 +00:00
raster3d Fix a typo. 2010-08-26 01:29:36 +00:00
ratpoints
ratproxy Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
rawphoto
rc.d.Interix
rc.subr
rdup Moved libnettle to security/nettle 2011-04-26 09:24:52 +00:00
readseq
realtimebattle
realvnc
redfang
redis Fix Redis homepage to new site (Thanks Christian Sturm) 2011-03-14 07:11:19 +00:00
Redland-rdf
reduze Import reduze-1.2 as wip/reduze. 2011-05-09 10:48:08 +00:00
regexxer Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
reinteract
rekall
relaydb
remctl Update remctl and py-remctl to 2.16. 2011-03-15 20:15:31 +00:00
resid-builder
residual-nightly
resin
ReZound
rhapsody
ripe-rpsl-objectlibrary
ripit
ripole
rnc-mode
rolo
rootcheck
rope Update to version 0.9.3: 2010-08-11 17:29:51 +00:00
rosegarden-current
roundcube-skin-mvision2
rpki-svn fix PLIST (partly) 2011-05-05 11:02:22 +00:00
rrdtool
rsget Update to r 11838. 2010-12-13 11:40:51 +00:00
rss-glib Update E-mail Maintainer 2010-09-10 20:46:19 +00:00
rst-mode
rsyslog Note http://secunia.com/advisories/44053/ 2011-04-07 22:23:58 +00:00
rsyslog5 Import rsyslog-5.8.0 as wip/rsyslog5. 2011-04-18 13:46:22 +00:00
rsyslog6 Update to 6.1.7. 2011-04-18 13:45:24 +00:00
rte
rthread Update Makefile 2010-09-10 20:37:06 +00:00
rtpbreak
rubinius update to 1.2.3 2011-04-16 23:45:55 +00:00
ruby-actionmessenger Updated for recent ruby gems framework 2010-11-12 23:58:33 +00:00
ruby-bdb Import ruby-bdb-0.6.5 as wip/ruby-bdb. 2011-02-21 11:32:09 +00:00
ruby-ditz patches/patch-bin_ditz: fix --issue-dir bug 2011-05-12 04:42:02 +00:00
ruby-dnssd Update ruby-dnssd to 2.0. 2011-03-04 04:40:35 +00:00
ruby-easyjour Catch up to recent ruby framework changes. 2010-09-14 07:33:46 +00:00
ruby-GalleryAdministrator Catch up to recent ruby framework changes. 2010-09-14 07:33:46 +00:00
ruby-git Fix build for the new pkgsrc gem framework 2010-11-04 22:01:30 +00:00
ruby-term-ansicolor Updated package for the new ruby/gem framework 2010-09-16 14:14:04 +00:00
ruby-trollop FIX: Updated for latest ruby gems framework 2010-11-13 00:03:44 +00:00
ruby-xmpp4r Updated package for the new ruby/gem framework 2010-09-16 14:18:51 +00:00
runit
s3cmd
s3funnel
sakura * Update MAINTAINER e-mail address. 2011-05-11 10:53:45 +00:00
samhain
sara
saxon
sbcl Remove more test output files. 2011-05-01 11:01:01 +00:00
scantailor Initial import of scantailor-0.9.9.2: 2011-02-28 18:32:39 +00:00
scare
schismtracker
schur Import schur-6.05 as wip/schur. 2010-08-06 20:25:30 +00:00
scimark Import scimark2-2.0 as wip/scimark. 2010-09-02 12:32:23 +00:00
scite Unbreak packaging. 2010-10-29 19:44:34 +00:00
scm
scmail
scorched3d Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
scourge
scr2png
scratchpad
scrc Add the instruction to compile sample file. 2010-08-31 12:19:10 +00:00
scsh-install-lib
scummvm-nightly
scx
sdd Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
sdict-tools Add new dependencies 2010-08-21 14:53:38 +00:00
SDL-doc
SDL-doc-html
SDL-doc-ps
SDL-intro
SDL-intro-cn
SDL-intro-de
SDL-intro-es
SDL-intro-fr
SDL-intro-it
SDL-intro-jp
SDL-intro-pt
SDL-intro-ru
SDL_Pango
seeks updated from 0.2.4 to 0.3.2 2011-03-23 16:30:42 +00:00
send-pr update TODO 2011-03-17 17:53:17 +00:00
sendmailX
serendipity
serlook
service
sflphoned
sgmltools-lite
shadow Note CVE-2011-0721. 2011-02-19 05:30:27 +00:00
shaper
sharif-univ-ttf
shed
shell-fm
shoutcast
showmesh Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
shttpd
shunt
sic
siege
Siesta
Sigil Import Sigil-0.3.4 as wip/Sigil. 2011-05-13 04:05:18 +00:00
sil-scheherazade-ttf SET LICENSE=open-font-license 2010-09-22 15:16:33 +00:00
silky
silo Import silo-4.8 as wip/silo. 2011-03-07 12:20:06 +00:00
silvertree
sim-kde
sim-qt
simpa Import simpa-1.2.5 as wip/simpa. 2010-08-03 18:53:31 +00:00
simplec
singular
sipbomber added licensing information 2010-09-05 11:31:25 +00:00
sipp
siproxd added licensing information 2010-09-05 11:43:59 +00:00
siptoolbox
sis
sjg-mk-files add content 2010-10-10 12:29:38 +00:00
ski Frob the pseudo tty ends to get this to work. I do not understand exactly why this change works. But it does (tm) 2010-11-05 12:56:38 +00:00
sks Added sks_build.sh init script 2011-02-18 23:59:51 +00:00
slackpkg2pkgsrc
slashem
slate
sleuthkit
sleuthkit.dev
slim Update for png-1.5. 2011-01-13 13:55:03 +00:00
slime
slocate
sloccount
slrn-devel - update do -26, changes from last update: 2010-11-30 20:41:45 +00:00
slrn-pl
slune Adjust to use "py-EditObj2" since "py-EditObj" doesn't exist. 2011-01-14 21:35:10 +00:00
sm-change_ldappass Reset maintainer. 2010-11-01 00:08:22 +00:00
sm-change_qldforward Reset maintainer. 2010-11-01 00:08:22 +00:00
sm-compatibility Reset maintainer. 2010-11-01 00:08:22 +00:00
smc
smproxy
smstools Fix path to smsd binary (it's installed into sbin/, not bin/) 2010-10-29 19:47:51 +00:00
smtp-gated
smtp.proxy
smtprc
smtprc-gui
smtpscan
smw
snark
snes9express
socklog
softflowd
songwrite Adjust to use "py-EditObj2" since "py-EditObj" doesn't exist. 2011-01-14 21:35:10 +00:00
soprano Readd kde (4.6.3) and some associated packages (soprano, akonadi, phonon) 2011-05-13 23:25:13 +00:00
soqt Add buildlink3.mk 2011-01-04 15:40:58 +00:00
spade Fix DEPENDS 2010-08-21 14:51:03 +00:00
spai Import spai-3.2 as wip/spai. 2011-05-09 21:29:38 +00:00
spamassassin-cvs
spamd-devel
spandsp Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
spatt Import spatt-2.0 as wip/spatt. 2011-03-07 13:14:17 +00:00
spawnfcgi
spe
spectrum Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
speedx
spfmilter
sphinxsearch
splix Add -pthread to link. 2010-09-12 12:12:54 +00:00
spyder Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
squidview
squirrelmail-avelsieve
squirrelmail-chg_sasl_passwd
squirrelmail-compatibility
squirrelmail-vlogin
srecord
srvx
sselp Import sselp-0.2nb1 as wip/sselp. 2011-01-03 00:32:19 +00:00
ssid Import ssid-0.1 as wip/ssid. 2011-01-03 13:16:17 +00:00
ssu
stardict Bump PKGREVISION to 3. 2010-09-09 09:31:59 +00:00
stardict-tools
StepTalk
stfl
stksolver Import stksolver-1.0 as wip/stksolver. 2011-05-09 14:29:47 +00:00
stmpclean
stonx Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
stumpwm
stunnel3
sudoscript
sugarCRM
sun-j2me
sunterlib
superchic Import superchic-1.3 as wip/superchic. 2011-04-27 22:27:07 +00:00
supertux
surf
suse100_32_glut
suse100_32_SDL
suse100_devel Note 'make install' failure because of missing library. 2011-03-15 15:02:15 +00:00
suse100_gdb
suse100_glut
suse100_gmp4 Import suse_gmp4-10.0 as wip/suse100_gmp4. 2011-02-21 04:39:11 +00:00
suse100_SDL
suse113_libgmp3 Import suse_libgmp3-11.3 as wip/suse113_libgmp3. 2011-02-22 03:12:53 +00:00
svgalib
svrcore
swami
swarp Import swarp-0.1nb1 as wip/swarp. 2011-01-03 00:47:19 +00:00
swfmill
swftools Use new giflib infrastructure. 2011-03-15 01:54:34 +00:00
sword Add patch to workaround a bug in curl 7.20 causing SEGFAULT in sword 2010-09-28 19:23:11 +00:00
sxemacs Remove comments to avoid grep mismatches. 2011-03-06 16:37:19 +00:00
sxid
symmetrica
symon Major rototilling of symon package: 2011-04-18 14:51:26 +00:00
sympow
syn68k
synce-dynamite
synce-kde Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
synce-orange
synfig Fix build breakage on NetBSD/amd64 and possibly other NetBSD platforms. 2011-03-22 10:14:08 +00:00
synfigstudio Fix build breakage on NetBSD/amd64 and possibly other NetBSD platforms. 2011-03-23 04:37:07 +00:00
sysjail
sysklogd
syslog-ng2
sysstat
sysvinit
syx
t-coffee
t-gnus
ta-lib
tabbed Import tabbed-0.3 as wip/tabbed. 2011-03-07 19:08:11 +00:00
tac_plus-libradius added a patch for MacOS 10.5 and higher whose setpgrp() has only one 2010-09-05 16:27:36 +00:00
tacacs-shrubbery Add bison to tools, and disallow parallel make jobs, they fail. 2011-05-14 21:12:30 +00:00
taglib-sharp
tagtool
talksoup
talloc
tamago-anthy (1) set LICENSE=gnu-gpl-v2 2011-05-09 04:32:25 +00:00
tardy
task Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
taskcoach Update to 1.2.13 2011-04-10 15:09:49 +00:00
tasks
tcc
tcc-devel
tcl-curl
tcl-tclOO + private-headers 2010-10-20 14:52:25 +00:00
tcl-tDOM
tcl85 Tcl 8.5 updated from 8.5.8 to 8.5.9. See announcement 2010-09-11 04:45:06 +00:00
tcl86 Pulling from fossil repo now, not Sourceforge CVS. 2011-03-29 22:17:56 +00:00
tcmplex-panteltje
tcpspy
tcptrack Changes 1.4.0: 2011-03-30 10:30:18 +00:00
tcpxtract
tctool
tde
teamspeak
teco
teeworlds Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
teeworlds-client
teeworlds-server
telepathy-butterfly Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
telepathy-logger Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
tendra
tendra.org-sid
teng Import teng-2.1.0 as wip/teng. 2010-08-30 19:21:32 +00:00
tenmado
tenshi
Terminal
termit fetch from https works for pkgsrc>2010Q4 2011-03-28 22:27:01 +00:00
testdisk
tetrinet
tex-arabxtex
tex-arabxtex-doc
tex-baekmuk-ttf
tex-feynmf
tex-feynmf-doc
tex-kochi-ttf
tex-texdoc
tex-texdoc-doc
texlive Remove lines not needed for a meta package. 2010-11-13 02:43:01 +00:00
texlive-bin Remove a redundant comment. 2010-11-13 02:46:40 +00:00
texlive-texmf-base bump the version 2009 -> 2010 2010-11-11 14:01:55 +00:00
texlive-texmf-minimal
TextEdit
tftp-hpa
thabit-ttf SET LICENSE=open-font-license 2010-09-22 14:36:07 +00:00
thcrut
thwab
tilda
tilp
tinyca2
tinycobol
tinyfugue-beta
tinylogin
tk85 Update Tk (Tcl Toolkit) from 8.5.8 to 8.5.9. See announcement here: 2010-09-11 04:47:04 +00:00
tk86 Pulling from fossil repo now, not Sourceforge CVS 2011-03-29 22:19:05 +00:00
tkpng Make sure wip/tk85 gets pulled in. 2010-10-19 21:55:16 +00:00
tktable Import tktable-2.10 as wip/tktable. 2010-10-19 22:38:59 +00:00
tleenx2
tleenx3
tmw
tnt Import tnt-3.0.12 as wip/tnt. 2010-09-02 11:59:04 +00:00
tome
tome2
tops-bin
tor-dev Changes in version 0.2.2.23-alpha - 2011-03-08 2011-03-13 01:39:16 +00:00
torcs Add libXXf86vm per PR 44115. 2010-11-18 22:58:28 +00:00
tortunnel
tpp Update maintainer email address to valid address. 2011-01-17 10:48:03 +00:00
tr2latex
trac fix variable name for LEGACY_OPTS. 2011-03-15 06:10:27 +00:00
trac-plugins-AccountManager Update to trac-plugins-AccountManager to 0.3dev (r9927). 2011-03-04 08:13:14 +00:00
trac-plugins-AuthOpenId
trac-plugins-excelviewer py-xlrd: imported as pkgsrc/textproc/py-xlrd. 2010-08-05 12:22:58 +00:00
trac-plugins-FullBlog
trac-plugins-FullBlogNotification
trac-plugins-GitPlugin
trac-plugins-GraphViz
trac-plugins-MasterTickets
trac-plugins-RoadmapHours Substitute EGG_INFODIR in PLIST to generalize on python version. 2010-12-16 16:13:33 +00:00
trac-plugins-screenshots
trac-plugins-SensitiveTickets
trac-plugins-spamfilter
trac-plugins-TimingAndEstimation Use EGG_INFODIR in PLIST. 2010-12-16 16:07:55 +00:00
trackballs Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
trayer Fix build with a recent pkgsrc 2011-03-29 16:15:11 +00:00
trayion
treetool
treeview
tripwire2
truecrypt
tsh
tsm The failure with suse_* 10 was not a fault of the version as such. 2011-03-18 17:27:36 +00:00
ttf-indic-fonts
ttr
ttyload Import ttyload-0.5.2 as wip/ttyload. 2011-02-22 16:07:41 +00:00
ttysnoop
tuareg-mode
tumble
tutos
tuxanci
tuxanci-server
tuxguitar Mention new security issue 2010-10-27 19:31:19 +00:00
tuxtype2
tvmet Import tvmet-1.7.2 as wip/tvmet. 2010-09-02 12:15:12 +00:00
tw_cli
twinkle Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
twitim Support pkg specific options. 2010-11-13 13:59:33 +00:00
twitmail
txt2tags
typespeed
Typewriter
typhoon
u-boot
uade
ubit Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
ubuntu-font-ttf Update to 0.71.2. 2011-03-15 20:00:25 +00:00
uclibc
udhcp
udp-ping added phread support required by the client 2010-09-12 18:42:22 +00:00
uebimiau
uffizi Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
uim-chewing Update uim-chewing to 0.0.4.2. 2010-11-17 10:43:31 +00:00
umix
umph 0.1.7 Tue Nov 30 2010 legatvs 2010-12-11 06:17:25 +00:00
umurmur create cert dirs 2010-10-17 08:49:14 +00:00
undo-tree Upstream update to undo-tree 0.3 2011-02-18 04:55:05 +00:00
unix2tcp
unmo3
unrealtournament-server
ups-nut
uptimed
uqm
uqwk
uschedule
ushare Re-import ushare-1.1a here, to fix with libupnp>1.6.6. 2011-01-20 08:27:11 +00:00
using-mpi Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
ussp-push
util-linux
v8 Add RCS Id. 2011-05-02 20:32:46 +00:00
vacuum Fix DEPENDS 2010-08-21 14:54:38 +00:00
vagalume
vale-current Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
vamp Import vamp-2.0.4 as wip/vamp. 2011-05-09 14:57:26 +00:00
vamps
vcf commented out LICENSE (LGPL version unspecified). 2011-02-28 11:42:35 +00:00
vche
vdesk Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
vee
vidalia
vidrioclock Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
vidriolib Assume anything that wants Fortran for now actually wants Fortran-77. 2010-08-01 14:57:08 +00:00
viewer Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
viewglob
vino Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
virtualbox add some missing bits 2011-02-19 13:27:18 +00:00
virtualjaguar
virus
vis
vkeybd
vlc Add the files once gone to Attic 2011-01-09 06:47:55 +00:00
vlevel
vm-pop3d
vmsbackup
vncselector Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
vpnc-script
vpr Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
vreng Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
wang-ttf Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
wbox
webcleaner
webkit-sharp Update Makefile: Change E-mail Maintainer 2010-09-11 12:33:10 +00:00
webp Update to 0.1.2 2011-05-04 12:29:11 +00:00
WEPCrack
weplab added licensing information 2010-09-05 12:04:17 +00:00
west
which
wicd Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:47 +00:00
wimon-devel
wine Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
wings Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
winwrangler
wireless-tools
wise2
wkf
wkhtmltopdf Import wkhtmltopdf-0.10.0_beta5 as wip/wkhtmltopdf. 2010-10-26 17:18:15 +00:00
wl-current Pkglint score improved (Error/Warn) 1/8 -> 0/5. 2011-04-19 13:05:47 +00:00
wmii-devel
wmitime Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
wmname Fix HOMEPAGE 2011-01-03 00:12:21 +00:00
wmnetload
wmx wmx is another window manager for X. It is based on wm2 and provides 2011-05-05 13:07:00 +00:00
wmx-gnome wmx is another window manager for X. It is based on wm2 and provides 2011-05-05 13:08:30 +00:00
wordcut
wordpress-mu
wordwarvi
workrave
wpro
wput
wqy-microhei-ttf Import wqy-microhei-0.2.0 as wip/wqy-microhei-ttf. 2011-03-09 19:58:45 +00:00
wqy-zenhei-ttf Import wqy-zenhei-0.8.38.1 as wip/wqy-zenhei-ttf. 2011-02-12 11:37:45 +00:00
wrcs
writrecogn Bump PKGREVISION from libpng shlib name change. 2011-03-10 12:14:32 +00:00
wsmake
wtf
wvstreams
wxGTK-contrib-unicode Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
wxGTK-unicode Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
x264-devel Enable asm on Darwin (x3 faster) and x86_64. 2011-01-14 13:11:15 +00:00
xace Bring up-to-date w/ x11/libX11/buildlink3.mk >= revision 1.2. 2010-12-25 12:45:45 +00:00
xar
xaralx-bin
xbase
xbelmark
xbmc Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
xbnbt
xbsql
xchat2-perl
xchat2-python
xchat2-tcl
xclipboard
xcowsay
xcursor-themes
xdiskusage
xdotool Import xdotool-2.20101012nb1 as wip/xdotool. 2011-01-02 05:42:34 +00:00
xebece
xesam-glib
xf86-input-synaptics Import xf86-input-synaptics-1.2.1 as wip/xf86-input-synaptics. 2011-01-08 10:04:23 +00:00
xf86-video-geode
xf86-video-nouveau Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
xf86-video-nv-current
xf86rushproto
xfce4-mailwatch-plugin
xfce4-mount-plugin
xfce4-radio-plugin
xfce4-taskmanager
xgfe
xgobi
xhkeys1
xine-plugin
xinetd
xiphos The program runs fine, the problem was in sword not in xiphos, and got fixed 2010-09-28 19:35:07 +00:00
xmail
xmakemol Import xmakemol-5.16 as wip/xmakemol. 2011-03-20 23:43:21 +00:00
xmds Import xmds-1.6.6 as wip/xmds. 2010-09-06 13:59:00 +00:00
xmim
xml-light
xmlformat-docs
xmlformat-perl
xmlformat-ruby
xmlsysinfo
xmms-skin-AdamAmp
xmms-skin-Chaos
xmms-skin-CherryBest
xmms-skin-Cobalt
xmms-skin-CoolBlue
xmms-skin-Cracked
xmms-skin-Eclipse
xmms-skin-Fire
xmms-skin-HelixSawfish
xmms-skin-LinuxDotCom
xmms-skin-m2n
xmms-skin-MarbleX
xmms-skin-maXMMS
xmms-skin-nixamp
xmms-skin-NoerdAmp-SE
xmms-skin-Plume
xmms-skin-Sword
xmms-skin-UltrafinaSEM
xmms-skin-VegetalBlues
xmms-skin-WinampX
xmms-skins
xmms2 Modernize options checks. 2011-02-19 16:45:03 +00:00
xmonad
xmonad-contrib
xmoto Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
xoo Packaged Xoo 0.8 2011-02-26 15:15:18 +00:00
xpde
xpdq
xpilot-ng
xplore
xrdp fixed compilation and file locations 2011-02-13 21:02:54 +00:00
xrootconsole
xspd
xspdapp
xspread
xtags
xtrace
xtraceroute Initial import of xtraceroute-0.9.2, the GTK2 version of net/xtraceroute. 2011-02-19 15:59:17 +00:00
xtrlock
xulrunner add patch from pkgsrc, linux PLIST fix. 2011-04-26 14:33:58 +00:00
xvmware
xwelltris
xwindiff initial commit 2011-03-05 23:02:16 +00:00
xxdiff
xyssl Follow HTTP redirects to new HOMEPAGEs and MASTER_SITES. 2010-11-11 22:42:06 +00:00
yafray Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
yajl Remove CMake build dependency 2011-05-11 16:27:12 +00:00
yakuake
yauap
yaws Add new security issue 2010-11-01 23:14:43 +00:00
yelp-xsl
yersinia
ykclient
yp-tools
ypbind-mt
ypserv
zabbix note http://secunia.com/advisories/40679 2010-08-03 17:50:20 +00:00
zapping Mechanically replace references to graphics/jpeg with the suitable 2010-12-26 05:01:21 +00:00
zim Convert patch-aa to SUBST. 2011-05-14 04:31:30 +00:00
zinf Update zinf to 2.2.5 - Release of zinf 2.2.5 for gtk2.X. 2010-11-10 05:33:54 +00:00
ziparchive Import ziparchive-4.1.0 as wip/ziparchive. 2011-05-12 12:13:39 +00:00
zipios Import zipios-0.1.5.9.2007.04.28 as wip/zipios. 2011-05-12 12:20:42 +00:00
zope3-unstable
zsh-snapshot Reset maintainer for retired developers. 2011-02-28 14:53:17 +00:00
zvbi
import-package.sh
Makefile - mcsgen, imported to pkgsrc/devel/mscgen. 2011-05-15 11:14:56 +00:00
TODO Remove lincity-ng 2011-05-15 18:32:09 +00:00