From blb at macports.org Mon Dec 1 00:24:40 2008 From: blb at macports.org (blb at macports.org) Date: Mon, 1 Dec 2008 00:24:40 -0800 (PST) Subject: [42845] trunk/base/src/upgrade_sources_conf_default.tcl Message-ID: <20081201082440.E0F537D1B10@beta.macosforge.org> Revision: 42845 http://trac.macports.org/changeset/42845 Author: blb at macports.org Date: 2008-12-01 00:24:38 -0800 (Mon, 01 Dec 2008) Log Message: ----------- base/src/upgrade_sources_conf_default.tcl - make sure to delete the temp file if we didn't use it Modified Paths: -------------- trunk/base/src/upgrade_sources_conf_default.tcl Modified: trunk/base/src/upgrade_sources_conf_default.tcl =================================================================== --- trunk/base/src/upgrade_sources_conf_default.tcl 2008-12-01 07:51:39 UTC (rev 42844) +++ trunk/base/src/upgrade_sources_conf_default.tcl 2008-12-01 08:24:38 UTC (rev 42845) @@ -76,6 +76,9 @@ } file rename ${tempfile} ${sourcesConf} eval file attributes ${sourcesConf} $attributes +} else { + file delete ${tempfile} } + exit 0 -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Mon Dec 1 00:28:44 2008 From: blb at macports.org (blb at macports.org) Date: Mon, 1 Dec 2008 00:28:44 -0800 (PST) Subject: [42846] trunk/base/src/upgrade_sources_conf_default.tcl Message-ID: <20081201082844.C4B8B7D1B94@beta.macosforge.org> Revision: 42846 http://trac.macports.org/changeset/42846 Author: blb at macports.org Date: 2008-12-01 00:28:44 -0800 (Mon, 01 Dec 2008) Log Message: ----------- base/src/upgrade_sources_conf_default.tcl - support svn from macports.org and macosforge.org, and rsync from macports.org and old darwinports.org Modified Paths: -------------- trunk/base/src/upgrade_sources_conf_default.tcl Modified: trunk/base/src/upgrade_sources_conf_default.tcl =================================================================== --- trunk/base/src/upgrade_sources_conf_default.tcl 2008-12-01 08:24:38 UTC (rev 42845) +++ trunk/base/src/upgrade_sources_conf_default.tcl 2008-12-01 08:28:44 UTC (rev 42846) @@ -44,7 +44,7 @@ if {!$defaultSeen && ![regexp {^\s*#|^$} $line]} { if {[string first {[default]} $line] >= 0} { set defaultSeen true - } elseif {[regexp {^\s*rsync://rsync\.macports\.org/release/ports/} $line]} { + } elseif {[regexp {^\s*rsync://rsync\.(macports|darwinports)\.org/(release|dpupdate)/d?ports} $line]} { set line [append_default_tag_to_line $line] set defaultSeen true set defaultWritten true @@ -56,7 +56,7 @@ regexp {^URL: (.*)} $svnLine -> svnURL } close $svnChannel - if {[regexp {^https?://svn\.macports\.org/repository/macports/trunk/dports} $svnURL]} { + if {[regexp {^https?://svn\.(macports|macosforge)\.org/repository/macports/trunk/dports} $svnURL]} { set line [append_default_tag_to_line $line] set defaultSeen true set defaultWritten true -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Mon Dec 1 00:34:14 2008 From: blb at macports.org (blb at macports.org) Date: Mon, 1 Dec 2008 00:34:14 -0800 (PST) Subject: [42847] trunk/base/src/upgrade_sources_conf_default.tcl Message-ID: <20081201083414.CF3267D1C1E@beta.macosforge.org> Revision: 42847 http://trac.macports.org/changeset/42847 Author: blb at macports.org Date: 2008-12-01 00:34:14 -0800 (Mon, 01 Dec 2008) Log Message: ----------- base/src/upgrade_sources_conf_default.tcl - copy some code from mportinit to better parse the lines from sources.conf, which then allows the use of lists to vastly improve detection of whether the default tag is present, so we don't end up with '[nosync,default,default]' Modified Paths: -------------- trunk/base/src/upgrade_sources_conf_default.tcl Modified: trunk/base/src/upgrade_sources_conf_default.tcl =================================================================== --- trunk/base/src/upgrade_sources_conf_default.tcl 2008-12-01 08:28:44 UTC (rev 42846) +++ trunk/base/src/upgrade_sources_conf_default.tcl 2008-12-01 08:34:14 UTC (rev 42847) @@ -23,15 +23,6 @@ } -proc append_default_tag_to_line {line} { - if {[regexp {^(.* )\[(.*)\](.*)$} $line -> line_begin current_tag line_end]} { - return "${line_begin}\[${current_tag},default\]${line_end}" - } else { - return "${line} \[default\]" - } -} - - set mktempChannel [open "|/usr/bin/mktemp -t macports_sources_upgrade" r] set tempfile [read -nonewline $mktempChannel] close $mktempChannel @@ -41,27 +32,33 @@ set defaultWritten false while {[gets $sourcesConfChannel line] >= 0} { + set addDefault false if {!$defaultSeen && ![regexp {^\s*#|^$} $line]} { - if {[string first {[default]} $line] >= 0} { - set defaultSeen true - } elseif {[regexp {^\s*rsync://rsync\.(macports|darwinports)\.org/(release|dpupdate)/d?ports} $line]} { - set line [append_default_tag_to_line $line] - set defaultSeen true - set defaultWritten true - } elseif {[regexp {^\s*file://(/[^ #]+)} $line -> filepath]} { - if {[file exists [file join ${filepath} .svn]]} { - set svnChannel [open "|svn info ${filepath}" r] - set svnURL {} - while {[gets $svnChannel svnLine] >= 0} { - regexp {^URL: (.*)} $svnLine -> svnURL + if {[regexp {^([\w-]+://\S+)(?:\s+\[(\w+(?:,\w+)*)\])?$} $line -> url flags]} { + set flags [split $flags ,] + if {[lsearch $flags default] >= 0} { + set defaultSeen true + } elseif {[regexp {rsync://rsync\.(macports|darwinports)\.org/(release|dpupdate)/d?ports} $url]} { + set addDefault true + } elseif {[regexp {file://(/.+)} $url -> filepath]} { + if {[file exists [file join ${filepath} .svn]]} { + set svnChannel [open "|svn info ${filepath}" r] + set svnURL {} + while {[gets $svnChannel svnLine] >= 0} { + regexp {^URL: (.*)} $svnLine -> svnURL + } + close $svnChannel + if {[regexp {^https?://svn\.(macports|macosforge)\.org/repository/macports/trunk/dports} $svnURL]} { + set addDefault true + } } - close $svnChannel - if {[regexp {^https?://svn\.(macports|macosforge)\.org/repository/macports/trunk/dports} $svnURL]} { - set line [append_default_tag_to_line $line] - set defaultSeen true - set defaultWritten true - } } + if {$addDefault} { + lappend flags default + set line "$url \[[join $flags ,]\]" + set defaultSeen true + set defaultWritten true + } } } puts $tempfileChannel $line -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Dec 1 00:37:23 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 1 Dec 2008 00:37:23 -0800 Subject: propchange - r42842 svn:log Message-ID: <20081201083833.6B6012804F@relay13.apple.com> Author: ryandesign at macports.org (original author: jeremyhu at macports.org) Revision: 42842 Property Name: svn:log --- /Volumes/data/admin/var/tmp/revprops/pre-42842-ryandesign at macports.org 2008-12-01 00:37:21.000000000 -0800 +++ /Volumes/data/admin/var/tmp/revprops/post-42842-ryandesign at macports.org 2008-12-01 00:37:22.000000000 -0800 @@ -1 +1 @@ -base: updated configure check for outdated OS. Updated configure to use newer autoconf to fix X11 detection for libX11.dylin in addition to libX11.so +base: updated configure check for outdated OS. Updated configure to use newer autoconf to fix X11 detection for libX11.dylib in addition to libX11.so From blb at macports.org Mon Dec 1 00:42:29 2008 From: blb at macports.org (blb at macports.org) Date: Mon, 1 Dec 2008 00:42:29 -0800 (PST) Subject: [42848] branches/release_1_7 Message-ID: <20081201084229.B13AF7D1CF2@beta.macosforge.org> Revision: 42848 http://trac.macports.org/changeset/42848 Author: blb at macports.org Date: 2008-12-01 00:42:29 -0800 (Mon, 01 Dec 2008) Log Message: ----------- base/src/upgrade_sources_conf_default.tcl - merge r42845, r42846, and r42847 from trunk: make sure to delete the temp file if we didn't use it support svn from macports.org and macosforge.org, and rsync from macports.org and old darwinports.org copy some code from mportinit to better parse the lines from sources.conf, which then allows the use of lists to vastly improve detection of whether the default tag is present, so we don't end up with '[nosync,default,default]' Modified Paths: -------------- branches/release_1_7/base/src/upgrade_sources_conf_default.tcl Property Changed: ---------------- branches/release_1_7/ Property changes on: branches/release_1_7 ___________________________________________________________________ Modified: svn:mergeinfo - /trunk:42683,42697,42734,42747,42760 + /trunk:42683,42697,42734,42747,42760,42845-42847 Modified: branches/release_1_7/base/src/upgrade_sources_conf_default.tcl =================================================================== --- branches/release_1_7/base/src/upgrade_sources_conf_default.tcl 2008-12-01 08:34:14 UTC (rev 42847) +++ branches/release_1_7/base/src/upgrade_sources_conf_default.tcl 2008-12-01 08:42:29 UTC (rev 42848) @@ -23,15 +23,6 @@ } -proc append_default_tag_to_line {line} { - if {[regexp {^(.* )\[(.*)\](.*)$} $line -> line_begin current_tag line_end]} { - return "${line_begin}\[${current_tag},default\]${line_end}" - } else { - return "${line} \[default\]" - } -} - - set mktempChannel [open "|/usr/bin/mktemp -t macports_sources_upgrade" r] set tempfile [read -nonewline $mktempChannel] close $mktempChannel @@ -41,27 +32,33 @@ set defaultWritten false while {[gets $sourcesConfChannel line] >= 0} { + set addDefault false if {!$defaultSeen && ![regexp {^\s*#|^$} $line]} { - if {[string first {[default]} $line] >= 0} { - set defaultSeen true - } elseif {[regexp {^\s*rsync://rsync\.macports\.org/release/ports/} $line]} { - set line [append_default_tag_to_line $line] - set defaultSeen true - set defaultWritten true - } elseif {[regexp {^\s*file://(/[^ #]+)} $line -> filepath]} { - if {[file exists [file join ${filepath} .svn]]} { - set svnChannel [open "|svn info ${filepath}" r] - set svnURL {} - while {[gets $svnChannel svnLine] >= 0} { - regexp {^URL: (.*)} $svnLine -> svnURL + if {[regexp {^([\w-]+://\S+)(?:\s+\[(\w+(?:,\w+)*)\])?$} $line -> url flags]} { + set flags [split $flags ,] + if {[lsearch $flags default] >= 0} { + set defaultSeen true + } elseif {[regexp {rsync://rsync\.(macports|darwinports)\.org/(release|dpupdate)/d?ports} $url]} { + set addDefault true + } elseif {[regexp {file://(/.+)} $url -> filepath]} { + if {[file exists [file join ${filepath} .svn]]} { + set svnChannel [open "|svn info ${filepath}" r] + set svnURL {} + while {[gets $svnChannel svnLine] >= 0} { + regexp {^URL: (.*)} $svnLine -> svnURL + } + close $svnChannel + if {[regexp {^https?://svn\.(macports|macosforge)\.org/repository/macports/trunk/dports} $svnURL]} { + set addDefault true + } } - close $svnChannel - if {[regexp {^https?://svn\.macports\.org/repository/macports/trunk/dports} $svnURL]} { - set line [append_default_tag_to_line $line] - set defaultSeen true - set defaultWritten true - } } + if {$addDefault} { + lappend flags default + set line "$url \[[join $flags ,]\]" + set defaultSeen true + set defaultWritten true + } } } puts $tempfileChannel $line @@ -76,6 +73,9 @@ } file rename ${tempfile} ${sourcesConf} eval file attributes ${sourcesConf} $attributes +} else { + file delete ${tempfile} } + exit 0 -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Dec 1 00:52:11 2008 From: portindex at macports.org (portindex at macports.org) Date: Mon, 1 Dec 2008 00:52:11 -0800 (PST) Subject: [42849] trunk/dports/PortIndex Message-ID: <20081201085213.BD7187D1DC1@beta.macosforge.org> Revision: 42849 http://trac.macports.org/changeset/42849 Author: portindex at macports.org Date: 2008-12-01 00:52:10 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Total number of ports parsed: 5166 Ports successfully parsed: 5166 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-01 08:42:29 UTC (rev 42848) +++ trunk/dports/PortIndex 2008-12-01 08:52:10 UTC (rev 42849) @@ -10033,7 +10033,7 @@ wine-devel 536 variants universal depends_build port:pkgconfig portdir x11/wine-devel description {Wine Is Not an Emulator} homepage http://www.winehq.com/ epoch 0 platforms darwin name wine-devel depends_lib {lib:libX11.6:XFree86 port:expat port:fontconfig port:fontforge port:freetype port:jpeg port:libiconv port:libxml2 port:libxslt port:ncurses port:openssl port:xrender port:zlib} maintainers {ryandesign jwa openmaintainer} long_description {Wine is an implementation of the Windows APIs on top of X11.} version 1.1.9 categories x11 revision 0 winetricks 515 -description {downloads and installs various redistributable runtime libraries} portdir x11/winetricks homepage http://www.kegel.com/wine/ epoch 0 depends_run {path:bin/wine:wine port:cabextract port:openssl bin:curl:curl} platforms darwin name winetricks maintainers ryandesign long_description {winetricks can help you prepare your system for Windows applications that mistakenly assume all users' systems have all the needed redistributable runtime libraries or fonts.} version 20081130 categories x11 revision 0 +description {downloads and installs various redistributable runtime libraries} portdir x11/winetricks homepage http://www.kegel.com/wine/ epoch 0 depends_run {path:bin/wine:wine port:cabextract port:openssl bin:curl:curl} platforms darwin name winetricks maintainers ryandesign long_description {winetricks can help you prepare your system for Windows applications that mistakenly assume all users' systems have all the needed redistributable runtime libraries or fonts.} version 20081201 categories x11 revision 0 wm-extra 338 variants universal description {Extra themes for WindowMaker} portdir x11/wm-extra homepage {http://www.windowmaker.org/ / http://themes.freshmeat.net/browse/918/?topic_id=918} epoch 0 platforms darwin name wm-extra long_description {{Extra themes for WindowMaker}} maintainers nomaintainer categories {x11 x11-wm} version 0.1 revision 2 wmbinclock 426 -------------- next part -------------- An HTML attachment was scrubbed... URL: From noreply at macports.org Mon Dec 1 03:56:17 2008 From: noreply at macports.org (MacPorts) Date: Mon, 01 Dec 2008 11:56:17 -0000 Subject: [MacPorts] UsingMacPortsQuickStart modified Message-ID: <20081201115728.0F8092804C@relay14.apple.com> Changed page "UsingMacPortsQuickStart" by kngspook at gmail.com from 155.47.184.215* Page URL: Diff URL: Revision 7 Comment: My mistake; undoing. -------8<------8<------8<------8<------8<------8<------8<------8<-------- Index: UsingMacPortsQuickStart ========================================================================= --- UsingMacPortsQuickStart (version: 6) +++ UsingMacPortsQuickStart (version: 7) @@ -50,6 +50,8 @@ py-graphpath python/py-graphpath 0.7 small language for ananlysing graph-structured data in Python php4 www/php4 4.4.1 PHP: Hypertext Preprocessor php5 www/php5 5.1.1 PHP: Hypertext Preprocessor + + @@ -111,10 +113,6 @@ `sudo port upgrade outdated` -To upgrade all outdated ports and their dependencies: - -`sudo port upgrade -R outdated` - (You can add the "`-v`" flag following "`port`" in the above commands if you'd like to watch the compiler output.) == What if my port install/upgrade fails? == -------8<------8<------8<------8<------8<------8<------8<------8<-------- * The IP shown here might not mean anything if the user or the server is behind a proxy. -- MacPorts Ports system for Mac OS This is an automated message. Someone at http://www.macports.org/ added your email address to be notified of changes on UsingMacPortsQuickStart. If it was not you, please report to . From narf_tm at macports.org Mon Dec 1 09:16:05 2008 From: narf_tm at macports.org (narf_tm at macports.org) Date: Mon, 1 Dec 2008 09:16:05 -0800 (PST) Subject: [42850] trunk/dports/perl/p5-catalyst-plugin-session-store-dbic/Portfile Message-ID: <20081201171605.92A2C7D70BE@beta.macosforge.org> Revision: 42850 http://trac.macports.org/changeset/42850 Author: narf_tm at macports.org Date: 2008-12-01 09:16:03 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Updated to 0.08. Modified Paths: -------------- trunk/dports/perl/p5-catalyst-plugin-session-store-dbic/Portfile Modified: trunk/dports/perl/p5-catalyst-plugin-session-store-dbic/Portfile =================================================================== --- trunk/dports/perl/p5-catalyst-plugin-session-store-dbic/Portfile 2008-12-01 08:52:10 UTC (rev 42849) +++ trunk/dports/perl/p5-catalyst-plugin-session-store-dbic/Portfile 2008-12-01 17:16:03 UTC (rev 42850) @@ -3,7 +3,7 @@ PortSystem 1.0 PortGroup perl5 1.0 -perl5.setup Catalyst-Plugin-Session-Store-DBIC 0.07 +perl5.setup Catalyst-Plugin-Session-Store-DBIC 0.08 maintainers narf_tm openmaintainer description Store your sessions via DBIx::Class long_description This Catalyst::Plugin::Session storage module saves \ @@ -11,13 +11,11 @@ platforms darwin -checksums md5 3d1e43eb929b3b4b6255d833156aa3bb \ - sha1 85c12c44eb76a9ecef548f0a5ed254c1d51df68f \ - rmd160 7fff2fad1bb4a28243ea65a11c42e58e1551726e +checksums md5 263c049cd74f22a970efcd1192b3c808 \ + sha1 0c9b4821685a401f432f96e71c1477a2fbbcb717 \ + rmd160 b9e5d157cbe05db6c36eab75a08139d730de821d depends_lib-append port:p5-catalyst-runtime \ port:p5-catalyst-plugin-session-store-delegate \ port:p5-class-accessor \ - port:p5-dbix-class \ - port:p5-mime-base64 \ - port:p5-next + port:p5-dbix-class -------------- next part -------------- An HTML attachment was scrubbed... URL: From narf_tm at macports.org Mon Dec 1 09:17:00 2008 From: narf_tm at macports.org (narf_tm at macports.org) Date: Mon, 1 Dec 2008 09:17:00 -0800 (PST) Subject: [42851] trunk/dports/perl/p5-class-dbi/Portfile Message-ID: <20081201171700.56C3D7D7171@beta.macosforge.org> Revision: 42851 http://trac.macports.org/changeset/42851 Author: narf_tm at macports.org Date: 2008-12-01 09:16:59 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Fixed dependancies. Modified Paths: -------------- trunk/dports/perl/p5-class-dbi/Portfile Modified: trunk/dports/perl/p5-class-dbi/Portfile =================================================================== --- trunk/dports/perl/p5-class-dbi/Portfile 2008-12-01 17:16:03 UTC (rev 42850) +++ trunk/dports/perl/p5-class-dbi/Portfile 2008-12-01 17:16:59 UTC (rev 42851) @@ -22,8 +22,6 @@ port:p5-class-data-inheritable \ port:p5-class-trigger \ port:p5-clone \ - port:p5-file-temp \ port:p5-ima-dbi \ - port:p5-scalar-list-utils \ port:p5-universal-moniker \ port:p5-version -------------- next part -------------- An HTML attachment was scrubbed... URL: From narf_tm at macports.org Mon Dec 1 09:18:13 2008 From: narf_tm at macports.org (narf_tm at macports.org) Date: Mon, 1 Dec 2008 09:18:13 -0800 (PST) Subject: [42852] trunk/dports/perl/p5-class-throwable/Portfile Message-ID: <20081201171813.AD95F7D71E1@beta.macosforge.org> Revision: 42852 http://trac.macports.org/changeset/42852 Author: narf_tm at macports.org Date: 2008-12-01 09:18:13 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Fixed dependancies. Modified Paths: -------------- trunk/dports/perl/p5-class-throwable/Portfile Modified: trunk/dports/perl/p5-class-throwable/Portfile =================================================================== --- trunk/dports/perl/p5-class-throwable/Portfile 2008-12-01 17:16:59 UTC (rev 42851) +++ trunk/dports/perl/p5-class-throwable/Portfile 2008-12-01 17:18:13 UTC (rev 42852) @@ -1,21 +1,21 @@ # $Id$ -PortSystem 1.0 -PortGroup perl5 1.0 +PortSystem 1.0 +PortGroup perl5 1.0 -perl5.setup Class-Throwable 0.10 -maintainers narf_tm openmaintainer -description A minimal lightweight exception class -long_description This module implements a minimal lightweight exception \ - object. It is meant to be a compromise between more \ - basic solutions like Carp which can only print \ - information and cannot handle exception objects, \ - and more more complex solutions like Exception::Class \ - which can be used to define complex inline exceptions \ - and has a number of module dependencies. +perl5.setup Class-Throwable 0.10 +maintainers narf_tm openmaintainer +description A minimal lightweight exception class +long_description This module implements a minimal lightweight exception \ + object. It is meant to be a compromise between more \ + basic solutions like Carp which can only print \ + information and cannot handle exception objects, \ + and more more complex solutions like Exception::Class \ + which can be used to define complex inline exceptions \ + and has a number of module dependencies. -platforms darwin +platforms darwin -checksums md5 888ea61abfd8d9b60c024a997de9dbbd - -depends_lib-append port:p5-scalar-list-utils +checksums md5 888ea61abfd8d9b60c024a997de9dbbd \ + sha1 799f58ea7edcf7bdc34ae75e2f9a4a8190478f43 \ + rmd160 28d1fb3f5cbf64d6908513807dcadc6517ae53f8 -------------- next part -------------- An HTML attachment was scrubbed... URL: From narf_tm at macports.org Mon Dec 1 09:19:10 2008 From: narf_tm at macports.org (narf_tm at macports.org) Date: Mon, 1 Dec 2008 09:19:10 -0800 (PST) Subject: [42853] trunk/dports/perl/p5-dbix-class/Portfile Message-ID: <20081201171910.6B9327D7250@beta.macosforge.org> Revision: 42853 http://trac.macports.org/changeset/42853 Author: narf_tm at macports.org Date: 2008-12-01 09:19:10 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Fixed dependancies. Modified Paths: -------------- trunk/dports/perl/p5-dbix-class/Portfile Modified: trunk/dports/perl/p5-dbix-class/Portfile =================================================================== --- trunk/dports/perl/p5-dbix-class/Portfile 2008-12-01 17:18:13 UTC (rev 42852) +++ trunk/dports/perl/p5-dbix-class/Portfile 2008-12-01 17:19:10 UTC (rev 42853) @@ -25,7 +25,6 @@ port:p5-module-find \ port:p5-sql-abstract \ port:p5-sql-abstract-limit \ - port:p5-scalar-list-utils \ port:p5-scope-guard \ port:p5-class-trigger \ port:p5-dbd-sqlite \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From narf_tm at macports.org Mon Dec 1 09:20:00 2008 From: narf_tm at macports.org (narf_tm at macports.org) Date: Mon, 1 Dec 2008 09:20:00 -0800 (PST) Subject: [42854] trunk/dports/perl/p5-dbix-class-schema-loader/Portfile Message-ID: <20081201172000.F18167D72B9@beta.macosforge.org> Revision: 42854 http://trac.macports.org/changeset/42854 Author: narf_tm at macports.org Date: 2008-12-01 09:20:00 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Fixed dependancies. Modified Paths: -------------- trunk/dports/perl/p5-dbix-class-schema-loader/Portfile Modified: trunk/dports/perl/p5-dbix-class-schema-loader/Portfile =================================================================== --- trunk/dports/perl/p5-dbix-class-schema-loader/Portfile 2008-12-01 17:19:10 UTC (rev 42853) +++ trunk/dports/perl/p5-dbix-class-schema-loader/Portfile 2008-12-01 17:20:00 UTC (rev 42854) @@ -24,10 +24,7 @@ port:p5-class-inspector \ port:p5-dbix-class \ port:p5-data-dump \ - port:p5-digest-md5 \ port:p5-lingua-en-inflect-number \ - port:p5-scalar-list-utils \ - port:p5-text-balanced \ port:p5-universal-require \ port:p5-dbd-sqlite \ port:p5-dbi -------------- next part -------------- An HTML attachment was scrubbed... URL: From narf_tm at macports.org Mon Dec 1 09:23:05 2008 From: narf_tm at macports.org (narf_tm at macports.org) Date: Mon, 1 Dec 2008 09:23:05 -0800 (PST) Subject: [42855] trunk/dports/perl/p5-file-remove/Portfile Message-ID: <20081201172306.091D47D7346@beta.macosforge.org> Revision: 42855 http://trac.macports.org/changeset/42855 Author: narf_tm at macports.org Date: 2008-12-01 09:23:05 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Updated to 1.42. Modified Paths: -------------- trunk/dports/perl/p5-file-remove/Portfile Modified: trunk/dports/perl/p5-file-remove/Portfile =================================================================== --- trunk/dports/perl/p5-file-remove/Portfile 2008-12-01 17:20:00 UTC (rev 42854) +++ trunk/dports/perl/p5-file-remove/Portfile 2008-12-01 17:23:05 UTC (rev 42855) @@ -1,11 +1,15 @@ # $Id$ -PortSystem 1.0 -PortGroup perl5 1.0 +PortSystem 1.0 +PortGroup perl5 1.0 -perl5.setup File-Remove 0.31 -maintainers nomaintainer -platforms darwin -checksums md5 8dbe965298ffe80415c3460635bb923f -description Remove files and directories -long_description ${description} +perl5.setup File-Remove 1.42 +maintainers narf_tm openmaintainer +description Remove files and directories +long_description ${description} + +platforms darwin + +checksums md5 7eef25044fc3cc60b6faf0522f865ed5 \ + sha1 09d2bf0d6a86155e17fe4a82e177d5f1c31d39e2 \ + rmd160 4dbc9d092e436984c876126fe716027a9a5ff8b5 -------------- next part -------------- An HTML attachment was scrubbed... URL: From narf_tm at macports.org Mon Dec 1 09:29:42 2008 From: narf_tm at macports.org (narf_tm at macports.org) Date: Mon, 1 Dec 2008 09:29:42 -0800 (PST) Subject: [42856] trunk/dports/perl Message-ID: <20081201172942.EADA27D74D8@beta.macosforge.org> Revision: 42856 http://trac.macports.org/changeset/42856 Author: narf_tm at macports.org Date: 2008-12-01 09:29:41 -0800 (Mon, 01 Dec 2008) Log Message: ----------- New port p5-extutils-install 1.52. Added Paths: ----------- trunk/dports/perl/p5-extutils-install/ trunk/dports/perl/p5-extutils-install/Portfile Added: trunk/dports/perl/p5-extutils-install/Portfile =================================================================== --- trunk/dports/perl/p5-extutils-install/Portfile (rev 0) +++ trunk/dports/perl/p5-extutils-install/Portfile 2008-12-01 17:29:41 UTC (rev 42856) @@ -0,0 +1,27 @@ +# $Id$ + +PortSystem 1.0 +PortGroup perl5 1.0 + +perl5.setup ExtUtils-Install 1.52 +maintainers narf_tm openmaintainer +description install files from here to there +long_description Handles the installing and uninstalling of perl \ + modules, scripts, man pages, etc... + +platforms darwin + +checksums md5 dae7528d24d2aa14204df3a873b77e5a \ + sha1 7660067021b72fca7898d0963a92189690d78491 \ + rmd160 2391d02cfd9631eeae4dcc634b650e6cd2bade79 + +# Perl searches vendor location last, so this won't +# override the older version included with perl +# if we install it in the vendor location +set perl5.lib ${prefix}/lib/perl5/${perl5.version} + +configure.args + +post-destroot { + ui_msg "You must install or activate this package with '-f' (force) as it needs to overwrite files installed by the perl5.8 port" +} Property changes on: trunk/dports/perl/p5-extutils-install/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From narf_tm at macports.org Mon Dec 1 09:34:29 2008 From: narf_tm at macports.org (narf_tm at macports.org) Date: Mon, 1 Dec 2008 09:34:29 -0800 (PST) Subject: [42857] trunk/dports/perl/p5-module-install/Portfile Message-ID: <20081201173429.6C3B87D75BC@beta.macosforge.org> Revision: 42857 http://trac.macports.org/changeset/42857 Author: narf_tm at macports.org Date: 2008-12-01 09:34:29 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Updated to 0.77. Modified Paths: -------------- trunk/dports/perl/p5-module-install/Portfile Modified: trunk/dports/perl/p5-module-install/Portfile =================================================================== --- trunk/dports/perl/p5-module-install/Portfile 2008-12-01 17:29:41 UTC (rev 42856) +++ trunk/dports/perl/p5-module-install/Portfile 2008-12-01 17:34:29 UTC (rev 42857) @@ -3,7 +3,7 @@ PortSystem 1.0 PortGroup perl5 1.0 -perl5.setup Module-Install 0.75 +perl5.setup Module-Install 0.77 maintainers narf_tm openmaintainer description Standalone, extensible Perl module installer long_description Module::Install is a package for writing installers \ @@ -15,12 +15,14 @@ platforms darwin -checksums md5 ea6724dd43cfb70f02d5f41606cb1d23 \ - sha1 4c4e905f03e56736f036dddd366ae6e338bd41a3 \ - rmd160 897129fce23c6934c318a575aff4524f5dd03f79 +checksums md5 1bcc0b4e673188e7b97f9f0b691954cf \ + sha1 35d99c4a9ca6bc28c9aba467a84bd35c9904c3fc \ + rmd160 5f60d9d00b4ead81cfd82edef90c2df4c80dc14b depends_lib-append port:p5-archive-tar \ + port:p5-extutils-install \ port:p5-extutils-parsexs \ + port:p5-file-remove \ port:p5-module-build \ port:p5-module-corelist \ port:p5-module-scandeps \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From narf_tm at macports.org Mon Dec 1 09:37:46 2008 From: narf_tm at macports.org (narf_tm at macports.org) Date: Mon, 1 Dec 2008 09:37:46 -0800 (PST) Subject: [42858] trunk/dports/perl/p5-tree-simple-visitorfactory/Portfile Message-ID: <20081201173746.573D77D7654@beta.macosforge.org> Revision: 42858 http://trac.macports.org/changeset/42858 Author: narf_tm at macports.org Date: 2008-12-01 09:37:45 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Fixed dependancies. Modified Paths: -------------- trunk/dports/perl/p5-tree-simple-visitorfactory/Portfile Modified: trunk/dports/perl/p5-tree-simple-visitorfactory/Portfile =================================================================== --- trunk/dports/perl/p5-tree-simple-visitorfactory/Portfile 2008-12-01 17:34:29 UTC (rev 42857) +++ trunk/dports/perl/p5-tree-simple-visitorfactory/Portfile 2008-12-01 17:37:45 UTC (rev 42858) @@ -11,8 +11,9 @@ platforms darwin -checksums md5 ff7803a452e7fb188c71048cc2f69f6e +checksums md5 ff7803a452e7fb188c71048cc2f69f6e \ + sha1 f0b9f4cb3231dc9c0a75112a9d4e1fec5e569b81 \ + rmd160 51862755ea5f53c5b2e48ce63777974ecf51287d depends_lib-append port:p5-tree-simple \ - port:p5-scalar-list-utils \ port:p5-test-exception -------------- next part -------------- An HTML attachment was scrubbed... URL: From narf_tm at macports.org Mon Dec 1 09:43:05 2008 From: narf_tm at macports.org (narf_tm at macports.org) Date: Mon, 1 Dec 2008 09:43:05 -0800 (PST) Subject: [42859] trunk/dports/perl Message-ID: <20081201174305.6BCCC7D778A@beta.macosforge.org> Revision: 42859 http://trac.macports.org/changeset/42859 Author: narf_tm at macports.org Date: 2008-12-01 09:43:04 -0800 (Mon, 01 Dec 2008) Log Message: ----------- New port p5-http-response-encoding 0.05. Added Paths: ----------- trunk/dports/perl/p5-http-response-encoding/ trunk/dports/perl/p5-http-response-encoding/Portfile Added: trunk/dports/perl/p5-http-response-encoding/Portfile =================================================================== --- trunk/dports/perl/p5-http-response-encoding/Portfile (rev 0) +++ trunk/dports/perl/p5-http-response-encoding/Portfile 2008-12-01 17:43:04 UTC (rev 42859) @@ -0,0 +1,17 @@ +# $Id$ + +PortSystem 1.0 +PortGroup perl5 1.0 + +perl5.setup HTTP-Response-Encoding 0.05 +maintainers narf_tm openmaintainer +description Adds encoding() to HTTP::Response +long_description ${description} + +platforms darwin + +checksums md5 bb5880687bfb8b1e220c5c3c2b7d1408 \ + sha1 16893e20d0d943c7e5317d2f9d85c9bbfc16dba3 \ + rmd160 3a46c671b4e37abd279ef6183bd5e52467251d87 + +depends_lib-append port:p5-libwww-perl Property changes on: trunk/dports/perl/p5-http-response-encoding/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From narf_tm at macports.org Mon Dec 1 09:45:15 2008 From: narf_tm at macports.org (narf_tm at macports.org) Date: Mon, 1 Dec 2008 09:45:15 -0800 (PST) Subject: [42860] trunk/dports/perl/p5-www-mechanize/Portfile Message-ID: <20081201174515.D7EF07D7815@beta.macosforge.org> Revision: 42860 http://trac.macports.org/changeset/42860 Author: narf_tm at macports.org Date: 2008-12-01 09:45:15 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Updated to 1.52. Modified Paths: -------------- trunk/dports/perl/p5-www-mechanize/Portfile Modified: trunk/dports/perl/p5-www-mechanize/Portfile =================================================================== --- trunk/dports/perl/p5-www-mechanize/Portfile 2008-12-01 17:43:04 UTC (rev 42859) +++ trunk/dports/perl/p5-www-mechanize/Portfile 2008-12-01 17:45:15 UTC (rev 42860) @@ -3,7 +3,7 @@ PortSystem 1.0 PortGroup perl5 1.0 -perl5.setup WWW-Mechanize 1.50 +perl5.setup WWW-Mechanize 1.52 maintainers narf_tm openmaintainer description Handy web browsing in a Perl object long_description WWW::Mechanize, or Mech for short, helps you automate \ @@ -17,10 +17,11 @@ platforms darwin -checksums md5 7981710e0b510c1c4b57498d8d37c103 \ - sha1 050984e45edf0881d4ada9f79c701925c4b23836 \ - rmd160 223b1ff23f4d276e1d95c69fb2c3effc9a36e3e1 +checksums md5 8ece5ea7690eb6a632a46887f0d2e98e \ + sha1 e5a358e6c5db6936a40651b8ed82f3fb16b7de1c \ + rmd160 b45f76fbcb35b291653c280c01f6494fe2cf05f4 depends_lib-append port:p5-libwww-perl \ port:p5-html-parser \ + port:p5-http-response-encoding \ port:p5-uri -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Dec 1 09:51:59 2008 From: portindex at macports.org (portindex at macports.org) Date: Mon, 1 Dec 2008 09:51:59 -0800 (PST) Subject: [42861] trunk/dports/PortIndex Message-ID: <20081201175201.4B16F7D7934@beta.macosforge.org> Revision: 42861 http://trac.macports.org/changeset/42861 Author: portindex at macports.org Date: 2008-12-01 09:51:59 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Total number of ports parsed: 5168 Ports successfully parsed: 5168 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-01 17:45:15 UTC (rev 42860) +++ trunk/dports/PortIndex 2008-12-01 17:51:59 UTC (rev 42861) @@ -5464,8 +5464,8 @@ variants universal portdir perl/p5-catalyst-plugin-session-state-cookie description {Maintain session IDs using cookies.} homepage http://search.cpan.org/dist/Catalyst-Plugin-Session-State-Cookie/ epoch 0 platforms darwin name p5-catalyst-plugin-session-state-cookie depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-catalyst-runtime port:p5-catalyst-plugin-session port:p5-test-mockobject} maintainers {narf_tm openmaintainer} long_description {In order for Catalyst::Plugin::Session to work the session ID needs to be stored on the client, and the session data needs to be stored on the server. This plugin stores the session ID on the client using the cookie mechanism.} version 0.09 categories perl revision 0 p5-catalyst-plugin-session-store-dbi 539 variants universal portdir perl/p5-catalyst-plugin-session-store-dbi description {Store your sessions in a database} homepage http://search.cpan.org/dist/Catalyst-Plugin-Session-Store-DBI/ epoch 0 platforms darwin name p5-catalyst-plugin-session-store-dbi depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-catalyst-runtime port:p5-catalyst-plugin-session port:p5-dbi} maintainers {narf_tm openmaintainer} long_description {This storage module will store session data in a database using DBI.} version 0.13 categories perl revision 0 -p5-catalyst-plugin-session-store-dbic 652 -variants universal portdir perl/p5-catalyst-plugin-session-store-dbic description {Store your sessions via DBIx::Class} homepage http://search.cpan.org/dist/Catalyst-Plugin-Session-Store-DBIC/ epoch 0 platforms darwin name p5-catalyst-plugin-session-store-dbic depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-catalyst-runtime port:p5-catalyst-plugin-session-store-delegate port:p5-class-accessor port:p5-dbix-class port:p5-mime-base64 port:p5-next} maintainers {narf_tm openmaintainer} long_description {This Catalyst::Plugin::Session storage module saves session data in your database via DBIx::Class.} version 0.07 categories perl revision 0 +p5-catalyst-plugin-session-store-dbic 619 +variants universal portdir perl/p5-catalyst-plugin-session-store-dbic description {Store your sessions via DBIx::Class} homepage http://search.cpan.org/dist/Catalyst-Plugin-Session-Store-DBIC/ epoch 0 platforms darwin name p5-catalyst-plugin-session-store-dbic depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-catalyst-runtime port:p5-catalyst-plugin-session-store-delegate port:p5-class-accessor port:p5-dbix-class} maintainers {narf_tm openmaintainer} long_description {This Catalyst::Plugin::Session storage module saves session data in your database via DBIx::Class.} version 0.08 categories perl revision 0 p5-catalyst-plugin-session-store-delegate 602 variants universal portdir perl/p5-catalyst-plugin-session-store-delegate description {Delegate session storage to an application model object.} homepage http://search.cpan.org/dist/Catalyst-Plugin-Session-Store-Delegate/ epoch 0 platforms darwin name p5-catalyst-plugin-session-store-delegate depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-catalyst-plugin-session port:p5-class-accessor port:p5-test-use-ok} maintainers {narf_tm openmaintainer} long_description {This store plugins makes delegating session storage to a first class object model easy.} version 0.02 categories perl revision 0 p5-catalyst-plugin-stacktrace 586 @@ -5518,8 +5518,8 @@ variants universal portdir perl/p5-class-data-accessor description {Inheritable, overridable class and instance data accessor creation} homepage http://search.cpan.org/dist/Class-Data-Accessor/ epoch 0 platforms darwin name p5-class-data-accessor depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {narf_tm openmaintainer} long_description {Class::Data::Accessor is the marriage of Class::Accessor and Class::Data::Inheritable into a single module.} version 0.04004 categories perl revision 0 p5-class-data-inheritable 617 variants universal portdir perl/p5-class-data-inheritable description {Inheritable, overridable class data} homepage http://search.cpan.org/dist/Class-Data-Inheritable/ epoch 0 platforms darwin name p5-class-data-inheritable depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {narf_tm openmaintainer} long_description {Class::Data::Inheritable is for creating accessor/mutators to class data. That is, if you want to store something about your class as a whole (instead of about a single object). This data is then inherited by your subclasses and can be overriden.} version 0.08 categories perl revision 0 -p5-class-dbi 829 -variants universal portdir perl/p5-class-dbi description {Simple Database Abstraction} homepage http://search.cpan.org/dist/Class-DBI/ epoch 0 platforms darwin name p5-class-dbi depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-class-accessor port:p5-class-data-inheritable port:p5-class-trigger port:p5-clone port:p5-file-temp port:p5-ima-dbi port:p5-scalar-list-utils port:p5-universal-moniker port:p5-version} maintainers {narf_tm openmaintainer} long_description {Class::DBI provides a convenient abstraction layer to a database. It not only provides a simple database to object mapping layer, but can be used to implement several higher order database functions (triggers, referential integrity, cascading delete etc.), at the application level, rather than at the database.} version 3.0.17 categories perl revision 0 +p5-class-dbi 785 +variants universal portdir perl/p5-class-dbi description {Simple Database Abstraction} homepage http://search.cpan.org/dist/Class-DBI/ epoch 0 platforms darwin name p5-class-dbi depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-class-accessor port:p5-class-data-inheritable port:p5-class-trigger port:p5-clone port:p5-ima-dbi port:p5-universal-moniker port:p5-version} maintainers {narf_tm openmaintainer} long_description {Class::DBI provides a convenient abstraction layer to a database. It not only provides a simple database to object mapping layer, but can be used to implement several higher order database functions (triggers, referential integrity, cascading delete etc.), at the application level, rather than at the database.} version 3.0.17 categories perl revision 0 p5-class-dbi-abstractsearch 533 variants universal portdir perl/p5-class-dbi-abstractsearch description {Abstract Class::DBI's SQL with SQL::Abstract::Limit} homepage http://search.cpan.org/dist/Class-DBI-AbstractSearch/ epoch 0 platforms darwin name p5-class-dbi-abstractsearch depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-class-dbi port:p5-sql-abstract-limit} maintainers {narf_tm openmaintainer} long_description {Class::DBI::AbstractSearch is a Class::DBI plugin to glue SQL::Abstract::Limit into Class::DBI.} version 0.07 categories perl revision 0 p5-class-dbi-mysql 559 @@ -5556,8 +5556,8 @@ variants universal portdir perl/p5-class-returnvalue description {A return-value object that lets you treat it as as a boolean, array or object} homepage http://search.cpan.org/dist/Class-ReturnValue/ epoch 0 platforms darwin name p5-class-returnvalue depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-devel-stacktrace} maintainers nomaintainer long_description {Class::ReturnValue is a clever return value object that can allow code calling your routine to expect: a boolean value (did it fail) or a list (what are the return values).} version 0.55 categories perl revision 0 p5-class-singleton 901 variants universal portdir perl/p5-class-singleton description {Implementation of a Singleton class} homepage http://search.cpan.org/dist/Class-Singleton/ epoch 0 platforms darwin name p5-class-singleton depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {narf_tm openmaintainer} long_description {This is the Class::Singleton module. A Singleton describes an object class that can have only one instance in any system. An example of a Singleton might be a print spooler or system registry. This module implements a Singleton class from which other classes can be derived. By itself, the Class::Singleton module does very little other than manage the instantiation of a single object. In deriving a class from Class::Singleton, your module will inherit the Singleton instantiation method and can implement whatever specific functionality is required.} version 1.4 categories perl revision 0 -p5-class-throwable 729 -variants universal portdir perl/p5-class-throwable description {A minimal lightweight exception class} homepage http://search.cpan.org/dist/Class-Throwable/ epoch 0 platforms darwin name p5-class-throwable depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-scalar-list-utils} maintainers {narf_tm openmaintainer} long_description {This module implements a minimal lightweight exception object. It is meant to be a compromise between more basic solutions like Carp which can only print information and cannot handle exception objects, and more more complex solutions like Exception::Class which can be used to define complex inline exceptions and has a number of module dependencies.} version 0.10 categories perl revision 0 +p5-class-throwable 703 +variants universal portdir perl/p5-class-throwable description {A minimal lightweight exception class} homepage http://search.cpan.org/dist/Class-Throwable/ epoch 0 platforms darwin name p5-class-throwable depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {narf_tm openmaintainer} long_description {This module implements a minimal lightweight exception object. It is meant to be a compromise between more basic solutions like Carp which can only print information and cannot handle exception objects, and more more complex solutions like Exception::Class which can be used to define complex inline exceptions and has a number of module dependencies.} version 0.10 categories perl revision 0 p5-class-trigger 477 variants universal portdir perl/p5-class-trigger description {Mixin to add / call inheritable triggers} homepage http://search.cpan.org/dist/Class-Trigger/ epoch 0 platforms darwin name p5-class-trigger depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-io-stringy} maintainers {narf_tm openmaintainer} long_description {Class::Trigger is a mixin class to add / call triggers (or hooks) that get called at some points you specify.} version 0.13 categories perl revision 0 p5-class-whitehole 584 @@ -5698,10 +5698,10 @@ variants universal portdir perl/p5-dbd-sqlite2 description {perl dbd interface to SQLite (old version)} homepage http://search.cpan.org/dist/DBD-SQLite2/ epoch 0 platforms darwin name p5-dbd-sqlite2 depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-dbi} maintainers {jmr openmaintainer} long_description {{perl dbd interface to SQLite (old version)}} version 0.33 categories perl revision 0 p5-dbi 615 variants universal portdir perl/p5-dbi description {Abstract database access module for Perl} homepage http://dbi.perl.org/ epoch 0 platforms darwin name p5-dbi depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {narf_tm openmaintainer} long_description {The DBI module enables your Perl applications to access multiple database types transparently. You can connect to MySQL, MSSQL, Oracle, Informix, Sybase, ODBC etc. without having to know the different underlying interfaces of each. The API defined by DBI will work on all these database types and many more.} version 1.607 categories perl revision 0 -p5-dbix-class 783 -variants universal portdir perl/p5-dbix-class description {Extensible and flexible object <-> relational mapper.} homepage http://search.cpan.org/dist/DBIx-Class/ epoch 0 platforms darwin name p5-dbix-class depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-carp-clan port:p5-class-accessor-grouped port:p5-class-c3 port:p5-class-c3-componentised port:p5-class-inspector port:p5-dbi port:p5-data-page port:p5-json-any port:p5-module-find port:p5-sql-abstract port:p5-sql-abstract-limit port:p5-scalar-list-utils port:p5-scope-guard port:p5-class-trigger port:p5-dbd-sqlite port:p5-dbix-contextualfetch port:p5-test-simple} maintainers {narf_tm openmaintainer} long_description {{Extensible and flexible object <-> relational mapper.}} version 0.08010 categories perl revision 0 -p5-dbix-class-schema-loader 869 -variants universal portdir perl/p5-dbix-class-schema-loader description {Dynamic definition of a DBIx::Class::Schema} homepage http://search.cpan.org/dist/DBIx-Class-Schema-Loader/ epoch 0 platforms darwin name p5-dbix-class-schema-loader depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-carp-clan port:p5-class-accessor port:p5-class-c3 port:p5-class-data-accessor port:p5-class-inspector port:p5-dbix-class port:p5-data-dump port:p5-digest-md5 port:p5-lingua-en-inflect-number port:p5-scalar-list-utils port:p5-text-balanced port:p5-universal-require port:p5-dbd-sqlite port:p5-dbi} maintainers {narf_tm openmaintainer} long_description {DBIx::Class::Schema::Loader automates the definition of a DBIx::Class::Schema by scanning database table definitions and setting up the columns, primary keys, and relationships.} version 0.04005 categories perl revision 0 +p5-dbix-class 757 +variants universal portdir perl/p5-dbix-class description {Extensible and flexible object <-> relational mapper.} homepage http://search.cpan.org/dist/DBIx-Class/ epoch 0 platforms darwin name p5-dbix-class depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-carp-clan port:p5-class-accessor-grouped port:p5-class-c3 port:p5-class-c3-componentised port:p5-class-inspector port:p5-dbi port:p5-data-page port:p5-json-any port:p5-module-find port:p5-sql-abstract port:p5-sql-abstract-limit port:p5-scope-guard port:p5-class-trigger port:p5-dbd-sqlite port:p5-dbix-contextualfetch port:p5-test-simple} maintainers {narf_tm openmaintainer} long_description {{Extensible and flexible object <-> relational mapper.}} version 0.08010 categories perl revision 0 +p5-dbix-class-schema-loader 802 +variants universal portdir perl/p5-dbix-class-schema-loader description {Dynamic definition of a DBIx::Class::Schema} homepage http://search.cpan.org/dist/DBIx-Class-Schema-Loader/ epoch 0 platforms darwin name p5-dbix-class-schema-loader depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-carp-clan port:p5-class-accessor port:p5-class-c3 port:p5-class-data-accessor port:p5-class-inspector port:p5-dbix-class port:p5-data-dump port:p5-lingua-en-inflect-number port:p5-universal-require port:p5-dbd-sqlite port:p5-dbi} maintainers {narf_tm openmaintainer} long_description {DBIx::Class::Schema::Loader automates the definition of a DBIx::Class::Schema by scanning database table definitions and setting up the columns, primary keys, and relationships.} version 0.04005 categories perl revision 0 p5-dbix-contextualfetch 634 variants universal portdir perl/p5-dbix-contextualfetch description {Add contextual fetches to DBI} homepage http://search.cpan.org/dist/DBIx-ContextualFetch/ epoch 0 platforms darwin name p5-dbix-contextualfetch depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-dbi} maintainers {narf_tm openmaintainer} long_description {It always struck me odd that DBI didn't take much advantage of Perl's context sensitivity. DBIx::ContextualFetch redefines some of the various fetch methods to fix this oversight. It also adds a few new methods for convenience (though not necessarily efficiency).} version 1.03 categories perl revision 0 p5-dbix-dbschema 369 @@ -5790,6 +5790,8 @@ variants universal portdir perl/p5-extutils-depends description {Easily build XS extensions that depend on XS} homepage http://gtk2-perl.sourceforge.net/ epoch 0 platforms darwin name p5-extutils-depends depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers nomaintainer long_description {{Easily build XS extensions that depend on XS}} version 0.301 categories perl revision 0 p5-extutils-f77 481 variants {universal darwin} portdir perl/p5-extutils-f77 description {Helper for linking C with Fortran subroutines} homepage http://search.cpan.org/dist/ExtUtils-F77/ epoch 0 platforms darwin name p5-extutils-f77 depends_lib {{path:\${prefix}/bin/perl:perl5.8} bin:g77:gcc34} maintainers nomaintainer long_description {ExtUtils::F77 describes to the calling perl code how to link C programs with Fortran subroutines on the current system.} version 1.14 categories perl revision 0 +p5-extutils-install 433 +variants universal portdir perl/p5-extutils-install description {install files from here to there} homepage http://search.cpan.org/dist/ExtUtils-Install/ epoch 0 platforms darwin name p5-extutils-install depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {narf_tm openmaintainer} long_description {Handles the installing and uninstalling of perl modules, scripts, man pages, etc...} version 1.52 categories perl revision 0 p5-extutils-parsexs 677 variants universal portdir perl/p5-extutils-parsexs description {Converts Perl XS code into C code} homepage http://search.cpan.org/dist/ExtUtils-ParseXS/ epoch 0 platforms darwin name p5-extutils-parsexs depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-extutils-cbuilder} maintainers {narf_tm openmaintainer} long_description {ExtUtils::ParseXS will compile XS code into C code by embedding the constructs necessary to let C functions manipulate Perl values and creates the glue necessary to let Perl access those functions. The compiler uses typemaps to determine how to map C function parameters and variables to Perl values.} version 2.19 categories perl revision 0 p5-extutils-pkgconfig 368 @@ -5822,8 +5824,8 @@ variants universal portdir perl/p5-file-ncopy description {Copy file, file Copy {file[s]} | {dir[s],} dir} homepage http://search.cpan.org/dist/file-NCopy/ epoch 0 platforms darwin name p5-file-ncopy depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers nomaintainer long_description {{Copy file, file Copy {file[s]} | {dir[s],} dir}} version 0.34 categories perl revision 0 p5-file-next 386 variants universal portdir perl/p5-file-next description {File-finding iterator} homepage http://search.cpan.org/dist/File-Next/ epoch 0 platforms darwin name p5-file-next depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {mschout at gkg.net openmaintainer} long_description {File::Next is a lightweight, taint-safe file-finding module.} version 1.02 categories perl revision 0 -p5-file-remove 349 -variants universal portdir perl/p5-file-remove description {Remove files and directories} homepage http://search.cpan.org/dist/File-Remove/ epoch 0 platforms darwin name p5-file-remove depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers nomaintainer long_description {{Remove files and directories}} version 0.31 categories perl revision 0 +p5-file-remove 361 +variants universal portdir perl/p5-file-remove description {Remove files and directories} homepage http://search.cpan.org/dist/File-Remove/ epoch 0 platforms darwin name p5-file-remove depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {narf_tm openmaintainer} long_description {{Remove files and directories}} version 1.42 categories perl revision 0 p5-file-rsyncp 383 variants universal portdir perl/p5-file-rsyncp description {A Perl implementation of an Rsync client.} homepage http://search.cpan.org/dist/File-RsyncP/ epoch 0 platforms darwin name p5-file-rsyncp depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {jmr openmaintainer} long_description {{A Perl implementation of an Rsync client.}} version 0.68 categories perl revision 0 p5-file-tail 559 @@ -5950,6 +5952,8 @@ variants universal portdir perl/p5-http-recorder description {Record interaction with websites} homepage http://search.cpan.org/dist/HTTP-Recorder/ epoch 0 platforms darwin name p5-http-recorder depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-libwww-perl port:p5-html-parser port:p5-uri} maintainers sal at email.arc.nasa.gov long_description {This is a browser-independent recorder for recording interactions with web sites.} version 0.05 categories perl revision 0 p5-http-request-ascgi 488 variants universal portdir perl/p5-http-request-ascgi description {Setup a CGI enviroment from a HTTP::Request} homepage http://search.cpan.org/dist/HTTP-Request-AsCGI/ epoch 0 platforms darwin name p5-http-request-ascgi depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-class-accessor port:p5-libwww-perl} maintainers {narf_tm openmaintainer} long_description {Provides a convinient way of setting up an CGI enviroment from a HTTP::Request.} version 0.5 categories perl revision 0 +p5-http-response-encoding 424 +variants universal portdir perl/p5-http-response-encoding description {Adds encoding() to HTTP::Response} homepage http://search.cpan.org/dist/HTTP-Response-Encoding/ epoch 0 platforms darwin name p5-http-response-encoding depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-libwww-perl} maintainers {narf_tm openmaintainer} long_description {{Adds encoding() to HTTP::Response}} version 0.05 categories perl revision 0 p5-http-server-simple 410 variants universal portdir perl/p5-http-server-simple description {A very simple standalone HTTP daemon} homepage http://search.cpan.org/dist/HTTP-Server-Simple/ epoch 0 platforms darwin name p5-http-server-simple depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-uri} maintainers {narf_tm openmaintainer} long_description {{A very simple standalone HTTP daemon}} version 0.36 categories perl revision 0 p5-http-server-simple-mason 501 @@ -6140,8 +6144,8 @@ variants universal portdir perl/p5-module-corelist description {what modules shipped with versions of perl} homepage http://search.cpan.org/dist/Module-CoreList/ epoch 0 platforms darwin name p5-module-corelist depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {narf_tm openmaintainer} long_description {Module::CoreList contains the hash of hashes %Module::CoreList::version, that is keyed on perl version as indicated in {$].}} version 2.15 categories perl revision 0 p5-module-find 409 variants universal portdir perl/p5-module-find description {Find and use installed modules in a (sub)category} homepage http://search.cpan.org/dist/Module-Find/ epoch 0 platforms darwin name p5-module-find depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {narf_tm openmaintainer} long_description {Module::Find lets you find and use modules in categories.} version 0.06 categories perl revision 0 -p5-module-install 792 -variants universal portdir perl/p5-module-install description {Standalone, extensible Perl module installer} homepage http://search.cpan.org/dist/Module-Install/ epoch 0 platforms darwin name p5-module-install depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-archive-tar port:p5-extutils-parsexs port:p5-module-build port:p5-module-corelist port:p5-module-scandeps port:p5-par-dist port:p5-yaml-tiny} maintainers {narf_tm openmaintainer} long_description {Module::Install is a package for writing installers for CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a strictly correct manner with both the ExtUtils::MakeMaker and Module::Build build systems, and will run on any Perl installation version 5.004 or newer.} version 0.75 categories perl revision 0 +p5-module-install 837 +variants universal portdir perl/p5-module-install description {Standalone, extensible Perl module installer} homepage http://search.cpan.org/dist/Module-Install/ epoch 0 platforms darwin name p5-module-install depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-archive-tar port:p5-extutils-install port:p5-extutils-parsexs port:p5-file-remove port:p5-module-build port:p5-module-corelist port:p5-module-scandeps port:p5-par-dist port:p5-yaml-tiny} maintainers {narf_tm openmaintainer} long_description {Module::Install is a package for writing installers for CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a strictly correct manner with both the ExtUtils::MakeMaker and Module::Build build systems, and will run on any Perl installation version 5.004 or newer.} version 0.77 categories perl revision 0 p5-module-pluggable 435 variants universal portdir perl/p5-module-pluggable description {automatically give your module the ability to have plugins} homepage http://search.cpan.org/dist/Module-Pluggable/ epoch 0 platforms darwin name p5-module-pluggable depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {narf_tm openmaintainer} long_description {{automatically give your module the ability to have plugins}} version 3.8 categories perl revision 0 p5-module-refresh 380 @@ -6518,8 +6522,8 @@ variants universal portdir perl/p5-tree-simple description {A simple tree object} homepage http://search.cpan.org/dist/Tree-Simple/ epoch 0 platforms darwin name p5-tree-simple depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-test-exception} maintainers {narf_tm openmaintainer} long_description {{A simple tree object}} version 1.18 categories perl revision 0 p5-tree-simple-view 517 variants universal portdir perl/p5-tree-simple-view description {A set of classes for viewing Tree::Simple hierarchies} homepage http://search.cpan.org/dist/Tree-Simple-View/ epoch 0 platforms darwin name p5-tree-simple-view depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-class-throwable port:p5-tree-simple port:p5-test-exception port:p5-test-longstring} maintainers {narf_tm openmaintainer} long_description {{A set of classes for viewing Tree::Simple hierarchies}} version 0.17 categories perl revision 0 -p5-tree-simple-visitorfactory 549 -variants universal portdir perl/p5-tree-simple-visitorfactory description {A factory object for dispensing Visitor objects} homepage http://search.cpan.org/dist/Tree-Simple-VisitorFactory/ epoch 0 platforms darwin name p5-tree-simple-visitorfactory depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-tree-simple port:p5-scalar-list-utils port:p5-test-exception} maintainers {narf_tm openmaintainer} long_description {This object is really just a factory for dispensing Tree::Simple::Visitor::* objects.} version 0.10 categories perl revision 0 +p5-tree-simple-visitorfactory 523 +variants universal portdir perl/p5-tree-simple-visitorfactory description {A factory object for dispensing Visitor objects} homepage http://search.cpan.org/dist/Tree-Simple-VisitorFactory/ epoch 0 platforms darwin name p5-tree-simple-visitorfactory depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-tree-simple port:p5-test-exception} maintainers {narf_tm openmaintainer} long_description {This object is really just a factory for dispensing Tree::Simple::Visitor::* objects.} version 0.10 categories perl revision 0 p5-unicode-collate 345 variants universal portdir perl/p5-unicode-collate description {perl Unicode sorting} homepage http://search.cpan.org/dist/Unicode-Collate/ epoch 0 platforms darwin name p5-unicode-collate depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers nomaintainer long_description {{perl Unicode sorting}} version 0.52 categories perl revision 0 p5-unicode-string 814 @@ -6552,8 +6556,8 @@ variants universal portdir perl/p5-vonage-click2call description {Perl extension for using the Vonage Click2Call service} homepage http://search.cpan.org/~jv/Data-Hexify epoch 0 platforms darwin name p5-vonage-click2call depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers sal at email.arc.nasa.gov long_description {{Perl extension for using the Vonage Click2Call service}} version 0.11 categories perl revision 0 p5-want 330 variants universal portdir perl/p5-want description {A generalisation of wantarray} homepage http://search.cpan.org/dist/Want/ epoch 0 platforms darwin name p5-want depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers nomaintainer long_description {{A generalisation of wantarray}} version 0.12 categories perl revision 0 -p5-www-mechanize 827 -variants universal portdir perl/p5-www-mechanize description {Handy web browsing in a Perl object} homepage http://search.cpan.org/dist/WWW-Mechanize/ epoch 0 platforms darwin name p5-www-mechanize depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-libwww-perl port:p5-html-parser port:p5-uri} maintainers {narf_tm openmaintainer} long_description {WWW::Mechanize, or Mech for short, helps you automate interaction with a website. It supports performing a sequence of page fetches including following links and submitting forms. Each fetched page is parsed and its links and forms are extracted. A link or a form can be selected, form fields can be filled and the next page can be fetched. Mech also stores a history of the URLs you've visited, which can be queried and revisited.} version 1.50 categories perl revision 0 +p5-www-mechanize 858 +variants universal portdir perl/p5-www-mechanize description {Handy web browsing in a Perl object} homepage http://search.cpan.org/dist/WWW-Mechanize/ epoch 0 platforms darwin name p5-www-mechanize depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-libwww-perl port:p5-html-parser port:p5-http-response-encoding port:p5-uri} maintainers {narf_tm openmaintainer} long_description {WWW::Mechanize, or Mech for short, helps you automate interaction with a website. It supports performing a sequence of page fetches including following links and submitting forms. Each fetched page is parsed and its links and forms are extracted. A link or a form can be selected, form fields can be filled and the next page can be fetched. Mech also stores a history of the URLs you've visited, which can be queried and revisited.} version 1.52 categories perl revision 0 p5-www-search 501 variants universal portdir perl/p5-www-search description {WWW::Search provides access to search engines} homepage http://search.cpan.org/dist/WWW-Search/ epoch 0 platforms darwin name p5-www-search depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-libwww-perl port:p5-uri port:p5-html-parser} maintainers {raimue openmaintainer} long_description {WWW::Search is a collection of Perl modules which provide an API to search engines on the world-wide web} version 2.504 categories perl revision 0 p5-x11-protocol 529 -------------- next part -------------- An HTML attachment was scrubbed... URL: From saispo at macports.org Mon Dec 1 10:06:22 2008 From: saispo at macports.org (saispo at macports.org) Date: Mon, 1 Dec 2008 10:06:22 -0800 (PST) Subject: [42862] trunk/dports/lang/gst/Portfile Message-ID: <20081201180622.5AFE37D7A62@beta.macosforge.org> Revision: 42862 http://trac.macports.org/changeset/42862 Author: saispo at macports.org Date: 2008-12-01 10:06:21 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Upgrade port to gst v3.1 Modified Paths: -------------- trunk/dports/lang/gst/Portfile Modified: trunk/dports/lang/gst/Portfile =================================================================== --- trunk/dports/lang/gst/Portfile 2008-12-01 17:51:59 UTC (rev 42861) +++ trunk/dports/lang/gst/Portfile 2008-12-01 18:06:21 UTC (rev 42862) @@ -3,10 +3,10 @@ PortSystem 1.0 name gst -version 3.0.3 +version 3.1 revision 1 categories lang -maintainers landonf openmaintainer +maintainers saispo at macports.org description Free implementation of Smalltalk-80 long_description \ GNU Smalltalk is a free implementation of the Smalltalk-80 language \ @@ -17,11 +17,8 @@ platforms darwin master_sites gnu:smalltalk distname smalltalk-${version} -checksums md5 76b28a56eb60730de81680263f1a64ca \ - sha1 6b1b72b1d33633374c2f3218e5a1fce35f07f61f \ - rmd160 dc4502f1ee5919ed47c4dc3e2392990fbc4a5750 +checksums sha1 9b1602bf29d1483d9200d83419dc3cd0fc0d397b - depends_build port:zip depends_lib port:gmp \ @@ -33,18 +30,36 @@ port:tk \ port:libsigsegv -configure.args --infodir=${prefix}/share/info \ - --mandir=${prefix}/share/man \ - --with-gmp=${prefix}/lib \ - --with-readline=${prefix}/lib \ - --with-tcl=${prefix}/lib \ - --with-tk=${prefix}/lib \ - --with-libiconv-prefix=${prefix} \ - --with-system-libsigsegv=${prefix} +configure.args --infodir=${prefix}/share/info \ + --mandir=${prefix}/share/man \ + --enable-disassembler \ + --enable-preemption \ + --with-system-libffi --with-system-libsigsegv + # --enable-jit -test.run yes -test.target check +test.run yes +test.target check +default_variants +gtk +tcltk + +variant gtk { + depends_lib-append port:gtk2 + configure.args-append --enable-gtk +} + +variant tcltk { + depends_lib-append port:tcl port:tk + configure.args-append --with-tk --with-tcl +} + +variant nox conflicts gtk conflicts tk { + configure.args-append \ + --without-x \ + --disable-gtk \ + --without-tk \ + --without-tcl +} + platform darwin 6 { depends_lib-append port:dlcompat } -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Dec 1 10:52:13 2008 From: portindex at macports.org (portindex at macports.org) Date: Mon, 1 Dec 2008 10:52:13 -0800 (PST) Subject: [42863] trunk/dports/PortIndex Message-ID: <20081201185214.C47937D7FD7@beta.macosforge.org> Revision: 42863 http://trac.macports.org/changeset/42863 Author: portindex at macports.org Date: 2008-12-01 10:52:13 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Total number of ports parsed: 5168 Ports successfully parsed: 5168 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-01 18:06:21 UTC (rev 42862) +++ trunk/dports/PortIndex 2008-12-01 18:52:13 UTC (rev 42863) @@ -3776,8 +3776,8 @@ variants universal description {general-purpose preprocessor with customizable syntax} portdir lang/gpp homepage http://www.nothingisreal.com/gpp/ epoch 0 platforms darwin name gpp long_description {GPP is a general-purpose preprocessor with customizable syntax, suitable for a wide range of preprocessing tasks. Its independence from any programming language makes it much more versatile than cpp, while its syntax is lighter and more flexible than that of m4. The syntax is fully customizable, which makes it possible to process text files, HTML, or source code equally efficiently in a variety of languages.} maintainers nomaintainer categories lang version 2.24 revision 0 gprolog 821 variants universal description {GNU Prolog compiler} portdir lang/gprolog homepage http://gprolog.inria.fr/ epoch 0 platforms darwin name gprolog long_description {GNU Prolog is a free Prolog compiler with constraint solving over finite domains developed by Daniel Diaz. GNU Prolog accepts Prolog+constraint programs and produces native binaries (like gcc does from a C source). The obtained executable is then stand-alone. The size of this executable can be quite small since GNU Prolog can avoid linking the code of most unused built-in predicates. The performance of GNU Prolog is very encouraging (comparable to commercial systems). Beside native-code compilation, GNU Prolog offers a classical interactive interpreter (top-level) with a debugger.} maintainers pmoura at mac.com categories lang version 1.3.0 revision 0 -gst 666 -variants {universal darwin_6} depends_build port:zip portdir lang/gst description {Free implementation of Smalltalk-80} homepage http://smalltalk.gnu.org/ epoch 0 platforms darwin depends_lib {port:gmp port:libiconv port:ncurses port:ncursesw port:readline port:tcl port:tk port:libsigsegv} name gst maintainers {landonf openmaintainer} long_description {GNU Smalltalk is a free implementation of the Smalltalk-80 language which runs on most versions on Unix and, in general, everywhere you can find a POSIX-compliance library. An uncommon feature of it is that it is well-versed to scripting tasks and headless processing.} version 3.0.3 categories lang revision 1 +gst 700 +variants {universal gtk tcltk nox darwin_6} depends_build port:zip portdir lang/gst description {Free implementation of Smalltalk-80} homepage http://smalltalk.gnu.org/ epoch 0 platforms darwin depends_lib {port:gmp port:libiconv port:ncurses port:ncursesw port:readline port:tcl port:tk port:libsigsegv port:gtk2 port:tcl port:tk} name gst maintainers saispo at macports.org long_description {GNU Smalltalk is a free implementation of the Smalltalk-80 language which runs on most versions on Unix and, in general, everywhere you can find a POSIX-compliance library. An uncommon feature of it is that it is well-versed to scripting tasks and headless processing.} version 3.1 categories lang revision 1 gst-dev 634 variants {universal darwin_6} portdir lang/gst-dev description {Free implementation of Smalltalk-80} homepage http://smalltalk.gnu.org/ epoch 0 platforms darwin name gst-dev depends_lib {port:gmp port:libiconv port:ncurses port:ncursesw port:readline port:tcl port:tk} maintainers {landonf openmaintainer} long_description {GNU Smalltalk is a free implementation of the Smalltalk-80 language which runs on most versions on Unix and, in general, everywhere you can find a POSIX-compliance library. An uncommon feature of it is that it is well-versed to scripting tasks and headless processing.} version 3.0b categories lang revision 0 guile 945 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Dec 1 11:23:48 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 1 Dec 2008 11:23:48 -0800 Subject: propchange - r42858 svn:log Message-ID: <20081201192458.6A12D28088@relay13.apple.com> Author: ryandesign at macports.org (original author: narf_tm at macports.org) Revision: 42858 Property Name: svn:log --- /Volumes/data/admin/var/tmp/revprops/pre-42858-ryandesign at macports.org 2008-12-01 11:23:46.000000000 -0800 +++ /Volumes/data/admin/var/tmp/revprops/post-42858-ryandesign at macports.org 2008-12-01 11:23:47.000000000 -0800 @@ -1 +1 @@ -Fixed dependancies. +Fixed dependencies, added sha1 and rmd160 checksums. From ryandesign at macports.org Mon Dec 1 11:24:24 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 1 Dec 2008 11:24:24 -0800 Subject: propchange - r42852 svn:log Message-ID: <20081201192534.D3F4D2802F@relay14.apple.com> Author: ryandesign at macports.org (original author: narf_tm at macports.org) Revision: 42852 Property Name: svn:log --- /Volumes/data/admin/var/tmp/revprops/pre-42852-ryandesign at macports.org 2008-12-01 11:24:23.000000000 -0800 +++ /Volumes/data/admin/var/tmp/revprops/post-42852-ryandesign at macports.org 2008-12-01 11:24:24.000000000 -0800 @@ -1 +1 @@ -Fixed dependancies. +Fixed dependencies, added sha1 and rmd160 checksums, and changed whitespace. From ryandesign at macports.org Mon Dec 1 11:24:57 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 1 Dec 2008 11:24:57 -0800 Subject: propchange - r42855 svn:log Message-ID: <20081201192607.5413028080@relay11.apple.com> Author: ryandesign at macports.org (original author: narf_tm at macports.org) Revision: 42855 Property Name: svn:log --- /Volumes/data/admin/var/tmp/revprops/pre-42855-ryandesign at macports.org 2008-12-01 11:24:55.000000000 -0800 +++ /Volumes/data/admin/var/tmp/revprops/post-42855-ryandesign at macports.org 2008-12-01 11:24:56.000000000 -0800 @@ -1 +1 @@ -Updated to 1.42. +Updated to 1.42, added sha1 and rmd160 checksums, and changed whitespace. From ryandesign at macports.org Mon Dec 1 11:25:16 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 1 Dec 2008 11:25:16 -0800 Subject: propchange - r42851 svn:log Message-ID: <20081201192627.0861B2807E@relay11.apple.com> Author: ryandesign at macports.org (original author: narf_tm at macports.org) Revision: 42851 Property Name: svn:log --- /Volumes/data/admin/var/tmp/revprops/pre-42851-ryandesign at macports.org 2008-12-01 11:25:15.000000000 -0800 +++ /Volumes/data/admin/var/tmp/revprops/post-42851-ryandesign at macports.org 2008-12-01 11:25:16.000000000 -0800 @@ -1 +1 @@ -Fixed dependancies. +Fixed dependencies. From noreply at macports.org Mon Dec 1 11:26:45 2008 From: noreply at macports.org (MacPorts) Date: Mon, 01 Dec 2008 19:26:45 -0000 Subject: [MacPorts] UsingMacPortsQuickStart modified Message-ID: <20081201192755.EC3FA420006@relay12.apple.com> Changed page "UsingMacPortsQuickStart" by ryandesign at macports.org from 75.54.87.8* Page URL: Diff URL: Revision 8 Comment: remove newlines that got added in the last two revisions -------8<------8<------8<------8<------8<------8<------8<------8<-------- Index: UsingMacPortsQuickStart ========================================================================= --- UsingMacPortsQuickStart (version: 7) +++ UsingMacPortsQuickStart (version: 8) @@ -50,11 +50,6 @@ py-graphpath python/py-graphpath 0.7 small language for ananlysing graph-structured data in Python php4 www/php4 4.4.1 PHP: Hypertext Preprocessor php5 www/php5 5.1.1 PHP: Hypertext Preprocessor - - - - - phpbb www/phpbb 2.0.18 A PHP-based bulletin board / discussion forum system phpicalendar www/phpicalendar 2.0.1 web-based iCal viewer phpmyadmin www/phpmyadmin 2.7.0-pl2 A tool written in PHP intended to handle the administration of MySQL over the -------8<------8<------8<------8<------8<------8<------8<------8<-------- * The IP shown here might not mean anything if the user or the server is behind a proxy. -- MacPorts Ports system for Mac OS This is an automated message. Someone at http://www.macports.org/ added your email address to be notified of changes on UsingMacPortsQuickStart. If it was not you, please report to . From saispo at macports.org Mon Dec 1 11:57:27 2008 From: saispo at macports.org (saispo at macports.org) Date: Mon, 1 Dec 2008 11:57:27 -0800 (PST) Subject: [42864] trunk/dports/lang/gst/Portfile Message-ID: <20081201195728.10C2A7D8777@beta.macosforge.org> Revision: 42864 http://trac.macports.org/changeset/42864 Author: saispo at macports.org Date: 2008-12-01 11:57:26 -0800 (Mon, 01 Dec 2008) Log Message: ----------- fix depends mistake i made Modified Paths: -------------- trunk/dports/lang/gst/Portfile Modified: trunk/dports/lang/gst/Portfile =================================================================== --- trunk/dports/lang/gst/Portfile 2008-12-01 18:52:13 UTC (rev 42863) +++ trunk/dports/lang/gst/Portfile 2008-12-01 19:57:26 UTC (rev 42864) @@ -21,14 +21,13 @@ depends_build port:zip -depends_lib port:gmp \ - port:libiconv \ - port:ncurses \ - port:ncursesw \ - port:readline \ - port:tcl \ - port:tk \ - port:libsigsegv +depends_lib port:libsigsegv \ + port:libffi \ + port:gmp \ + port:libiconv \ + port:ncurses \ + port:ncursesw \ + port:readline configure.args --infodir=${prefix}/share/info \ --mandir=${prefix}/share/man \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Mon Dec 1 12:50:49 2008 From: jmr at macports.org (jmr at macports.org) Date: Mon, 1 Dec 2008 12:50:49 -0800 (PST) Subject: [42865] trunk/base/src/port1.0/portfetch.tcl Message-ID: <20081201205049.DC1B17D8D63@beta.macosforge.org> Revision: 42865 http://trac.macports.org/changeset/42865 Author: jmr at macports.org Date: 2008-12-01 12:50:49 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Make use_lzma work (#16788) Modified Paths: -------------- trunk/base/src/port1.0/portfetch.tcl Modified: trunk/base/src/port1.0/portfetch.tcl =================================================================== --- trunk/base/src/port1.0/portfetch.tcl 2008-12-01 19:57:26 UTC (rev 42864) +++ trunk/base/src/port1.0/portfetch.tcl 2008-12-01 20:50:49 UTC (rev 42865) @@ -41,7 +41,7 @@ target_prerun ${org.macports.fetch} fetch_start # define options: distname master_sites -options master_sites patch_sites extract.suffix distfiles patchfiles use_zip use_bzip2 use_dmg dist_subdir \ +options master_sites patch_sites extract.suffix distfiles patchfiles use_zip use_bzip2 use_lzma use_dmg dist_subdir \ fetch.type fetch.user fetch.password fetch.use_epsv fetch.ignore_sslcert \ master_sites.mirror_subdir patch_sites.mirror_subdir portname \ cvs.module cvs.root cvs.password cvs.date cvs.tag \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Dec 1 12:52:01 2008 From: portindex at macports.org (portindex at macports.org) Date: Mon, 1 Dec 2008 12:52:01 -0800 (PST) Subject: [42866] trunk/dports/PortIndex Message-ID: <20081201205202.F28F97D8DAA@beta.macosforge.org> Revision: 42866 http://trac.macports.org/changeset/42866 Author: portindex at macports.org Date: 2008-12-01 12:52:01 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Total number of ports parsed: 5168 Ports successfully parsed: 5168 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-01 20:50:49 UTC (rev 42865) +++ trunk/dports/PortIndex 2008-12-01 20:52:01 UTC (rev 42866) @@ -3776,8 +3776,8 @@ variants universal description {general-purpose preprocessor with customizable syntax} portdir lang/gpp homepage http://www.nothingisreal.com/gpp/ epoch 0 platforms darwin name gpp long_description {GPP is a general-purpose preprocessor with customizable syntax, suitable for a wide range of preprocessing tasks. Its independence from any programming language makes it much more versatile than cpp, while its syntax is lighter and more flexible than that of m4. The syntax is fully customizable, which makes it possible to process text files, HTML, or source code equally efficiently in a variety of languages.} maintainers nomaintainer categories lang version 2.24 revision 0 gprolog 821 variants universal description {GNU Prolog compiler} portdir lang/gprolog homepage http://gprolog.inria.fr/ epoch 0 platforms darwin name gprolog long_description {GNU Prolog is a free Prolog compiler with constraint solving over finite domains developed by Daniel Diaz. GNU Prolog accepts Prolog+constraint programs and produces native binaries (like gcc does from a C source). The obtained executable is then stand-alone. The size of this executable can be quite small since GNU Prolog can avoid linking the code of most unused built-in predicates. The performance of GNU Prolog is very encouraging (comparable to commercial systems). Beside native-code compilation, GNU Prolog offers a classical interactive interpreter (top-level) with a debugger.} maintainers pmoura at mac.com categories lang version 1.3.0 revision 0 -gst 700 -variants {universal gtk tcltk nox darwin_6} depends_build port:zip portdir lang/gst description {Free implementation of Smalltalk-80} homepage http://smalltalk.gnu.org/ epoch 0 platforms darwin depends_lib {port:gmp port:libiconv port:ncurses port:ncursesw port:readline port:tcl port:tk port:libsigsegv port:gtk2 port:tcl port:tk} name gst maintainers saispo at macports.org long_description {GNU Smalltalk is a free implementation of the Smalltalk-80 language which runs on most versions on Unix and, in general, everywhere you can find a POSIX-compliance library. An uncommon feature of it is that it is well-versed to scripting tasks and headless processing.} version 3.1 categories lang revision 1 +gst 695 +variants {universal gtk tcltk nox darwin_6} depends_build port:zip portdir lang/gst description {Free implementation of Smalltalk-80} homepage http://smalltalk.gnu.org/ epoch 0 platforms darwin depends_lib {port:libsigsegv port:libffi port:gmp port:libiconv port:ncurses port:ncursesw port:readline port:gtk2 port:tcl port:tk} name gst maintainers saispo at macports.org long_description {GNU Smalltalk is a free implementation of the Smalltalk-80 language which runs on most versions on Unix and, in general, everywhere you can find a POSIX-compliance library. An uncommon feature of it is that it is well-versed to scripting tasks and headless processing.} version 3.1 categories lang revision 1 gst-dev 634 variants {universal darwin_6} portdir lang/gst-dev description {Free implementation of Smalltalk-80} homepage http://smalltalk.gnu.org/ epoch 0 platforms darwin name gst-dev depends_lib {port:gmp port:libiconv port:ncurses port:ncursesw port:readline port:tcl port:tk} maintainers {landonf openmaintainer} long_description {GNU Smalltalk is a free implementation of the Smalltalk-80 language which runs on most versions on Unix and, in general, everywhere you can find a POSIX-compliance library. An uncommon feature of it is that it is well-versed to scripting tasks and headless processing.} version 3.0b categories lang revision 0 guile 945 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Mon Dec 1 12:53:40 2008 From: jmr at macports.org (jmr at macports.org) Date: Mon, 1 Dec 2008 12:53:40 -0800 (PST) Subject: [42867] branches/release_1_7 Message-ID: <20081201205340.9634C7D8E5A@beta.macosforge.org> Revision: 42867 http://trac.macports.org/changeset/42867 Author: jmr at macports.org Date: 2008-12-01 12:53:39 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Merge r42865 from trunk: Make use_lzma work (#16788) Modified Paths: -------------- branches/release_1_7/base/src/port1.0/portfetch.tcl Property Changed: ---------------- branches/release_1_7/ Property changes on: branches/release_1_7 ___________________________________________________________________ Modified: svn:mergeinfo - /trunk:42683,42697,42734,42747,42760,42845-42847 + /trunk:42683,42697,42734,42747,42760,42845-42847,42865 Modified: branches/release_1_7/base/src/port1.0/portfetch.tcl =================================================================== --- branches/release_1_7/base/src/port1.0/portfetch.tcl 2008-12-01 20:52:01 UTC (rev 42866) +++ branches/release_1_7/base/src/port1.0/portfetch.tcl 2008-12-01 20:53:39 UTC (rev 42867) @@ -41,7 +41,7 @@ target_prerun ${org.macports.fetch} fetch_start # define options: distname master_sites -options master_sites patch_sites extract.suffix distfiles patchfiles use_zip use_bzip2 use_dmg dist_subdir \ +options master_sites patch_sites extract.suffix distfiles patchfiles use_zip use_bzip2 use_lzma use_dmg dist_subdir \ fetch.type fetch.user fetch.password fetch.use_epsv fetch.ignore_sslcert \ master_sites.mirror_subdir patch_sites.mirror_subdir portname \ cvs.module cvs.root cvs.password cvs.date cvs.tag \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Mon Dec 1 12:55:29 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Mon, 1 Dec 2008 12:55:29 -0800 (PST) Subject: [42868] trunk/dports/archivers/bzip2/Portfile Message-ID: <20081201205529.415407D8EBF@beta.macosforge.org> Revision: 42868 http://trac.macports.org/changeset/42868 Author: mcalhoun at macports.org Date: 2008-12-01 12:55:28 -0800 (Mon, 01 Dec 2008) Log Message: ----------- bzip2: ensure that the correct C compiler is used. Modified Paths: -------------- trunk/dports/archivers/bzip2/Portfile Modified: trunk/dports/archivers/bzip2/Portfile =================================================================== --- trunk/dports/archivers/bzip2/Portfile 2008-12-01 20:53:39 UTC (rev 42867) +++ trunk/dports/archivers/bzip2/Portfile 2008-12-01 20:55:28 UTC (rev 42868) @@ -49,9 +49,15 @@ build.env DYLD_LIBRARY_PATH="${worksrcpath}" } +post-configure { + reinplace "s|^CC=gcc|CC=${configure.cc}|" ${worksrcpath}/Makefile +} + build.args PREFIX="${prefix}" destroot.destdir PREFIX="${destroot}${prefix}" variant universal { - build.args-append CC="gcc ${configure.universal_cflags}" + post-configure { + reinplace "s|^CC=\\(.*\\)|CC=\\1 ${configure.universal_cflags}|" ${worksrcpath}/Makefile + } } -------------- next part -------------- An HTML attachment was scrubbed... URL: From noreply at macports.org Mon Dec 1 14:08:25 2008 From: noreply at macports.org (MacPorts) Date: Mon, 01 Dec 2008 22:08:25 -0000 Subject: [MacPorts] NewCommittersGuide modified Message-ID: <20081201220935.B67DE28050@relay13.apple.com> Changed page "NewCommittersGuide" by blb at macports.org from 75.163.172.33* Page URL: Diff URL: Revision 13 Comment: Clarify bit about top-level categories and new directories -------8<------8<------8<------8<------8<------8<------8<------8<-------- Index: NewCommittersGuide ========================================================================= --- NewCommittersGuide (version: 12) +++ NewCommittersGuide (version: 13) @@ -12,7 +12,7 @@ 1. You need to change your email address for your ports 1. Other, similar reasons 1. All committers must subscribe to the [http://lists.macosforge.org/mailman/listinfo/macports-changes macports-changes] list under their MacPorts credentials to keep track of current changes and because the list is subscriber-post-only, so commit messages will otherwise be rejected - 1. New top-level categories (those which are represented by directories in the MacPorts tree) need to be approved prior to adding; secondary categories (the second and later ones listed on the '''categories''' Portfile key) can be added when it makes sense (since these really only show under the web interface, and have no filesystem representation) + 1. New top-level categories (those which are represented by subdirectories directly beneath dports/) need to be approved prior to adding; secondary categories (the second and later ones listed on the '''categories''' Portfile key) can be added when it makes sense (since these really only show under the web interface, and have no filesystem representation) 1. Make sure the port name matches between the MacPorts svn directory name and the '''name''' Portfile key (while the system works fine when they don't, keeping them synchronized avoids confusing situations) 1. Should commit logs finally be standardized? The output is shown in various places and forms: trac, RSS, email, [http://cia.vc/ CIA] stuff; some of these may just use the first line 1. Under most circumstances, do not modify a port belonging to another maintainer; this is to be done either via a Trac ticket or by direct communication with the maintainer. Exceptions are: -------8<------8<------8<------8<------8<------8<------8<------8<-------- * The IP shown here might not mean anything if the user or the server is behind a proxy. -- MacPorts Ports system for Mac OS This is an automated message. Someone at http://www.macports.org/ added your email address to be notified of changes on NewCommittersGuide. If it was not you, please report to . From toby at macports.org Mon Dec 1 15:07:22 2008 From: toby at macports.org (toby at macports.org) Date: Mon, 1 Dec 2008 15:07:22 -0800 (PST) Subject: [42869] trunk/dports/devel Message-ID: <20081201230723.110637DA3D9@beta.macosforge.org> Revision: 42869 http://trac.macports.org/changeset/42869 Author: toby at macports.org Date: 2008-12-01 15:07:22 -0800 (Mon, 01 Dec 2008) Log Message: ----------- experimental vxl port, fixes #17466 Modified Paths: -------------- trunk/dports/devel/boost-jam/Portfile Added Paths: ----------- trunk/dports/devel/vxl/ trunk/dports/devel/vxl/Portfile trunk/dports/devel/vxl/files/ trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Template__bprb_parameters+unsigned_int-.cxx trunk/dports/devel/vxl/files/patch-contrib__brl__bseg__bvxm__bvxm_memory_chunk.cxx Modified: trunk/dports/devel/boost-jam/Portfile =================================================================== --- trunk/dports/devel/boost-jam/Portfile 2008-12-01 20:55:28 UTC (rev 42868) +++ trunk/dports/devel/boost-jam/Portfile 2008-12-01 23:07:22 UTC (rev 42869) @@ -3,7 +3,7 @@ PortSystem 1.0 name boost-jam -version 3.1.16 +version 3.1.17 categories devel maintainers gmail.com:jon.olsson description Boost.Jam (BJam) is a build tool based on FTJam @@ -16,12 +16,12 @@ homepage http://www.boost.org master_sites sourceforge:boost extract.suffix .tgz -checksums md5 1fd96a38b1a33c365e8142eec53197e7 \ - rmd160 dd602c5e01a004dbf6e6ee542c5f6bdb0bd1348f \ - sha1 e2dd6ef9c56b18c7be7669aba374bcd24745ae95 +checksums md5 f4afd896788f2327fd35c128ddc6e340 \ + rmd160 79a265c4427bf48858d288d5b0ac82c5119af7c8 \ + sha1 407be994b1239fa944c14c464a9ce7f46f692a1e platforms darwin -patchfiles patch-strings.c +#patchfiles patch-strings.c post-patch { reinplace "s|/usr/share/boost-build|${prefix}/share/boost-build|" \ ${worksrcpath}/jambase.c Added: trunk/dports/devel/vxl/Portfile =================================================================== --- trunk/dports/devel/vxl/Portfile (rev 0) +++ trunk/dports/devel/vxl/Portfile 2008-12-01 23:07:22 UTC (rev 42869) @@ -0,0 +1,46 @@ +# $Id$ + +PortSystem 1.0 + +name vxl +version 1.11.0 +categories devel +maintainers toby +description C++ libraries for computer vision +long_description \ + VXL (the Vision-something-Libraries) is a collection of C++ libraries \ + designed for computer vision research and implementation. It was \ + created from TargetJr and the IUE with the aim of making a light, \ + fast and consistent system. VXL is written in ANSI/ISO C++ and is \ + designed to be portable over many platforms. +homepage http://vxl.sourceforge.net/ +platforms darwin + +master_sites sourceforge +use_zip yes +checksums md5 e2d3f0dbc98241607ee5d4a121d1253b \ + sha1 7fd772bfad640f9672307eacdbf0a5e3ff150ffb \ + rmd160 35812c0fcfdda27c77ee9044e65e9e8dcccfffc0 + +patchfiles patch-contrib__brl__bpro__bprb__Template__bprb_parameters+unsigned_int-.cxx \ + patch-contrib__brl__bseg__bvxm__bvxm_memory_chunk.cxx + +depends_build port:cmake + +configure.cmd ${prefix}/bin/cmake +configure.pre_args -DCMAKE_INSTALL_PREFIX=${prefix} +configure.args -DBUILD_SHARED_LIBS=YES \ + -DCMAKE_INSTALL_NAME_DIR=${prefix}/lib/${name} \ + ${worksrcpath} + +# shuffle directories around to turn ${prefix}/lib into ${prefix}/lib/${name} +post-destroot { + file rename ${destroot}${prefix}/lib ${destroot}${prefix}/tmp + file mkdir ${destroot}${prefix}/lib + file rename ${destroot}${prefix}/tmp ${destroot}${prefix}/lib/${name} +} + +# llvm-gcc-4.2 segfaults +platform darwin 10 { + configure.compiler gcc-4.2 +} Added: trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Template__bprb_parameters+unsigned_int-.cxx =================================================================== --- trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Template__bprb_parameters+unsigned_int-.cxx (rev 0) +++ trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Template__bprb_parameters+unsigned_int-.cxx 2008-12-01 23:07:22 UTC (rev 42869) @@ -0,0 +1,6 @@ +--- contrib/brl/bpro/bprb/Templates/bprb_parameters+unsigned_int-.cxx 2008-11-29 05:02:13.000000000 -0800 ++++ /dev/null 2008-11-29 04:57:42.000000000 -0800 +@@ -1,3 +0,0 @@ +-#include +- +-BPRB_PARAMETERS_INSTANTIATE(unsigned int); Added: trunk/dports/devel/vxl/files/patch-contrib__brl__bseg__bvxm__bvxm_memory_chunk.cxx =================================================================== --- trunk/dports/devel/vxl/files/patch-contrib__brl__bseg__bvxm__bvxm_memory_chunk.cxx (rev 0) +++ trunk/dports/devel/vxl/files/patch-contrib__brl__bseg__bvxm__bvxm_memory_chunk.cxx 2008-12-01 23:07:22 UTC (rev 42869) @@ -0,0 +1,9 @@ +--- contrib/brl/bseg/bvxm/bvxm_memory_chunk.cxx 2008-11-29 04:55:36.000000000 -0800 ++++ contrib/brl/bseg/bvxm/bvxm_memory_chunk.cxx 2008-11-29 04:55:45.000000000 -0800 +@@ -48,6 +48,3 @@ + data_ = new char[(unsigned)n]; + size_ = n; + } +- +-VBL_SMART_PTR_INSTANTIATE(bvxm_memory_chunk); +- -------------- next part -------------- An HTML attachment was scrubbed... URL: From toby at macports.org Mon Dec 1 15:11:26 2008 From: toby at macports.org (toby at macports.org) Date: Mon, 1 Dec 2008 15:11:26 -0800 (PST) Subject: [42870] trunk/dports/devel/boost-jam/Portfile Message-ID: <20081201231126.CE7727DA550@beta.macosforge.org> Revision: 42870 http://trac.macports.org/changeset/42870 Author: toby at macports.org Date: 2008-12-01 15:11:26 -0800 (Mon, 01 Dec 2008) Log Message: ----------- oops Modified Paths: -------------- trunk/dports/devel/boost-jam/Portfile Modified: trunk/dports/devel/boost-jam/Portfile =================================================================== --- trunk/dports/devel/boost-jam/Portfile 2008-12-01 23:07:22 UTC (rev 42869) +++ trunk/dports/devel/boost-jam/Portfile 2008-12-01 23:11:26 UTC (rev 42870) @@ -3,7 +3,7 @@ PortSystem 1.0 name boost-jam -version 3.1.17 +version 3.1.16 categories devel maintainers gmail.com:jon.olsson description Boost.Jam (BJam) is a build tool based on FTJam @@ -16,12 +16,12 @@ homepage http://www.boost.org master_sites sourceforge:boost extract.suffix .tgz -checksums md5 f4afd896788f2327fd35c128ddc6e340 \ - rmd160 79a265c4427bf48858d288d5b0ac82c5119af7c8 \ - sha1 407be994b1239fa944c14c464a9ce7f46f692a1e +checksums md5 1fd96a38b1a33c365e8142eec53197e7 \ + rmd160 dd602c5e01a004dbf6e6ee542c5f6bdb0bd1348f \ + sha1 e2dd6ef9c56b18c7be7669aba374bcd24745ae95 platforms darwin -#patchfiles patch-strings.c +patchfiles patch-strings.c post-patch { reinplace "s|/usr/share/boost-build|${prefix}/share/boost-build|" \ ${worksrcpath}/jambase.c -------------- next part -------------- An HTML attachment was scrubbed... URL: From toby at macports.org Mon Dec 1 15:30:46 2008 From: toby at macports.org (toby at macports.org) Date: Mon, 1 Dec 2008 15:30:46 -0800 (PST) Subject: [42871] trunk/dports/lang/python25/Portfile Message-ID: <20081201233046.8D08A7DAE43@beta.macosforge.org> Revision: 42871 http://trac.macports.org/changeset/42871 Author: toby at macports.org Date: 2008-12-01 15:30:46 -0800 (Mon, 01 Dec 2008) Log Message: ----------- fix mirrors, most didn't work Modified Paths: -------------- trunk/dports/lang/python25/Portfile Modified: trunk/dports/lang/python25/Portfile =================================================================== --- trunk/dports/lang/python25/Portfile 2008-12-01 23:11:26 UTC (rev 42870) +++ trunk/dports/lang/python25/Portfile 2008-12-01 23:30:46 UTC (rev 42871) @@ -16,10 +16,7 @@ programming language. homepage http://www.python.org/ -master_sites ${homepage}/ftp/python/${version}/ \ - ftp://ftp.python.org/pub/python/${version}/ \ - ftp://ftp.fastorama.com/mirrors/ftp.python.org/pub/python/${version}/ \ - ftp://ftp.python.jp/pub/python/${version}/ +master_sites http://ftp.python.org/ftp/python/${version}/ distname Python-${version} extract.suffix .tgz -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Mon Dec 1 15:39:53 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Mon, 1 Dec 2008 15:39:53 -0800 (PST) Subject: [42872] trunk/dports/python Message-ID: <20081201233953.C5C457DB032@beta.macosforge.org> Revision: 42872 http://trac.macports.org/changeset/42872 Author: mcalhoun at macports.org Date: 2008-12-01 15:39:53 -0800 (Mon, 01 Dec 2008) Log Message: ----------- r42841 to python26 makes py26-tkinter py26-hashlib unnecessary Modified Paths: -------------- trunk/dports/python/py26-pygments/Portfile Removed Paths: ------------- trunk/dports/python/py26-hashlib/ trunk/dports/python/py26-tkinter/ Modified: trunk/dports/python/py26-pygments/Portfile =================================================================== --- trunk/dports/python/py26-pygments/Portfile 2008-12-01 23:30:46 UTC (rev 42871) +++ trunk/dports/python/py26-pygments/Portfile 2008-12-01 23:39:53 UTC (rev 42872) @@ -20,7 +20,7 @@ master_sites http://pypi.python.org/packages/source/P/Pygments distname Pygments-${version} -depends_lib port:py26-setuptools port:py26-hashlib +depends_lib port:py26-setuptools checksums md5 70c40ff5331460cabfcb24f86a8d451d \ sha1 b71e33147fc402e361227b30e1f589eecafd42a7 \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Dec 1 15:52:06 2008 From: portindex at macports.org (portindex at macports.org) Date: Mon, 1 Dec 2008 15:52:06 -0800 (PST) Subject: [42873] trunk/dports/PortIndex Message-ID: <20081201235208.2106B7DB108@beta.macosforge.org> Revision: 42873 http://trac.macports.org/changeset/42873 Author: portindex at macports.org Date: 2008-12-01 15:52:06 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Total number of ports parsed: 5167 Ports successfully parsed: 5167 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-01 23:39:53 UTC (rev 42872) +++ trunk/dports/PortIndex 2008-12-01 23:52:06 UTC (rev 42873) @@ -1808,6 +1808,8 @@ variants universal depends_build bin:python:python24 portdir devel/viewcvs description {View CVS repo content with a Webbrowser} homepage http://viewcvs.sourceforge.net/ epoch 0 platforms darwin name viewcvs maintainers nomaintainer long_description {ViewCVS was inspired by cvsweb (Zeller's version). ViewCVS can browse directories, change logs, and specific revisions of files. It can display diffs between versions and show selections of files based on tags or branches. In addition, ViewCVS has annotation or blame support, and the beginnings of Bonsai-like query facilities.} version 0.9.2 categories {devel www} revision 0 vttest 333 variants universal description {VT100/VT220/XTerm test utility} portdir devel/vttest homepage http://invisible-island.net/vttest/ epoch 0 platforms darwin name vttest long_description {Test the compatibility of VT100/VT220/XTerm terminal emulators.} maintainers vincent-opdarw at vinc17.org categories devel version 20071216 revision 0 +vxl 584 +variants {universal darwin_10} depends_build port:cmake portdir devel/vxl description {C++ libraries for computer vision} homepage http://vxl.sourceforge.net/ epoch 0 platforms darwin name vxl maintainers toby long_description {VXL (the Vision-something-Libraries) is a collection of C++ libraries designed for computer vision research and implementation. It was created from TargetJr and the IUE with the aim of making a light, fast and consistent system. VXL is written in ANSI/ISO C++ and is designed to be portable over many platforms.} version 1.11.0 categories devel revision 0 wsdlpull 550 variants universal portdir devel/wsdlpull description {C++ Web services library} homepage http://wsdlpull.sourceforge.net/ epoch 0 platforms darwin name wsdlpull depends_lib {port:curl port:openssl port:zlib} maintainers nomaintainer long_description {wsdlpull is an efficient C++ Web services library that includes a standards compliant WSDL parser API, a Schema parser and validator, an XML parser and serializer, and an API and command line tool for dynamically inspecting and invoking WSDL Web services.} version 1.13 categories devel revision 0 wxd 371 @@ -7818,12 +7820,8 @@ variants universal portdir python/py25-zopeinterface description {Python interfaces for Zope} homepage http://www.zope.org/Products/ZopeInterface epoch 0 platforms darwin depends_lib port:python25 name py25-zopeinterface maintainers mww long_description {{Python interfaces for Zope}} categories {python zope} version 3.3.0 revision 0 py25-zsi 634 variants universal portdir python/py25-zsi description {Zolera SOAP Infrastructure is a Python implementation of SOAP} homepage http://pywebsvcs.sourceforge.net/ epoch 0 platforms darwin depends_lib port:python25 name py25-zsi maintainers stechert at macports.org long_description {ZSI, the Zolera SOAP Infrastructure, is a pure-Python module that provides an implementation of SOAP messaging, as described in The SOAP 1.1 Specification. It can also be used to build applications using SOAP Messages with Attachments. ZSI is intended to make it easier to write web services in Python.} categories {python net} version 2.0-rc3 revision 0 -py26-hashlib 439 -variants universal portdir python/py26-hashlib description {Python secure hash and message digest module} homepage http://www.python.org/doc/current/library/hashlib.html epoch 0 platforms darwin depends_lib {port:python26 port:openssl} name py26-hashlib maintainers {mcalhoun openmaintainer} long_description {Python secure hash and message digest module MD5, SHA1, SHA224, SHA256, SHA384, SHA512} categories python version 2.6 revision 0 -py26-pygments 569 -variants universal portdir python/py26-pygments description {Python syntax highlighter} homepage http://pygments.org epoch 0 platforms darwin name py26-pygments depends_lib {port:py26-setuptools port:py26-hashlib} maintainers {openmaintainer erickt at macports.org} long_description {Pygments is a fast syntax highlighter written in Python with a special focus on details. Can highlight source code in many supported languages: Python, Ruby, PHP, HTML etc. Outputs arbitrarily-styled HTML or LaTeX, comes with many builtin styles.} version 1.0 categories devel revision 0 -py26-tkinter 398 -variants universal portdir python/py26-tkinter description {Python bindings to the Tk widget set} homepage http://www.python.org/doc/current/library/tkinter.html epoch 0 platforms darwin depends_lib {port:python26 port:tcl port:tk} name py26-tkinter maintainers {mcalhoun openmaintainer} long_description {{Python bindings to the Tk widget set}} categories {python graphics} version 2.6 revision 0 +py26-pygments 549 +variants universal portdir python/py26-pygments description {Python syntax highlighter} homepage http://pygments.org epoch 0 platforms darwin name py26-pygments depends_lib port:py26-setuptools maintainers {openmaintainer erickt at macports.org} long_description {Pygments is a fast syntax highlighter written in Python with a special focus on details. Can highlight source code in many supported languages: Python, Ruby, PHP, HTML etc. Outputs arbitrarily-styled HTML or LaTeX, comes with many builtin styles.} version 1.0 categories devel revision 0 py30-bsddb 365 variants universal portdir python/py30-bsddb description {Python bindings to the db46 library} homepage http://www.python.org/doc/current/lib/module-dbm.html epoch 0 platforms darwin depends_lib {port:python30 port:db46} name py30-bsddb maintainers mww long_description {{Python bindings to the db46 library}} categories {python databases} version 3.0b3 revision 0 py30-bz2 328 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Mon Dec 1 17:05:55 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Mon, 1 Dec 2008 17:05:55 -0800 (PST) Subject: [42874] trunk/dports/x11/xorg-inputproto/Portfile Message-ID: <20081202010555.614157DBB39@beta.macosforge.org> Revision: 42874 http://trac.macports.org/changeset/42874 Author: jeremyhu at macports.org Date: 2008-12-01 17:05:54 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Bumped version of xorg-inputproto and updated maintainership... also removed dep on util-macros since that's only needed if rebuilding configure Modified Paths: -------------- trunk/dports/x11/xorg-inputproto/Portfile Modified: trunk/dports/x11/xorg-inputproto/Portfile =================================================================== --- trunk/dports/x11/xorg-inputproto/Portfile 2008-12-01 23:52:06 UTC (rev 42873) +++ trunk/dports/x11/xorg-inputproto/Portfile 2008-12-02 01:05:54 UTC (rev 42874) @@ -2,16 +2,17 @@ PortSystem 1.0 name xorg-inputproto -version 1.4.2 +version 1.5.0 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org inputproto homepage http://www.x.org platforms darwin long_description Prototype headers for the XInput extension to X11 -master_sites ${homepage}/pub/individual/proto/ +master_sites ${homepage}/pub/individual/proto/ distname inputproto-${version} -checksums sha1 db749d46dde0fa84ae68425b6a91470079559c02 +checksums md5 dcc36554aea1338b3813943daf1e9988 \ + sha1 c6514843f35e2591fadc13f3fc87bf3752b7197c \ + rmd160 5d04e4c85241e262f26b0827340da7ca92080630 use_bzip2 yes -depends_lib port:xorg-util-macros -------------- next part -------------- An HTML attachment was scrubbed... URL: From toby at macports.org Mon Dec 1 17:10:33 2008 From: toby at macports.org (toby at macports.org) Date: Mon, 1 Dec 2008 17:10:33 -0800 (PST) Subject: [42875] trunk/dports/devel/vxl Message-ID: <20081202011033.4C4B87DBCF6@beta.macosforge.org> Revision: 42875 http://trac.macports.org/changeset/42875 Author: toby at macports.org Date: 2008-12-01 17:10:32 -0800 (Mon, 01 Dec 2008) Log Message: ----------- fix patch filename, it wasn't long enough Modified Paths: -------------- trunk/dports/devel/vxl/Portfile Added Paths: ----------- trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Templates__bprb_parameters+unsigned_int-.cxx Removed Paths: ------------- trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Template__bprb_parameters+unsigned_int-.cxx Modified: trunk/dports/devel/vxl/Portfile =================================================================== --- trunk/dports/devel/vxl/Portfile 2008-12-02 01:05:54 UTC (rev 42874) +++ trunk/dports/devel/vxl/Portfile 2008-12-02 01:10:32 UTC (rev 42875) @@ -22,7 +22,7 @@ sha1 7fd772bfad640f9672307eacdbf0a5e3ff150ffb \ rmd160 35812c0fcfdda27c77ee9044e65e9e8dcccfffc0 -patchfiles patch-contrib__brl__bpro__bprb__Template__bprb_parameters+unsigned_int-.cxx \ +patchfiles patch-contrib__brl__bpro__bprb__Templates__bprb_parameters+unsigned_int-.cxx \ patch-contrib__brl__bseg__bvxm__bvxm_memory_chunk.cxx depends_build port:cmake Deleted: trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Template__bprb_parameters+unsigned_int-.cxx =================================================================== --- trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Template__bprb_parameters+unsigned_int-.cxx 2008-12-02 01:05:54 UTC (rev 42874) +++ trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Template__bprb_parameters+unsigned_int-.cxx 2008-12-02 01:10:32 UTC (rev 42875) @@ -1,6 +0,0 @@ ---- contrib/brl/bpro/bprb/Templates/bprb_parameters+unsigned_int-.cxx 2008-11-29 05:02:13.000000000 -0800 -+++ /dev/null 2008-11-29 04:57:42.000000000 -0800 -@@ -1,3 +0,0 @@ --#include -- --BPRB_PARAMETERS_INSTANTIATE(unsigned int); Copied: trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Templates__bprb_parameters+unsigned_int-.cxx (from rev 42873, trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Template__bprb_parameters+unsigned_int-.cxx) =================================================================== --- trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Templates__bprb_parameters+unsigned_int-.cxx (rev 0) +++ trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Templates__bprb_parameters+unsigned_int-.cxx 2008-12-02 01:10:32 UTC (rev 42875) @@ -0,0 +1,6 @@ +--- contrib/brl/bpro/bprb/Templates/bprb_parameters+unsigned_int-.cxx 2008-11-29 05:02:13.000000000 -0800 ++++ /dev/null 2008-11-29 04:57:42.000000000 -0800 +@@ -1,3 +0,0 @@ +-#include +- +-BPRB_PARAMETERS_INSTANTIATE(unsigned int); Property changes on: trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Templates__bprb_parameters+unsigned_int-.cxx ___________________________________________________________________ Added: svn:mergeinfo + -------------- next part -------------- An HTML attachment was scrubbed... URL: From toby at macports.org Mon Dec 1 17:18:31 2008 From: toby at macports.org (toby at macports.org) Date: Mon, 1 Dec 2008 17:18:31 -0800 (PST) Subject: [42876] trunk/dports/devel/vxl Message-ID: <20081202011831.BB4D27DBFA1@beta.macosforge.org> Revision: 42876 http://trac.macports.org/changeset/42876 Author: toby at macports.org Date: 2008-12-01 17:18:31 -0800 (Mon, 01 Dec 2008) Log Message: ----------- blame _wms for this commit Modified Paths: -------------- trunk/dports/devel/vxl/Portfile Added Paths: ----------- trunk/dports/devel/vxl/files/patch-contrib?\226?\152?\131brl?\226?\152?\131bpro?\226?\152?\131bprb?\226?\152?\131Templates?\226?\152?\131bprb_parameters+unsigned_int-.cxx trunk/dports/devel/vxl/files/patch-contrib?\226?\152?\131brl?\226?\152?\131bseg?\226?\152?\131bvxm?\226?\152?\131bvxm_memory_chunk.cxx Removed Paths: ------------- trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Templates__bprb_parameters+unsigned_int-.cxx trunk/dports/devel/vxl/files/patch-contrib__brl__bseg__bvxm__bvxm_memory_chunk.cxx Modified: trunk/dports/devel/vxl/Portfile =================================================================== --- trunk/dports/devel/vxl/Portfile 2008-12-02 01:10:32 UTC (rev 42875) +++ trunk/dports/devel/vxl/Portfile 2008-12-02 01:18:31 UTC (rev 42876) @@ -22,8 +22,8 @@ sha1 7fd772bfad640f9672307eacdbf0a5e3ff150ffb \ rmd160 35812c0fcfdda27c77ee9044e65e9e8dcccfffc0 -patchfiles patch-contrib__brl__bpro__bprb__Templates__bprb_parameters+unsigned_int-.cxx \ - patch-contrib__brl__bseg__bvxm__bvxm_memory_chunk.cxx +patchfiles patch-contrib?brl?bpro?bprb?Templates?bprb_parameters+unsigned_int-.cxx \ + patch-contrib?brl?bseg?bvxm?bvxm_memory_chunk.cxx depends_build port:cmake Deleted: trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Templates__bprb_parameters+unsigned_int-.cxx =================================================================== --- trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Templates__bprb_parameters+unsigned_int-.cxx 2008-12-02 01:10:32 UTC (rev 42875) +++ trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Templates__bprb_parameters+unsigned_int-.cxx 2008-12-02 01:18:31 UTC (rev 42876) @@ -1,6 +0,0 @@ ---- contrib/brl/bpro/bprb/Templates/bprb_parameters+unsigned_int-.cxx 2008-11-29 05:02:13.000000000 -0800 -+++ /dev/null 2008-11-29 04:57:42.000000000 -0800 -@@ -1,3 +0,0 @@ --#include -- --BPRB_PARAMETERS_INSTANTIATE(unsigned int); Deleted: trunk/dports/devel/vxl/files/patch-contrib__brl__bseg__bvxm__bvxm_memory_chunk.cxx =================================================================== --- trunk/dports/devel/vxl/files/patch-contrib__brl__bseg__bvxm__bvxm_memory_chunk.cxx 2008-12-02 01:10:32 UTC (rev 42875) +++ trunk/dports/devel/vxl/files/patch-contrib__brl__bseg__bvxm__bvxm_memory_chunk.cxx 2008-12-02 01:18:31 UTC (rev 42876) @@ -1,9 +0,0 @@ ---- contrib/brl/bseg/bvxm/bvxm_memory_chunk.cxx 2008-11-29 04:55:36.000000000 -0800 -+++ contrib/brl/bseg/bvxm/bvxm_memory_chunk.cxx 2008-11-29 04:55:45.000000000 -0800 -@@ -48,6 +48,3 @@ - data_ = new char[(unsigned)n]; - size_ = n; - } -- --VBL_SMART_PTR_INSTANTIATE(bvxm_memory_chunk); -- Copied: trunk/dports/devel/vxl/files/patch-contrib?\226?\152?\131brl?\226?\152?\131bpro?\226?\152?\131bprb?\226?\152?\131Templates?\226?\152?\131bprb_parameters+unsigned_int-.cxx (from rev 42875, trunk/dports/devel/vxl/files/patch-contrib__brl__bpro__bprb__Templates__bprb_parameters+unsigned_int-.cxx) =================================================================== -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Mon Dec 1 17:40:04 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Mon, 1 Dec 2008 17:40:04 -0800 (PST) Subject: [42877] trunk/dports/x11/gtk1/Portfile Message-ID: <20081202014004.7059E7DC227@beta.macosforge.org> Revision: 42877 http://trac.macports.org/changeset/42877 Author: jeremyhu at macports.org Date: 2008-12-01 17:40:03 -0800 (Mon, 01 Dec 2008) Log Message: ----------- gtk1 is not universal since glib1 isn't Modified Paths: -------------- trunk/dports/x11/gtk1/Portfile Modified: trunk/dports/x11/gtk1/Portfile =================================================================== --- trunk/dports/x11/gtk1/Portfile 2008-12-02 01:18:31 UTC (rev 42876) +++ trunk/dports/x11/gtk1/Portfile 2008-12-02 01:40:03 UTC (rev 42877) @@ -56,3 +56,6 @@ livecheck.check regex livecheck.url ftp://ftp.gtk.org/pub/gtk/v1.2/ livecheck.regex "gtk\\+-(\\d+(?:\\.\\d+)*)${extract.suffix}" + +# port:glib1 is not universal +universal_variant no -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Mon Dec 1 17:47:20 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Mon, 1 Dec 2008 17:47:20 -0800 (PST) Subject: [42878] trunk/dports/graphics/imlib/Portfile Message-ID: <20081202014720.C05397DC303@beta.macosforge.org> Revision: 42878 http://trac.macports.org/changeset/42878 Author: jeremyhu at macports.org Date: 2008-12-01 17:47:20 -0800 (Mon, 01 Dec 2008) Log Message: ----------- imlib is not universal because gtk1 isn't Modified Paths: -------------- trunk/dports/graphics/imlib/Portfile Modified: trunk/dports/graphics/imlib/Portfile =================================================================== --- trunk/dports/graphics/imlib/Portfile 2008-12-02 01:40:03 UTC (rev 42877) +++ trunk/dports/graphics/imlib/Portfile 2008-12-02 01:47:20 UTC (rev 42878) @@ -37,3 +37,6 @@ livecheck.check regex livecheck.url http://ftp.gnome.org/pub/gnome/sources/${name}/${branch}/ livecheck.regex {LATEST-IS-(\d+(?:\.\d+)*)} + +# port:gtk1 is not universal +universal_variant no -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Dec 1 17:51:46 2008 From: portindex at macports.org (portindex at macports.org) Date: Mon, 1 Dec 2008 17:51:46 -0800 (PST) Subject: [42879] trunk/dports/PortIndex Message-ID: <20081202015147.870E97DC36A@beta.macosforge.org> Revision: 42879 http://trac.macports.org/changeset/42879 Author: portindex at macports.org Date: 2008-12-01 17:51:45 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Total number of ports parsed: 5167 Ports successfully parsed: 5167 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 01:47:20 UTC (rev 42878) +++ trunk/dports/PortIndex 2008-12-02 01:51:45 UTC (rev 42879) @@ -9868,8 +9868,8 @@ variants universal description {command-line theme switcher for gtk2} portdir x11/gtk-theme-switch homepage http://www.muhri.net/nav.php3?node=gts epoch 0 platforms darwin name gtk-theme-switch long_description {Command-line replacement for gnomecc theme switcher with optional GUI (if passed the --preview or --dock switch)} maintainers jbenninghoff at mac.com categories x11 version 2.0.4 revision 1 gtk-thinice-engine 412 variants universal portdir x11/gtk-thinice-engine description {A simple, clean theme engine} homepage http://www.gnome.org/ epoch 0 platforms darwin name gtk-thinice-engine depends_lib {lib:libX11.6:XFree86 path:lib/pkgconfig/glib-2.0.pc:glib2 lib:libgtk.2:gtk2} long_description {gtk-thinice-engine is a simple, clean engine for GTK+-2.} maintainers nomaintainer version 2.0.2 categories {x11 gnome} revision 0 -gtk1 443 -variants {universal sunos} portdir x11/gtk1 description {Gimp Tool Kit} homepage http://www.gtk.org/ epoch 0 platforms {darwin freebsd sunos} name gtk1 depends_lib {port:gettext port:glib1 lib:libX11.6:XFree86} maintainers nomaintainer long_description {This is GTK+ version 1.2.10. GTK+, which stands for the Gimp ToolKit, is a library for creating graphical user interfaces for the X Window System.} version 1.2.10 categories x11 revision 7 +gtk1 431 +variants sunos portdir x11/gtk1 description {Gimp Tool Kit} homepage http://www.gtk.org/ epoch 0 platforms {darwin freebsd sunos} name gtk1 depends_lib {port:gettext port:glib1 lib:libX11.6:XFree86} maintainers nomaintainer long_description {This is GTK+ version 1.2.10. GTK+, which stands for the Gimp ToolKit, is a library for creating graphical user interfaces for the X Window System.} version 1.2.10 categories x11 revision 7 gtk2 809 variants {universal darwin_7 darwin_8 no_x11 quartz x11} depends_build port:pkgconfig variant_desc {no_x11 {Same as +quartz} quartz {Enable Quartz rendering} x11 {Enable rendering in X11 (default)}} portdir x11/gtk2 description {Gimp ToolKit version 2} homepage http://www.gtk.org/ depends_run port:shared-mime-info epoch 0 platforms darwin depends_lib {port:cairo port:fontconfig port:freetype path:lib/pkgconfig/glib-2.0.pc:glib2 port:jpeg port:tiff port:libiconv port:libpng port:jasper port:atk path:lib/pkgconfig/pango.pc:pango port:gettext port:zlib port:xrender lib:libX11:xorg} name gtk2 maintainers {nox openmaintainer} long_description {This is GTK+ version 2.x. GTK+, which stands for Gimp ToolKit, is a library for creating GUIs for the X Windows System.} categories x11 version 2.14.4 revision 1 gtk2-aurora 499 @@ -10104,8 +10104,8 @@ variants universal portdir x11/xorg-fontcacheproto description {X.org fontcacheproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-fontcacheproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for the Fontcache library} version 0.1.2 categories {x11 devel} revision 0 xorg-fontsproto 326 variants universal portdir x11/xorg-fontsproto description {X.org fontsproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-fontsproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Font-related prototype header files for X11} version 2.0.2 categories {x11 devel} revision 0 -xorg-inputproto 332 -variants universal portdir x11/xorg-inputproto description {X.org inputproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-inputproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for the XInput extension to X11} version 1.4.2 categories {x11 devel} revision 0 +xorg-inputproto 288 +variants universal description {X.org inputproto} portdir x11/xorg-inputproto homepage http://www.x.org epoch 0 platforms darwin name xorg-inputproto long_description {Prototype headers for the XInput extension to X11} maintainers jeremyhu categories {x11 devel} version 1.5.0 revision 0 xorg-kbproto 316 variants universal portdir x11/xorg-kbproto description {X.org kbproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-kbproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for Xkb extension to X11} version 1.0.3 categories {x11 devel} revision 0 xorg-libX11 571 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Mon Dec 1 18:05:22 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Mon, 1 Dec 2008 18:05:22 -0800 (PST) Subject: [42880] trunk/dports/textproc/libxml/Portfile Message-ID: <20081202020522.B70077DC6DF@beta.macosforge.org> Revision: 42880 http://trac.macports.org/changeset/42880 Author: jeremyhu at macports.org Date: 2008-12-01 18:05:22 -0800 (Mon, 01 Dec 2008) Log Message: ----------- libxml: autoreconf to build universal Modified Paths: -------------- trunk/dports/textproc/libxml/Portfile Modified: trunk/dports/textproc/libxml/Portfile =================================================================== --- trunk/dports/textproc/libxml/Portfile 2008-12-02 01:51:45 UTC (rev 42879) +++ trunk/dports/textproc/libxml/Portfile 2008-12-02 02:05:22 UTC (rev 42880) @@ -22,12 +22,17 @@ master_sites gnome:sources/${name}/1.8 checksums md5 53846294aa850a7d042948176d1d19dc depends_lib port:pkgconfig +depends_build port:libtool configure.args --disable-static platform darwin { patchfiles patches } +pre-configure { + system "cd ${worksrcpath} && autoreconf -fvi" +} + livecheck.check regex livecheck.url http://ftp.gnome.org/pub/gnome/sources/${name}/${branch}/ livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}" -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Dec 1 18:05:42 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 1 Dec 2008 18:05:42 -0800 (PST) Subject: [42881] trunk/dports/graphics/ImageMagick/Portfile Message-ID: <20081202020542.B588D7DC73A@beta.macosforge.org> Revision: 42881 http://trac.macports.org/changeset/42881 Author: ryandesign at macports.org Date: 2008-12-01 18:05:42 -0800 (Mon, 01 Dec 2008) Log Message: ----------- ImageMagick: update to 6.4.6-7 All 700 tests behaved as expected (33 expected failures) Modified Paths: -------------- trunk/dports/graphics/ImageMagick/Portfile Modified: trunk/dports/graphics/ImageMagick/Portfile =================================================================== --- trunk/dports/graphics/ImageMagick/Portfile 2008-12-02 02:05:22 UTC (rev 42880) +++ trunk/dports/graphics/ImageMagick/Portfile 2008-12-02 02:05:42 UTC (rev 42881) @@ -3,13 +3,12 @@ PortSystem 1.0 name ImageMagick -version 6.4.6-0 +version 6.4.6-7 set reasonable_version [lindex [split ${version} -] 0] homepage http://www.imagemagick.org/ categories graphics devel maintainers ryandesign use_bzip2 yes -worksrcdir ${name}-${reasonable_version} platforms darwin use_parallel_build yes @@ -38,9 +37,9 @@ # ftp://ftp.nluug.nl/pub/${name}/ \ checksums \ - md5 6a3a15d44f2630a0a6eda2d8531434e9 \ - sha1 954a441c5f5d23b9e2cb92906087a85a0bbb6e59 \ - rmd160 af3f2ebba041798099fd221995c42f3174862904 + md5 e432fbb822bcf816fc11e7cd87605768 \ + sha1 2ddae8b308c23a9313028403540e90f0c1759302 \ + rmd160 ef234b139f4d868a5ea360d5d7da5552ad6b464b depends_lib \ lib:libX11.6:XFree86 \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Dec 1 18:14:09 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 1 Dec 2008 18:14:09 -0800 (PST) Subject: [42882] trunk/dports/graphics/dcraw/Portfile Message-ID: <20081202021409.23C4C7DC91F@beta.macosforge.org> Revision: 42882 http://trac.macports.org/changeset/42882 Author: ryandesign at macports.org Date: 2008-12-01 18:14:08 -0800 (Mon, 01 Dec 2008) Log Message: ----------- dcraw: update to 8.89-20081201205200 (small change in dcraw.c) Modified Paths: -------------- trunk/dports/graphics/dcraw/Portfile Modified: trunk/dports/graphics/dcraw/Portfile =================================================================== --- trunk/dports/graphics/dcraw/Portfile 2008-12-02 02:05:42 UTC (rev 42881) +++ trunk/dports/graphics/dcraw/Portfile 2008-12-02 02:14:08 UTC (rev 42882) @@ -4,7 +4,8 @@ name dcraw version 8.89 -set distfile_date 20081126034300 +revision 1 +set distfile_date 20081201205200 categories graphics maintainers ryandesign platforms darwin @@ -21,9 +22,9 @@ ${description} checksums \ - md5 201fd4fb1fe39f7f07a5b2c7315df8f7 \ - sha1 2ffc800f6d5eb21f5f60f845685b1fa75652ceb2 \ - rmd160 33418a801c506f885dfdd71d155df939f85a65ed + md5 f7d2991fd1422fe6ad10225761ca40f1 \ + sha1 8e00524f75a122653884e74f760ebc9bf339d84b \ + rmd160 a49cf418553fd5c8549593849e537e3a90c8c7c5 depends_lib \ port:gettext \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Mon Dec 1 18:22:48 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Mon, 1 Dec 2008 18:22:48 -0800 (PST) Subject: [42883] trunk/dports/devel/orbit/Portfile Message-ID: <20081202022248.9A4117DCA57@beta.macosforge.org> Revision: 42883 http://trac.macports.org/changeset/42883 Author: jeremyhu at macports.org Date: 2008-12-01 18:22:47 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Orbit is not universal because it depends on glib1 which isn't... Modified Paths: -------------- trunk/dports/devel/orbit/Portfile Modified: trunk/dports/devel/orbit/Portfile =================================================================== --- trunk/dports/devel/orbit/Portfile 2008-12-02 02:14:08 UTC (rev 42882) +++ trunk/dports/devel/orbit/Portfile 2008-12-02 02:22:47 UTC (rev 42883) @@ -37,3 +37,5 @@ livecheck.url http://ftp.gnome.org/pub/gnome/sources/ORBit/${branch}/ livecheck.regex {LATEST-IS-(\d+(?:\.\d+)*)} +# port:glib1 is not universal +universal_variant no -------------- next part -------------- An HTML attachment was scrubbed... URL: From macsforever2000 at macports.org Mon Dec 1 18:34:39 2008 From: macsforever2000 at macports.org (macsforever2000 at macports.org) Date: Mon, 1 Dec 2008 18:34:39 -0800 (PST) Subject: [42884] trunk/dports/multimedia/MPlayer/Portfile Message-ID: <20081202023439.43A0A7DCB4D@beta.macosforge.org> Revision: 42884 http://trac.macports.org/changeset/42884 Author: macsforever2000 at macports.org Date: 2008-12-01 18:34:38 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Replace libungif dependency with giflib. (#17193) Modified Paths: -------------- trunk/dports/multimedia/MPlayer/Portfile Modified: trunk/dports/multimedia/MPlayer/Portfile =================================================================== --- trunk/dports/multimedia/MPlayer/Portfile 2008-12-02 02:22:47 UTC (rev 42883) +++ trunk/dports/multimedia/MPlayer/Portfile 2008-12-02 02:34:38 UTC (rev 42884) @@ -65,7 +65,7 @@ depends_lib port:jpeg port:lame port:libiconv port:libmad \ - port:libogg port:libpng port:libungif \ + port:libogg port:libpng path:include/gif_lib.h:giflib \ port:libvorbis port:lzo2 port:ncurses port:zlib depends_build port:pkgconfig -------------- next part -------------- An HTML attachment was scrubbed... URL: From macsforever2000 at macports.org Mon Dec 1 18:42:47 2008 From: macsforever2000 at macports.org (macsforever2000 at macports.org) Date: Mon, 1 Dec 2008 18:42:47 -0800 (PST) Subject: [42885] trunk/dports/graphics/swftools/Portfile Message-ID: <20081202024247.428937DCC25@beta.macosforge.org> Revision: 42885 http://trac.macports.org/changeset/42885 Author: macsforever2000 at macports.org Date: 2008-12-01 18:42:46 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Replace libungif dependency with giflib. (#17193) Modified Paths: -------------- trunk/dports/graphics/swftools/Portfile Modified: trunk/dports/graphics/swftools/Portfile =================================================================== --- trunk/dports/graphics/swftools/Portfile 2008-12-02 02:34:38 UTC (rev 42884) +++ trunk/dports/graphics/swftools/Portfile 2008-12-02 02:42:46 UTC (rev 42885) @@ -19,7 +19,7 @@ port:openjpeg \ port:freetype \ port:lame \ - port:libungif \ + path:include/gif_lib.h:giflib \ port:python25 configure.env PYTHON=${prefix}/bin/python2.5 configure.cppflags-append -I${prefix}/include/lame -------------- next part -------------- An HTML attachment was scrubbed... URL: From macsforever2000 at macports.org Mon Dec 1 18:50:15 2008 From: macsforever2000 at macports.org (macsforever2000 at macports.org) Date: Mon, 1 Dec 2008 18:50:15 -0800 (PST) Subject: [42886] trunk/dports/x11/windowmaker/Portfile Message-ID: <20081202025015.9C1457DCDB9@beta.macosforge.org> Revision: 42886 http://trac.macports.org/changeset/42886 Author: macsforever2000 at macports.org Date: 2008-12-01 18:50:15 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Replace libungif dependency with giflib. (#17193) Modified Paths: -------------- trunk/dports/x11/windowmaker/Portfile Modified: trunk/dports/x11/windowmaker/Portfile =================================================================== --- trunk/dports/x11/windowmaker/Portfile 2008-12-02 02:42:46 UTC (rev 42885) +++ trunk/dports/x11/windowmaker/Portfile 2008-12-02 02:50:15 UTC (rev 42886) @@ -33,7 +33,7 @@ depends_lib lib:libX11.6:XFree86 \ port:Xft2 port:gettext \ - port:libpng port:libungif port:tiff + port:libpng path:include/gif_lib.h:giflib port:tiff post-patch { set fl [glob -directory ${worksrcpath} WindowMaker/*menu*] -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Dec 1 18:51:44 2008 From: portindex at macports.org (portindex at macports.org) Date: Mon, 1 Dec 2008 18:51:44 -0800 (PST) Subject: [42887] trunk/dports/PortIndex Message-ID: <20081202025145.F39D47DCE09@beta.macosforge.org> Revision: 42887 http://trac.macports.org/changeset/42887 Author: portindex at macports.org Date: 2008-12-01 18:51:43 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Total number of ports parsed: 5167 Ports successfully parsed: 5167 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 02:50:15 UTC (rev 42886) +++ trunk/dports/PortIndex 2008-12-02 02:51:43 UTC (rev 42887) @@ -1572,8 +1572,8 @@ variants {universal darwin_8} portdir devel/openssl97 description {OpenSSL SSL/TLS cryptography library} homepage http://www.openssl.org/ epoch 0 platforms {darwin freebsd} name openssl97 depends_lib port:zlib maintainers mww long_description {The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a full-strength general purpose cryptography library.} version 0.9.7m categories {devel security} revision 0 opensync 741 variants universal portdir devel/opensync description {Synchronization framework} homepage http://www.opensync.org/ epoch 0 platforms darwin name opensync depends_lib {port:gettext path:lib/pkgconfig/glib-2.0.pc:glib2 port:libiconv port:libxml2 port:pkgconfig port:py25-gobject port:py25-numeric port:python25 port:sqlite3 port:swig port:zlib} maintainers nomaintainer long_description {OpenSync is a synchronization framework that is platform and distribution independent. It consists of a powerful sync-engine and several plugins that can be used to connect to devices. OpenSync is very flexible and capable of synchronizing any type of data, including contacts, calendar, tasks, notes and files.} version 0.22 categories devel revision 2 -orbit 517 -variants {universal darwin_6} portdir devel/orbit description {High-performance CORBA ORB with C lang support} homepage http://orbit-resource.sourceforge.net/ epoch 0 platforms darwin name orbit depends_lib {port:glib1 port:gettext} maintainers nomaintainer long_description {ORBit is a high-performance CORBA ORB with support for the C language. It allows programs to send requests and receive replies from other programs, regardless of the locations of the two programs.} version 0.5.17 categories devel revision 3 +orbit 505 +variants darwin_6 portdir devel/orbit description {High-performance CORBA ORB with C lang support} homepage http://orbit-resource.sourceforge.net/ epoch 0 platforms darwin name orbit depends_lib {port:glib1 port:gettext} maintainers nomaintainer long_description {ORBit is a high-performance CORBA ORB with support for the C language. It allows programs to send requests and receive replies from other programs, regardless of the locations of the two programs.} version 0.5.17 categories devel revision 3 orbit2 488 variants {universal darwin_7} depends_build port:pkgconfig portdir devel/orbit2 description {Code for an ORB written in C will spontaneously evolve here.} homepage http://www.gnome.org/projects/ORBit2/ epoch 0 platforms darwin depends_lib {path:lib/pkgconfig/glib-2.0.pc:glib2 port:gettext port:libiconv port:libidl} name orbit2 maintainers nomaintainer long_description {{Code for an ORB written in C will spontaneously evolve here.}} version 2.14.16 categories {devel gnome} revision 0 ossp-al 346 @@ -2681,7 +2681,7 @@ GraphicsMagick 806 variants {universal q8 q16 q32} variant_desc {q8 {Use 8 bits per pixel quantum (default)} q16 {Use 16 bits per pixel quantum} q32 {Use 32 bits per pixel quantum}} portdir graphics/GraphicsMagick description {image processing tools collection} homepage http://www.graphicsmagick.org/ epoch 0 platforms darwin name GraphicsMagick depends_lib {port:libxml2 port:bzip2 port:zlib port:libpng port:tiff port:freetype port:libiconv port:jpeg} maintainers nomaintainer long_description {GraphicsMagick is the swiss army knife of image processing. It provides a robust collection of tools and libraries which support reading, writing, and manipulating an image in over 88 major formats including important formats like DPX, GIF, JPEG, JPEG-2000, PNG, PDF, SVG, and TIFF.} version 1.3 categories graphics revision 0 ImageMagick 1824 -variants {universal rsvg perl gs lcms lqr wmf mpeg jbig jpeg2 graphviz hdri q8 q16 q32 no_x11 no_plus_plus darwin_6} depends_build port:pkgconfig variant_desc {rsvg {Support SVG using librsvg} perl {Install PerlMagick} gs {Include Ghostscript library support} lcms {Support the Little Color Management System} lqr {Support Liquid Rescale (experimental)} wmf {Support the Windows Metafile Format} mpeg {Support MPEG-1 and MPEG-2 video} jbig {Support JBIG} jpeg2 {Support JPEG-2000 using JasPer} graphviz {Support Graphviz} hdri {Support High Dynamic Range Imaging using OpenEXR} q8 {Use 8 bits per pixel quantum} q16 {Use 16 bits per pixel quantum (default)} q32 {Use 32 bits per pixel quantum} no_x11 {Disable X11 support} no_plus_plus {Do not install Magick++}} portdir graphics/ImageMagick description {Tools and libraries to manipulate images in many formats} homepage http://www.imagemagick.org/ epoch 0 platforms darwin name ImageMagick depends_lib {lib:libX11.6:XFree86 port:bzip2 po rt:jpeg port:libpng port:tiff port:zlib port:freetype port:fontconfig port:libiconv port:expat port:libxml2} maintainers ryandesign long_description {ImageMagick is a robust collection of tools and libraries to create, edit and compose bitmap images in a wide variety of formats. You can crop, resize, rotate, sharpen, color reduce or add effects or text or straight or curved lines to an image or image sequence and save your completed work in the same or differing image format. You can even create images from scratch. Image processing operations are available from the command line as well as through C, Ch, C++, Java, Perl, PHP, Python, Ruby and Tcl/Tk programming interfaces. Over 90 image formats are supported, including GIF, JPEG, JPEG 2000, PNG, PDF, PhotoCD and TIFF.} categories {graphics devel} version 6.4.6-0 revision 0 +variants {universal rsvg perl gs lcms lqr wmf mpeg jbig jpeg2 graphviz hdri q8 q16 q32 no_x11 no_plus_plus darwin_6} depends_build port:pkgconfig variant_desc {rsvg {Support SVG using librsvg} perl {Install PerlMagick} gs {Include Ghostscript library support} lcms {Support the Little Color Management System} lqr {Support Liquid Rescale (experimental)} wmf {Support the Windows Metafile Format} mpeg {Support MPEG-1 and MPEG-2 video} jbig {Support JBIG} jpeg2 {Support JPEG-2000 using JasPer} graphviz {Support Graphviz} hdri {Support High Dynamic Range Imaging using OpenEXR} q8 {Use 8 bits per pixel quantum} q16 {Use 16 bits per pixel quantum (default)} q32 {Use 32 bits per pixel quantum} no_x11 {Disable X11 support} no_plus_plus {Do not install Magick++}} portdir graphics/ImageMagick description {Tools and libraries to manipulate images in many formats} homepage http://www.imagemagick.org/ epoch 0 platforms darwin name ImageMagick depends_lib {lib:libX11.6:XFree86 port:bzip2 po rt:jpeg port:libpng port:tiff port:zlib port:freetype port:fontconfig port:libiconv port:expat port:libxml2} maintainers ryandesign long_description {ImageMagick is a robust collection of tools and libraries to create, edit and compose bitmap images in a wide variety of formats. You can crop, resize, rotate, sharpen, color reduce or add effects or text or straight or curved lines to an image or image sequence and save your completed work in the same or differing image format. You can even create images from scratch. Image processing operations are available from the command line as well as through C, Ch, C++, Java, Perl, PHP, Python, Ruby and Tcl/Tk programming interfaces. Over 90 image formats are supported, including GIF, JPEG, JPEG 2000, PNG, PDF, PhotoCD and TIFF.} categories {graphics devel} version 6.4.6-7 revision 0 OpenSceneGraph 515 variants darwin depends_build port:cmake portdir graphics/OpenSceneGraph description {high-performance 3D graphics toolkit} homepage http://www.openscenegraph.org/ epoch 0 platforms darwin depends_lib {port:freetype port:gdal} name OpenSceneGraph maintainers {ryandesign openmaintainer} long_description {OpenSceneGraph is a high-performance 3D graphics toolkit useful in fields such as visual simulation, games, virtual reality, scientific visualization and modelling} version 2.6.1 categories graphics revision 0 Renaissance-Framework 622 @@ -2739,7 +2739,7 @@ dcmtk 645 variants {universal darwin_9} portdir graphics/dcmtk description {The DICOM Toolkit.} homepage http://dicom.offis.de/dcmtk epoch 0 platforms darwin name dcmtk depends_lib {port:zlib port:tiff port:libpng port:libxml2} maintainers uni-koblenz.de:guidolorenz long_description {DCMTK is a collection of libraries and applications implementing large parts of the DICOM standard. It includes software for examining, constructing and converting DICOM image files, handling offline media, sending and receiving images over a network connection, as well as demonstrative image storage and worklist servers.} version 3.5.4 categories graphics revision 0 dcraw 392 -variants universal portdir graphics/dcraw description {Raw Digital Photo Decoding, supporting 209 cameras} homepage http://www.cybercom.net/~dcoffin/dcraw/ epoch 0 platforms darwin name dcraw depends_lib {port:gettext port:libiconv port:jpeg port:lcms} maintainers ryandesign long_description {{Raw Digital Photo Decoding, supporting 209 cameras}} version 8.89 categories graphics revision 0 +variants universal portdir graphics/dcraw description {Raw Digital Photo Decoding, supporting 209 cameras} homepage http://www.cybercom.net/~dcoffin/dcraw/ epoch 0 platforms darwin name dcraw depends_lib {port:gettext port:libiconv port:jpeg port:lcms} maintainers ryandesign long_description {{Raw Digital Photo Decoding, supporting 209 cameras}} version 8.89 categories graphics revision 1 djvulibre 659 variants universal portdir graphics/djvulibre description {Web centric format and software platform for distributing documents and images.} homepage http://djvulibre.djvuzone.org/ epoch 0 platforms darwin name djvulibre depends_lib {port:libiconv port:jpeg port:tiff port:qt3} maintainers nomaintainer long_description {DjVu can advantageously replace PDF, PS, TIFF,JPEG, and GIF for distributing scanned documents, digital documents, or high-resolution pictures. DjVu content downloads faster, displays and renders faster, looks nicer on a screen and consume less client resources than competing formats.} version 3.5.19 categories {graphics www} revision 0 dvi2bitmap 546 @@ -2838,8 +2838,8 @@ variants universal portdir graphics/imageindex description {generates static HTML galleries of images} homepage http://www.edwinh.org/imageindex/ depends_run port:p5-image-info epoch 0 platforms darwin name imageindex depends_lib port:p5-perlmagick maintainers rsorasen at broadpark.no long_description {{generates static HTML galleries of images}} version 1.0.9 categories graphics revision 0 imecho 548 variants universal description {command line utility to display images in an xterm} portdir graphics/imecho epoch 0 platforms darwin depends_lib lib:Imlib.h:imlib name imecho long_description {{command line utility to display images in an xterm} Once drawn the pictures are never refreshed, so certain operations as resizing, scrolling or partially obscuring the terminal window will clear the picture permanently. Depending on the X terminal used your mileage will vary.} maintainers nomaintainer categories {graphics mail} version 0.1 revision 0 -imlib 552 -variants universal portdir graphics/imlib description {Graphics library related to the enlightenment window manager} homepage http://www.enlightenment.org/pages/imlib.html epoch 0 platforms darwin name imlib depends_lib {port:gtk1 port:jpeg port:tiff path:include/gif_lib.h:giflib port:libpng} maintainers nomaintainer long_description {Imlib is an advanced graphics library meant to replace existing libraries like libXpm, and provides many more features with much greater flexibility and speed.} version 1.9.15 categories {graphics devel} revision 0 +imlib 533 +description {Graphics library related to the enlightenment window manager} portdir graphics/imlib homepage http://www.enlightenment.org/pages/imlib.html epoch 0 platforms darwin name imlib depends_lib {port:gtk1 port:jpeg port:tiff path:include/gif_lib.h:giflib port:libpng} maintainers nomaintainer long_description {Imlib is an advanced graphics library meant to replace existing libraries like libXpm, and provides many more features with much greater flexibility and speed.} version 1.9.15 categories {graphics devel} revision 0 imlib2 640 variants {universal i386} portdir graphics/imlib2 description {Image loading and rendering library} homepage http://www.enlightenment.org/pages/imlib2.html epoch 0 platforms darwin name imlib2 depends_lib {port:jpeg port:libpng port:freetype port:zlib lib:libX11:XFree86} maintainers nomaintainer long_description {Imlib is a general Image loading and rendering library designed to make the task of loading images, and obtaining X-Windows drawables a simple task, as well as a quick one. It also aims to provide simple manipulation routines that might be desired for common operations.} version 1.4.1 categories {graphics devel} revision 0 inkscape 938 @@ -2996,8 +2996,8 @@ variants universal description {DXT Compression Library} portdir graphics/squish homepage http://www.sjbrown.co.uk/?code=squish epoch 0 platforms darwin name squish long_description {DXT compression is a very well-designed compression scheme for colour textures with an optional alpha channel. The squish library is a cross-platform open source implementation of DXT compression (and decompression).} maintainers julian9 at gmail.com categories graphics version 1.10 revision 1 svg2pdf 366 description {Render an SVG image to a PDF file (using cairo)} portdir graphics/svg2pdf homepage http://cairographics.org/ epoch 0 platforms darwin name svg2pdf depends_lib {port:cairo port:libsvg-cairo} maintainers {pguyot at kallisys.net openmaintainer} long_description {{Render an SVG image to a PDF file (using cairo)}} version 0.1.3 categories graphics revision 1 -swftools 388 -variants universal portdir graphics/swftools description {SWF manipulation and generation tools} homepage http://www.swftools.org epoch 0 platforms darwin name swftools depends_lib {port:jpeg port:openjpeg port:freetype port:lame port:libungif port:python25} long_description {{SWF manipulation and generation tools}} maintainers nomaintainer version 0.8.1 categories graphics revision 0 +swftools 404 +variants universal portdir graphics/swftools description {SWF manipulation and generation tools} homepage http://www.swftools.org epoch 0 platforms darwin name swftools depends_lib {port:jpeg port:openjpeg port:freetype port:lame path:include/gif_lib.h:giflib port:python25} long_description {{SWF manipulation and generation tools}} maintainers nomaintainer version 0.8.1 categories graphics revision 0 t1utils 691 variants universal description {Command line tools for dealing with Type 1 fonts} portdir graphics/t1utils homepage http://www.lcdf.org/~eddietwo/type/ epoch 0 platforms darwin name t1utils long_description {t1utils is a collection of simple type-1 font manipulation programs. Together, they allow you to convert between PFA (ASCII) and PFB (binary) formats, disassemble PFA or PFB files into human-readable form, reassemble them into PFA or PFB format. Additionally you can extract font resources from a Macintosh font file (ATM/Laserwriter), or create a Macintosh Type 1 font file from a PFA or PFB font.} maintainers nomaintainer categories {graphics print fonts} version 1.32 revision 0 tgif 241 @@ -4520,8 +4520,8 @@ variants universal portdir math/yacas description {Yet Another Computer Algebra System} homepage http://yacas.sourceforge.net/ epoch 0 platforms darwin name yacas depends_lib path:bin/perl:perl5 maintainers bogosoft.com:olt long_description {YACAS is an easy to use, general purpose Computer Algebra System, a program for symbolic manipulation of mathematical expressions. It uses its own programming language designed for symbolic as well as arbitrary-precision numerical computations. The system has a library of scripts that implement many of the symbolic algebra operations - new algorithms can be easily added to the library.} version 1.2.2 categories math revision 0 AtomicParsley 378 portdir multimedia/AtomicParsley variants universal description {MPEG-4 command line tool} name AtomicParsley version 0.9.0 categories multimedia homepage http://atomicparsley.sourceforge.net revision 0 epoch 0 maintainers cedric.luthi at gmail.com long_description {AtomicParsley is a lightweight command line program for reading, parsing and setting metadata into MPEG-4 files.} -MPlayer 1860 -variants {universal man_all_lang osd fribidi noappleremote lirc nodvd smb theora xvid x264 binary_codecs speex faac dv twolame dts sdl aa caca x11 arts esd macosx darwin darwin_8} depends_build port:pkgconfig variant_desc {man_all_lang {Install all possible languages for man pages} osd {Enable onscreen display and TrueType font support} fribidi {Enable FriBidi Unicode support} noappleremote {Disable Apple Infrared Remote support} lirc {Enable Linux Infrared Remote Daemon support} nodvd {Disable DVD and DeCSS support} smb {Enable smb:// network support} theora {Enable OggTheora support} xvid {Enable XviD encoding} x264 {Enable H.264 encoding} binary_codecs {Enable platform-specific binary codecs} speex {Enable Speex playback} faac {Enable AAC encoding} dv {Enable DV encoding} twolame {Enable MPEG Audio Layer 2 encoding} dts {Enable non-passthrough DTS playback} sdl {Enable SDL video output} aa {Enable animated ASCII art video output} caca {Enable animated ASCII art video outp ut} arts {Enable aRts audio output} esd {Enable EsounD audio output}} portdir multimedia/MPlayer description {The Unix movie player} homepage http://www.mplayerhq.hu/ epoch 0 platforms darwin name MPlayer depends_lib {port:jpeg port:lame port:libiconv port:libmad port:libogg port:libpng port:libungif port:libvorbis port:lzo2 port:ncurses port:zlib} maintainers {ecronin openmaintainer} long_description {MPlayer can play most standard video formats out of the box and almost all others with the help of external codecs. MPlayer currently works best from the command line, but visual feedback for many functions is available from its onscreen status display (OSD), which is also used for displaying subtitles. MPlayer also has a GUI with skin support and several unofficial alternative graphical frontends are available.} categories multimedia version 1.0rc2 revision 2 +MPlayer 1876 +variants {universal man_all_lang osd fribidi noappleremote lirc nodvd smb theora xvid x264 binary_codecs speex faac dv twolame dts sdl aa caca x11 arts esd macosx darwin darwin_8} depends_build port:pkgconfig variant_desc {man_all_lang {Install all possible languages for man pages} osd {Enable onscreen display and TrueType font support} fribidi {Enable FriBidi Unicode support} noappleremote {Disable Apple Infrared Remote support} lirc {Enable Linux Infrared Remote Daemon support} nodvd {Disable DVD and DeCSS support} smb {Enable smb:// network support} theora {Enable OggTheora support} xvid {Enable XviD encoding} x264 {Enable H.264 encoding} binary_codecs {Enable platform-specific binary codecs} speex {Enable Speex playback} faac {Enable AAC encoding} dv {Enable DV encoding} twolame {Enable MPEG Audio Layer 2 encoding} dts {Enable non-passthrough DTS playback} sdl {Enable SDL video output} aa {Enable animated ASCII art video output} caca {Enable animated ASCII art video outp ut} arts {Enable aRts audio output} esd {Enable EsounD audio output}} portdir multimedia/MPlayer description {The Unix movie player} homepage http://www.mplayerhq.hu/ epoch 0 platforms darwin name MPlayer depends_lib {port:jpeg port:lame port:libiconv port:libmad port:libogg port:libpng path:include/gif_lib.h:giflib port:libvorbis port:lzo2 port:ncurses port:zlib} maintainers {ecronin openmaintainer} long_description {MPlayer can play most standard video formats out of the box and almost all others with the help of external codecs. MPlayer currently works best from the command line, but visual feedback for many functions is available from its onscreen status display (OSD), which is also used for displaying subtitles. MPlayer also has a GUI with skin support and several unofficial alternative graphical frontends are available.} categories multimedia version 1.0rc2 revision 2 XviD 725 variants universal description {High performance and high quality MPEG-4 video library} portdir multimedia/XviD homepage http://www.xvid.org/ epoch 0 platforms {darwin sunos} name XviD long_description {The Xvid video codec implements MPEG-4 Simple Profile and Advanced Simple Profile standards. It permits compressing and decompressing digital video in order to reduce the required bandwidth of video data for transmission over computer networks or efficient storage on CDs or DVDs. Due to its unrivalled quality Xvid has gained great popularity and is used in many other GPLed applications, like e.g. Transcode, MEncoder, MPlayer, Xine and many more.} maintainers nox categories {multimedia devel} version 1.1.3 revision 1 avidemux 690 @@ -9262,8 +9262,8 @@ variants {universal darwin_8} description {library for processing UTF-8 encoded Unicode strings} portdir textproc/libutf8proc homepage http://www.flexiguided.de/publications.utf8proc.en.html epoch 0 platforms darwin name libutf8proc long_description {{library for processing UTF-8 encoded Unicode strings}} maintainers mww categories textproc version 1.1.2 revision 0 libwpd 534 variants {universal with_doxygen} depends_build port:pkgconfig variant_desc {with_doxygen {Build documentation with doxygen}} portdir textproc/libwpd description {A general purpose library for reading WordPerfect files.} homepage http://libwpd.sourceforge.net/ epoch 0 platforms darwin depends_lib {path:lib/pkgconfig/glib-2.0.pc:glib2 port:libgsf port:libxml2} name libwpd long_description {{A general purpose library for reading WordPerfect files.}} maintainers {devans openmaintainer} categories textproc version 0.8.14 revision 0 -libxml 676 -variants {universal darwin} portdir textproc/libxml description {XML parsing library} homepage http://xmlsoft.org/ epoch 0 platforms darwin name libxml depends_lib port:pkgconfig maintainers nomaintainer long_description {Libxml is the XML C library developed for the Gnome project. XML itself is a metalanguage to design markup languages, i.e. text language where semantic and structure are added to the content using extra markup information enclosed between angle brackets. HTML is the most well-known markup language. Though the library is written in C a variety of language bindings make it available in other environments.} version 1.8.17 categories textproc revision 0 +libxml 703 +variants {universal darwin} depends_build port:libtool portdir textproc/libxml description {XML parsing library} homepage http://xmlsoft.org/ epoch 0 platforms darwin name libxml depends_lib port:pkgconfig maintainers nomaintainer long_description {Libxml is the XML C library developed for the Gnome project. XML itself is a metalanguage to design markup languages, i.e. text language where semantic and structure are added to the content using extra markup information enclosed between angle brackets. HTML is the most well-known markup language. Though the library is written in C a variety of language bindings make it available in other environments.} version 1.8.17 categories textproc revision 0 libxml2 583 variants {universal debug darwin_7 darwin_8 darwin_9} variant_desc {debug {Enable debug build}} portdir textproc/libxml2 description {gnome xml library} homepage http://xmlsoft.org/ epoch 0 platforms darwin name libxml2 depends_lib {port:libiconv port:zlib} long_description {Libxml is the XML C library developed for the Gnome project. XML itself is a metalanguage to design markup languages. Though the library is written in C, a variety of language bindings make it available in other environments.} maintainers cedric.luthi at gmail.com version 2.7.2 categories textproc revision 1 libxmldiff 450 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Mon Dec 1 19:00:14 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Mon, 1 Dec 2008 19:00:14 -0800 (PST) Subject: [42888] trunk/dports/x11/fvwm/Portfile Message-ID: <20081202030014.92A517DD0A3@beta.macosforge.org> Revision: 42888 http://trac.macports.org/changeset/42888 Author: jeremyhu at macports.org Date: 2008-12-01 19:00:14 -0800 (Mon, 01 Dec 2008) Log Message: ----------- fvwm: Install to correct prefix Modified Paths: -------------- trunk/dports/x11/fvwm/Portfile Modified: trunk/dports/x11/fvwm/Portfile =================================================================== --- trunk/dports/x11/fvwm/Portfile 2008-12-02 02:51:43 UTC (rev 42887) +++ trunk/dports/x11/fvwm/Portfile 2008-12-02 03:00:14 UTC (rev 42888) @@ -9,13 +9,13 @@ homepage http://www.fvwm.org/ maintainers nomaintainer -categories x11-wm x11 -prefix ${x11prefix} +categories x11 x11-wm platforms darwin master_sites ftp://ftp.hpc.uh.edu/pub/fvwm/version-1/ \ ftp://ftp.ics.es.osaka-u.ac.jp/pub/CFAN/sources/1.x/ checksums md5 875733e77e285566197f4b50746aefc6 patchfiles patch-configure.h use_xmkmf yes -depends_build bin:xmkmf:imake +depends_build bin:xmkmf:imake depends_lib lib:libX11.6:XFree86 lib:libXpm.4:xpm +destroot.destdir DESTDIR=${destroot} BINDIR=${prefix}/bin -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Mon Dec 1 19:01:16 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Mon, 1 Dec 2008 19:01:16 -0800 (PST) Subject: [42889] trunk/dports/x11 Message-ID: <20081202030117.504AE7DD1EE@beta.macosforge.org> Revision: 42889 http://trac.macports.org/changeset/42889 Author: jeremyhu at macports.org Date: 2008-12-01 19:01:16 -0800 (Mon, 01 Dec 2008) Log Message: ----------- xorg-___proto: not universal, and don't depend on xorg-util-macros Modified Paths: -------------- trunk/dports/x11/printproto/Portfile trunk/dports/x11/xorg-applewmproto/Portfile trunk/dports/x11/xorg-bigreqsproto/Portfile trunk/dports/x11/xorg-compositeproto/Portfile trunk/dports/x11/xorg-damageproto/Portfile trunk/dports/x11/xorg-evieproto/Portfile trunk/dports/x11/xorg-fixesproto/Portfile trunk/dports/x11/xorg-fontcacheproto/Portfile trunk/dports/x11/xorg-fontsproto/Portfile trunk/dports/x11/xorg-inputproto/Portfile trunk/dports/x11/xorg-kbproto/Portfile trunk/dports/x11/xorg-proto/Portfile trunk/dports/x11/xorg-randrproto/Portfile trunk/dports/x11/xorg-recordproto/Portfile trunk/dports/x11/xorg-resourceproto/Portfile trunk/dports/x11/xorg-scrnsaverproto/Portfile trunk/dports/x11/xorg-trapproto/Portfile trunk/dports/x11/xorg-videoproto/Portfile trunk/dports/x11/xorg-xcb-proto/Portfile trunk/dports/x11/xorg-xcmiscproto/Portfile trunk/dports/x11/xorg-xextproto/Portfile trunk/dports/x11/xorg-xf86bigfontproto/Portfile trunk/dports/x11/xorg-xf86dgaproto/Portfile trunk/dports/x11/xorg-xf86miscproto/Portfile trunk/dports/x11/xorg-xf86vidmodeproto/Portfile trunk/dports/x11/xorg-xineramaproto/Portfile Modified: trunk/dports/x11/printproto/Portfile =================================================================== --- trunk/dports/x11/printproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/printproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -18,3 +18,4 @@ checksums md5 0f4e7982c6d4ec3b2cf38502dd1293a3 \ sha1 c9b62c20ed50ce44c4835d5fd2d1bb52af66f75f \ rmd160 af2312cd43efc2d2d26dd161a4ef667f2a928155 +universal_variant no Modified: trunk/dports/x11/xorg-applewmproto/Portfile =================================================================== --- trunk/dports/x11/xorg-applewmproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-applewmproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-applewmproto version 1.1.1 categories x11 devel -maintainers jeremyhu at macports.org +maintainers jeremyhu description X.org applewmproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname applewmproto-${version} checksums sha1 c2fd52bf9f2ad05141cc37da56e8b46113e73172 use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-bigreqsproto/Portfile =================================================================== --- trunk/dports/x11/xorg-bigreqsproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-bigreqsproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-bigreqsproto version 1.0.2 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org bigreqsproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname bigreqsproto-${version} checksums sha1 8f6c112f607a137dce5d8958753c770ac3f06c14 use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-compositeproto/Portfile =================================================================== --- trunk/dports/x11/xorg-compositeproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-compositeproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -5,7 +5,7 @@ name xorg-compositeproto version 0.4 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org compositeproto homepage http://www.x.org platforms darwin @@ -15,4 +15,4 @@ distname compositeproto-${version} checksums sha1 e555ee26cffb30d57fe60006b8f12c3807e399f5 use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-damageproto/Portfile =================================================================== --- trunk/dports/x11/xorg-damageproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-damageproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-damageproto version 1.1.0 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org damageproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname damageproto-${version} checksums sha1 5c8b96af09ff053912650343bf150989ec6747e8 use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-evieproto/Portfile =================================================================== --- trunk/dports/x11/xorg-evieproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-evieproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-evieproto version 1.0.2 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org evieproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname evieext-${version} checksums sha1 1ab4048ffbfb6b69e88d2f0f2cab7ca60e50cc99 use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-fixesproto/Portfile =================================================================== --- trunk/dports/x11/xorg-fixesproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-fixesproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-fixesproto version 4.0 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org fixesproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname fixesproto-${version} checksums sha1 de9139e4836f1ab234583406ea2ee6446ad7965f use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-fontcacheproto/Portfile =================================================================== --- trunk/dports/x11/xorg-fontcacheproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-fontcacheproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-fontcacheproto version 0.1.2 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org fontcacheproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname fontcacheproto-${version} checksums sha1 6a531ef505ba2f7c1aa884bb4efdac3e32dfd99b use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-fontsproto/Portfile =================================================================== --- trunk/dports/x11/xorg-fontsproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-fontsproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-fontsproto version 2.0.2 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org fontsproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname fontsproto-${version} checksums sha1 1244f63bd90668c7ddc88febbf4a220fd83ea492 use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-inputproto/Portfile =================================================================== --- trunk/dports/x11/xorg-inputproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-inputproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -16,3 +16,4 @@ sha1 c6514843f35e2591fadc13f3fc87bf3752b7197c \ rmd160 5d04e4c85241e262f26b0827340da7ca92080630 use_bzip2 yes +universal_variant no Modified: trunk/dports/x11/xorg-kbproto/Portfile =================================================================== --- trunk/dports/x11/xorg-kbproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-kbproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-kbproto version 1.0.3 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org kbproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname kbproto-${version} checksums sha1 57d0987ce2cb81a9491b1bbf433142730de89181 use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-proto/Portfile =================================================================== --- trunk/dports/x11/xorg-proto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-proto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -45,3 +45,5 @@ destroot { } archive { } activate { } + +universal_variant no Modified: trunk/dports/x11/xorg-randrproto/Portfile =================================================================== --- trunk/dports/x11/xorg-randrproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-randrproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-randrproto version 1.2.1 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org randrproto homepage http://www.x.org platforms darwin @@ -16,4 +16,4 @@ distname randrproto-${version} checksums sha1 f8698f76f23d856e1821339814a986b9d876d87d use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-recordproto/Portfile =================================================================== --- trunk/dports/x11/xorg-recordproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-recordproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-recordproto version 1.13.2 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org recordproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname recordproto-${version} checksums sha1 833ef2bc4b084281f85eeba5d4ba03441bd3a534 use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-resourceproto/Portfile =================================================================== --- trunk/dports/x11/xorg-resourceproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-resourceproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-resourceproto version 1.0.2 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org resourceproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname resourceproto-${version} checksums sha1 ac22c2e439067185ea169d20677f74321da7b34b use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-scrnsaverproto/Portfile =================================================================== --- trunk/dports/x11/xorg-scrnsaverproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-scrnsaverproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-scrnsaverproto version 1.1.0 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org scrnsaverproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname scrnsaverproto-${version} checksums sha1 4c5859948034f2e5f625d930c73e4b96a6a0c29c use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-trapproto/Portfile =================================================================== --- trunk/dports/x11/xorg-trapproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-trapproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-trapproto version 3.4.3 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org trapproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname trapproto-${version} checksums sha1 b108aa39a7bfde530d5cd347fda7c58770d5b8da use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-videoproto/Portfile =================================================================== --- trunk/dports/x11/xorg-videoproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-videoproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-videoproto version 2.2.2 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org videoproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname videoproto-${version} checksums sha1 904eb59ae2451dea52370d927bf490b696f9033c use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-xcb-proto/Portfile =================================================================== --- trunk/dports/x11/xorg-xcb-proto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-xcb-proto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -5,7 +5,7 @@ name xorg-xcb-proto version 1.0 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org xcb-proto homepage http://xcb.freedesktop.org platforms darwin macosx @@ -16,4 +16,4 @@ checksums sha1 c7252cc74f75c997227b4dcdba2cb654d89cecda use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-xcmiscproto/Portfile =================================================================== --- trunk/dports/x11/xorg-xcmiscproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-xcmiscproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-xcmiscproto version 1.1.2 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org xcmiscproto homepage http://www.x.org platforms darwin @@ -15,4 +15,4 @@ checksums sha1 825ec15986cd1ab008b11f6379eb4c7f3c78bd76 use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-xextproto/Portfile =================================================================== --- trunk/dports/x11/xorg-xextproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-xextproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-xextproto version 7.0.2 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org xextproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname xextproto-${version} checksums sha1 724c82cb9f393ae3cf71a178c328608b17ccccac use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-xf86bigfontproto/Portfile =================================================================== --- trunk/dports/x11/xorg-xf86bigfontproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-xf86bigfontproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -18,4 +18,4 @@ use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-xf86dgaproto/Portfile =================================================================== --- trunk/dports/x11/xorg-xf86dgaproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-xf86dgaproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-xf86dgaproto version 2.0.2 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org xf86dgaproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname xf86dgaproto-${version} checksums sha1 ccd67b20d8c27552d39b1a711ba0b289e2810757 use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-xf86miscproto/Portfile =================================================================== --- trunk/dports/x11/xorg-xf86miscproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-xf86miscproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-xf86miscproto version 0.9.2 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org xf86miscproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname xf86miscproto-${version} checksums sha1 bfaf893bb97085c79ef84e9911c97d11b2a4fdbe use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-xf86vidmodeproto/Portfile =================================================================== --- trunk/dports/x11/xorg-xf86vidmodeproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-xf86vidmodeproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-xf86vidmodeproto version 2.2.2 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org xf86vidmodeproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname xf86vidmodeproto-${version} checksums sha1 4a228958879eb06206d13f4f09ec902f837fb8dd use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no Modified: trunk/dports/x11/xorg-xineramaproto/Portfile =================================================================== --- trunk/dports/x11/xorg-xineramaproto/Portfile 2008-12-02 03:00:14 UTC (rev 42888) +++ trunk/dports/x11/xorg-xineramaproto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) @@ -4,7 +4,7 @@ name xorg-xineramaproto version 1.1.2 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org xineramaproto homepage http://www.x.org platforms darwin @@ -14,4 +14,4 @@ distname xineramaproto-${version} checksums sha1 d09ef306ffc0d058120051d88dd64776fd0de0d5 use_bzip2 yes -depends_lib port:xorg-util-macros +universal_variant no -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Mon Dec 1 19:06:27 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Mon, 1 Dec 2008 19:06:27 -0800 (PST) Subject: [42890] trunk/dports/x11/xorg-proto/Portfile Message-ID: <20081202030628.169807DD8A0@beta.macosforge.org> Revision: 42890 http://trac.macports.org/changeset/42890 Author: jeremyhu at macports.org Date: 2008-12-01 19:06:27 -0800 (Mon, 01 Dec 2008) Log Message: ----------- xorg-proto: Make lint happy with use_configure and master_sites Modified Paths: -------------- trunk/dports/x11/xorg-proto/Portfile Modified: trunk/dports/x11/xorg-proto/Portfile =================================================================== --- trunk/dports/x11/xorg-proto/Portfile 2008-12-02 03:01:16 UTC (rev 42889) +++ trunk/dports/x11/xorg-proto/Portfile 2008-12-02 03:06:27 UTC (rev 42890) @@ -5,9 +5,10 @@ name xorg-proto version 20070907 categories x11 devel -maintainers bbyer +maintainers jeremyhu description X.org proto meta-package homepage http://www.x.org +master_sites ${homepage} platforms darwin macosx long_description This package builds all of the x.org proto packages. @@ -40,10 +41,10 @@ fetch { } checksum { } -configure { } build { } destroot { } archive { } activate { } +use_configure no universal_variant no -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Dec 1 19:31:50 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 1 Dec 2008 19:31:50 -0800 (PST) Subject: [42891] trunk/dports/devel/glib2-devel Message-ID: <20081202033151.319117DDD32@beta.macosforge.org> Revision: 42891 http://trac.macports.org/changeset/42891 Author: ryandesign at macports.org Date: 2008-12-01 19:31:49 -0800 (Mon, 01 Dec 2008) Log Message: ----------- glib2-devel: update to 2.19.2 and include changes from glib2 revisions r42728, r42796, r42805 Modified Paths: -------------- trunk/dports/devel/glib2-devel/Portfile trunk/dports/devel/glib2-devel/files/patch-configure.diff Added Paths: ----------- trunk/dports/devel/glib2-devel/files/patch-child-test.c.diff trunk/dports/devel/glib2-devel/files/patch-which.diff Modified: trunk/dports/devel/glib2-devel/Portfile =================================================================== --- trunk/dports/devel/glib2-devel/Portfile 2008-12-02 03:06:27 UTC (rev 42890) +++ trunk/dports/devel/glib2-devel/Portfile 2008-12-02 03:31:49 UTC (rev 42891) @@ -4,7 +4,7 @@ name glib2-devel set my_name glib -version 2.19.0 +version 2.19.2 set branch [join [lrange [split ${version} .] 0 1] .] categories devel maintainers ryandesign @@ -28,14 +28,15 @@ # ftp://ftp.gtk.org/pub/${my_name}/${branch}/ checksums \ - md5 0ff01feebce78b61ce37877e20d71eba \ - sha1 057a093c0fc18f9e5648e0df3f0c61fa0a5c5912 \ - rmd160 6aa268ad627acde137308ea70df43ac981051096 + md5 9999ed8a3dea6e33fae39cf7ffe056cf \ + sha1 a39a4b15aac2c904c0f362ce0a517ec9335dfe59 \ + rmd160 c0004ec597b35b940c17f25998bf39bdce52aa3f patchfiles \ patch-glib-2.0.pc.in.diff \ patch-gutils.c.diff \ - patch-gi18n.h.diff + patch-gi18n.h.diff \ + patch-which.diff depends_build \ port:pkgconfig @@ -65,7 +66,9 @@ } platform darwin { - patchfiles-append patch-configure.diff + patchfiles-append \ + patch-child-test.c.diff \ + patch-configure.diff } platform powerpc { @@ -91,6 +94,21 @@ } } +# MACOSX_DEPLOYMENT_TARGET bits can be removed when MacPorts 1.7.0 is released +platform darwin 7 { + configure.env-append \ + MACOSX_DEPLOYMENT_TARGET=10.3 + build.env-append \ + MACOSX_DEPLOYMENT_TARGET=10.3 +} + +platform darwin 8 { + configure.env-append \ + MACOSX_DEPLOYMENT_TARGET=10.4 + build.env-append \ + MACOSX_DEPLOYMENT_TARGET=10.4 +} + platform darwin 9 { patchfiles-append patch-glib_gutils.h.diff } Copied: trunk/dports/devel/glib2-devel/files/patch-child-test.c.diff (from rev 42884, trunk/dports/devel/glib2/files/patch-child-test.c.diff) =================================================================== --- trunk/dports/devel/glib2-devel/files/patch-child-test.c.diff (rev 0) +++ trunk/dports/devel/glib2-devel/files/patch-child-test.c.diff 2008-12-02 03:31:49 UTC (rev 42891) @@ -0,0 +1,11 @@ +--- tests/child-test.c 2008-11-23 23:45:21.000000000 -0600 ++++ tests/child-test.c 2008-11-28 16:30:29.000000000 -0600 +@@ -175,7 +175,7 @@ + #ifdef G_OS_WIN32 + system ("ipconfig /all"); + #else +- system ("/bin/true"); ++ system ("/usr/bin/true"); + #endif + + alive = 2; Property changes on: trunk/dports/devel/glib2-devel/files/patch-child-test.c.diff ___________________________________________________________________ Added: svn:mergeinfo + Modified: trunk/dports/devel/glib2-devel/files/patch-configure.diff =================================================================== --- trunk/dports/devel/glib2-devel/files/patch-configure.diff 2008-12-02 03:06:27 UTC (rev 42890) +++ trunk/dports/devel/glib2-devel/files/patch-configure.diff 2008-12-02 03:31:49 UTC (rev 42891) @@ -1,6 +1,6 @@ ---- configure 2008-10-16 17:24:49.000000000 -0500 -+++ configure 2008-11-04 13:30:29.000000000 -0600 -@@ -31493,28 +31493,11 @@ +--- configure.orig 2008-12-01 13:10:35.000000000 -0600 ++++ configure 2008-12-01 20:20:27.000000000 -0600 +@@ -28551,28 +28551,11 @@ fi { $as_echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5 $as_echo "$ac_cv_c_bigendian" >&6; } @@ -31,7 +31,7 @@ if test x$ac_cv_c_bigendian = xuniversal ; then cat >conftest.$ac_ext <<_ACEOF -@@ -42614,7 +42597,11 @@ +@@ -39672,7 +39655,11 @@ $as_echo "$glib_cv_byte_contents_gmutex" >&6; } cat >>confdefs.h <<_ACEOF @@ -44,7 +44,7 @@ _ACEOF -@@ -48191,10 +48178,13 @@ +@@ -46419,10 +46406,13 @@ _______EOF fi @@ -62,7 +62,7 @@ echo >>$outfile -@@ -48243,7 +48233,12 @@ +@@ -46471,7 +46461,12 @@ long dummy_long; } static_mutex; }; @@ -76,7 +76,7 @@ #define g_static_mutex_get_mutex(mutex) \\ (g_thread_use_default_impl ? ((GMutex*)(gpointer) ((mutex)->static_mutex.pad)) : \\ g_static_mutex_get_mutex_impl_shortcut (&((mutex)->runtime_mutex))) -@@ -48272,24 +48267,39 @@ +@@ -46500,24 +46495,39 @@ void *dummy_pointer; long dummy_long; }; @@ -132,7 +132,7 @@ #define GLONG_TO_LE(val) ((glong) GINT${glongbits}_TO_LE (val)) #define GULONG_TO_LE(val) ((gulong) GUINT${glongbits}_TO_LE (val)) #define GLONG_TO_BE(val) ((glong) GINT${glongbits}_TO_BE (val)) -@@ -48298,7 +48308,11 @@ +@@ -46526,7 +46536,11 @@ #define GUINT_TO_LE(val) ((guint) GUINT${gintbits}_TO_LE (val)) #define GINT_TO_BE(val) ((gint) GINT${gintbits}_TO_BE (val)) #define GUINT_TO_BE(val) ((guint) GUINT${gintbits}_TO_BE (val)) Copied: trunk/dports/devel/glib2-devel/files/patch-which.diff (from rev 42884, trunk/dports/devel/glib2/files/patch-which.diff) =================================================================== --- trunk/dports/devel/glib2-devel/files/patch-which.diff (rev 0) +++ trunk/dports/devel/glib2-devel/files/patch-which.diff 2008-12-02 03:31:49 UTC (rev 42891) @@ -0,0 +1,114 @@ +Use "which" in a way that works on Mac OS X. See #17418. +--- docs/reference/gio/Makefile.in 2008-12-01 13:10:28.000000000 -0600 ++++ docs/reference/gio/Makefile.in 2008-12-01 20:44:55.000000000 -0600 +@@ -740,7 +740,7 @@ + mv -f $${installdir}/$(DOC_MODULE).devhelp \ + $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \ + fi; \ +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ ! test -x "`which gtkdoc-rebase`" || \ + gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ + fi + +@@ -770,7 +770,7 @@ + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ ! test -x "`which gtkdoc-rebase`" || \ + gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs +--- docs/reference/glib/Makefile.in 2008-12-01 13:10:28.000000000 -0600 ++++ docs/reference/glib/Makefile.in 2008-12-01 20:44:55.000000000 -0600 +@@ -772,7 +772,7 @@ + mv -f $${installdir}/$(DOC_MODULE).devhelp \ + $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \ + fi; \ +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ ! test -x "`which gtkdoc-rebase`" || \ + gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ + fi + +@@ -802,7 +802,7 @@ + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ ! test -x "`which gtkdoc-rebase`" || \ + gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs +--- docs/reference/gobject/Makefile.in 2008-12-01 13:10:28.000000000 -0600 ++++ docs/reference/gobject/Makefile.in 2008-12-01 20:44:55.000000000 -0600 +@@ -755,7 +755,7 @@ + mv -f $${installdir}/$(DOC_MODULE).devhelp \ + $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \ + fi; \ +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ ! test -x "`which gtkdoc-rebase`" || \ + gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ + fi + +@@ -785,7 +785,7 @@ + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ ! test -x "`which gtkdoc-rebase`" || \ + gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs +--- gio/pltcheck.sh 2008-12-01 13:09:05.000000000 -0600 ++++ gio/pltcheck.sh 2008-12-01 20:44:55.000000000 -0600 +@@ -4,7 +4,7 @@ + + status=0 + +-if ! which readelf 2>/dev/null >/dev/null; then ++if ! test -x "`which readelf`"; then + echo "'readelf' not found; skipping test" + exit 0 + fi +--- glib/pltcheck.sh 2008-12-01 13:09:06.000000000 -0600 ++++ glib/pltcheck.sh 2008-12-01 20:44:55.000000000 -0600 +@@ -4,7 +4,7 @@ + + status=0 + +-if ! which readelf 2>/dev/null >/dev/null; then ++if ! test -x "`which readelf`"; then + echo "'readelf' not found; skipping test" + exit 0 + fi +--- gobject/pltcheck.sh 2008-12-01 13:09:07.000000000 -0600 ++++ gobject/pltcheck.sh 2008-12-01 20:44:55.000000000 -0600 +@@ -4,7 +4,7 @@ + + status=0 + +-if ! which readelf 2>/dev/null >/dev/null; then ++if ! test -x "`which readelf`"; then + echo "'readelf' not found; skipping test" + exit 0 + fi +--- gtk-doc.make 2008-12-01 13:35:57.000000000 -0600 ++++ gtk-doc.make 2008-12-01 20:44:55.000000000 -0600 +@@ -157,7 +157,7 @@ + mv -f $${installdir}/$(DOC_MODULE).devhelp \ + $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \ + fi; \ +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ ! test -x "`which gtkdoc-rebase`" || \ + gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ + fi + +@@ -190,7 +190,7 @@ + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ ! test -x "`which gtkdoc-rebase`" || \ + gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs Property changes on: trunk/dports/devel/glib2-devel/files/patch-which.diff ___________________________________________________________________ Added: svn:mergeinfo + -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Dec 1 19:51:51 2008 From: portindex at macports.org (portindex at macports.org) Date: Mon, 1 Dec 2008 19:51:51 -0800 (PST) Subject: [42892] trunk/dports/PortIndex Message-ID: <20081202035153.300737DE4CC@beta.macosforge.org> Revision: 42892 http://trac.macports.org/changeset/42892 Author: portindex at macports.org Date: 2008-12-01 19:51:51 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Total number of ports parsed: 5167 Ports successfully parsed: 5167 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 03:31:49 UTC (rev 42891) +++ trunk/dports/PortIndex 2008-12-02 03:51:51 UTC (rev 42892) @@ -1114,8 +1114,8 @@ variants darwin_6 depends_build port:pkgconfig portdir devel/glib1 description {Library with data structure functions and other constructs} homepage http://www.gtk.org/ epoch 0 platforms {darwin freebsd} name glib1 depends_lib port:gettext maintainers nomaintainer long_description {General-purpose library from the GTK+ team, includes support routines for C such as lists, trees, hashes, memory allocation, and many other things.} version 1.2.10 categories devel revision 5 glib2 525 variants {universal puredarwin darwin powerpc darwin_6 darwin_7 darwin_8 darwin_9} depends_build port:pkgconfig portdir devel/glib2 description {Library with data structure functions and other constructs} homepage http://www.gtk.org/ epoch 0 platforms darwin depends_lib {port:gettext port:libiconv} name glib2 maintainers ryandesign long_description {Glib is a library which includes support routines for C, such as lists, trees, hashes, memory allocation, and many other things.} version 2.18.3 categories devel revision 0 -glib2-devel 519 -variants {universal puredarwin darwin powerpc darwin_6 darwin_9} depends_build port:pkgconfig portdir devel/glib2-devel description {Library with data structure functions and other constructs} homepage http://www.gtk.org/ epoch 0 platforms darwin depends_lib {port:gettext port:libiconv} name glib2-devel maintainers ryandesign long_description {Glib is a library which includes support routines for C, such as lists, trees, hashes, memory allocation, and many other things.} version 2.19.0 categories devel revision 0 +glib2-devel 537 +variants {universal puredarwin darwin powerpc darwin_6 darwin_7 darwin_8 darwin_9} depends_build port:pkgconfig portdir devel/glib2-devel description {Library with data structure functions and other constructs} homepage http://www.gtk.org/ epoch 0 platforms darwin depends_lib {port:gettext port:libiconv} name glib2-devel maintainers ryandesign long_description {Glib is a library which includes support routines for C, such as lists, trees, hashes, memory allocation, and many other things.} version 2.19.2 categories devel revision 0 glibmm 328 variants universal portdir devel/glibmm description {C++ interface to glib} homepage http://www.gtkmm.org/ epoch 0 platforms darwin name glibmm depends_lib {path:lib/pkgconfig/glib-2.0.pc:glib2 port:libsigcxx2} long_description {{C++ interface to glib}} maintainers nomaintainer version 2.18.1 categories {devel x11} revision 0 global 629 @@ -9823,7 +9823,7 @@ fsv 415 portdir x11/fsv variants universal description {A clone of the SGI filesystem visualizer from Jurassic Park.} name fsv depends_lib {lib:gtk1:gtk1 lib:gtkglarea:gtkglarea} version 0.9 categories {x11 amusements} revision 0 epoch 0 maintainers edmundrhudy at mac.com long_description {fsv is an OpenGL filesystem visualizer inspired by the SGI 3D File System Navigator seen in Jurassic Park. homepage http://fsv.sf.net} fvwm 508 -variants universal depends_build bin:xmkmf:imake portdir x11/fvwm description {A very simple window manager supporting a pager} homepage http://www.fvwm.org/ epoch 0 platforms darwin depends_lib {lib:libX11.6:XFree86 lib:libXpm.4:xpm} name fvwm long_description {One of the earlier paging window managers with what is still considered to be a very elegant and minimal feature set yet highly configurable and expandable via plug-ins.} maintainers nomaintainer version 1.24r categories {x11-wm x11} revision 0 +variants universal depends_build bin:xmkmf:imake portdir x11/fvwm description {A very simple window manager supporting a pager} homepage http://www.fvwm.org/ epoch 0 platforms darwin depends_lib {lib:libX11.6:XFree86 lib:libXpm.4:xpm} name fvwm long_description {One of the earlier paging window managers with what is still considered to be a very elegant and minimal feature set yet highly configurable and expandable via plug-ins.} maintainers nomaintainer version 1.24r categories {x11 x11-wm} revision 0 fvwm2 500 variants universal portdir x11/fvwm2 description {Version 2.x of FVWM, an X11 window manager.} homepage http://www.fvwm.org/ epoch 0 platforms darwin name fvwm2 depends_lib {lib:libX11.6:XFree86 lib:libXpm.4:xpm lib:libgtk.1:gtk1 lib:libreadline:readline bin:gnome-config:gnome-libs} long_description {FVWM 2.x is an extremely powerful ICCCM-compliant multiple virtual desktop window manager for the X Window system.} maintainers pguyot at kallisys.net version 2.5.21 categories {x11-wm x11} revision 0 fxscintilla 380 @@ -9970,8 +9970,8 @@ variants universal portdir x11/pcb description {Printed Circuit Board Layout Tool} homepage http://pcb.sourceforge.net epoch 0 platforms darwin name pcb depends_lib {lib:libX11.6:XFree86 bin:wish:tk} maintainers adam at megacz.com long_description {PCB is an interactive printed circuit board editor for the X11 window system. PCB includes a rats nest feature, design rule checking, and can provide industry standard RS-274-X (Gerber), NC drill, and centroid data (X-Y data) output for use in the board fabrication and assembly process. PCB offers high end features such as an autorouter and trace optimizer which can tremendously reduce layout time.} version 20060321 categories {x11 graphics} revision 0 php5-gtk 499 variants {universal extra html libsexy sourceview spell} portdir x11/php5-gtk description {PHP-GTK: Gtk+ bindings for PHP 5.} homepage http://gtk.php.net/ epoch 0 platforms {darwin freebsd} name php5-gtk depends_lib {port:glib2 port:gtk2 port:php5 port:libglade2} maintainers anant at kix.in long_description {PHP-GTK is a Gtk+ bindings for the PHP 5 scripting language, allowing you to build rich, cross-platform desktop applications using PHP.} version 2.0.1 categories {x11 lang php www} revision 0 -printproto 303 -variants universal description {X.Org Print extension headers} portdir x11/printproto homepage http://xorg.freedesktop.org/ epoch 0 platforms {darwin macosx} name printproto long_description {{X.Org Print extension headers}} maintainers gmail.com:mvfranz categories {x11 devel} version 1.0.3 revision 0 +printproto 284 +portdir x11/printproto platforms {darwin macosx} description {X.Org Print extension headers} name printproto version 1.0.3 categories {x11 devel} homepage http://xorg.freedesktop.org/ revision 0 epoch 0 maintainers gmail.com:mvfranz long_description {{X.Org Print extension headers}} qt3 469 variants {universal darwin_9 darwin_8 darwin_7 darwin_6 mysql odbc psql} portdir x11/qt3 description {Qt Tool Kit} homepage http://www.trolltech.com/products/qt/index.html epoch 0 platforms darwin name qt3 depends_lib {lib:libGL.1:XFree86 port:freetype port:jpeg port:libpng port:perl5.8 port:Xft2 port:xrender port:zlib} maintainers nomaintainer long_description {Qt 3 is a multiplatform C++ application development framework.} version 3.3.8 categories x11 revision 3 qt4-x11 599 @@ -10028,8 +10028,8 @@ variants {universal no_server beta} portdir x11/vnc description {Remote display system for X11 applications} homepage http://www.realvnc.com/ depends_run bin:perl:perl5.8 epoch 0 platforms darwin name vnc depends_lib {lib:libX11.6:XFree86 lib:libz.1:zlib} maintainers nomaintainer long_description {Creates a virtual X11 windowing environment that can be viewed not only on the machine where it is running, but from anywhere on the Internet and from a wide variety of machine architectures.} version 3.3.7 categories {x11 vnc} revision 2 vtwm 213 portdir x11/vtwm variants universal description {Twm with a virtual desktop and optional Motif-like features} platforms darwin name vtwm version 5.4.6a categories x11 revision 0 epoch 0 maintainers mdales at mac.com -windowmaker 794 -variants {universal candy darwin_i386} portdir x11/windowmaker description {Window Maker is a X11 window manager supporting GNUstep} homepage http://www.windowmaker.info/ epoch 0 platforms {darwin freebsd} name windowmaker depends_lib {lib:libX11.6:XFree86 port:Xft2 port:gettext port:libpng port:libungif port:tiff} maintainers nomaintainer long_description {Window Maker is an X11 window manager originally designed to provide integration support for the GNUstep Desktop Environment. In every way possible, it reproduces the elegant look and feel of the {NEXTSTEP[tm]} user interface. It is fast, feature rich, easy to configure, and easy to use. It is also free software, with contributions being made by programmers from around the world.} version 0.92.0 categories {x11-wm x11} revision 2 +windowmaker 810 +variants {universal candy darwin_i386} portdir x11/windowmaker description {Window Maker is a X11 window manager supporting GNUstep} homepage http://www.windowmaker.info/ epoch 0 platforms {darwin freebsd} name windowmaker depends_lib {lib:libX11.6:XFree86 port:Xft2 port:gettext port:libpng path:include/gif_lib.h:giflib port:tiff} maintainers nomaintainer long_description {Window Maker is an X11 window manager originally designed to provide integration support for the GNUstep Desktop Environment. In every way possible, it reproduces the elegant look and feel of the {NEXTSTEP[tm]} user interface. It is fast, feature rich, easy to configure, and easy to use. It is also free software, with contributions being made by programmers from around the world.} version 0.92.0 categories {x11-wm x11} revision 2 wine 524 variants universal depends_build port:pkgconfig portdir x11/wine description {Wine Is Not an Emulator} homepage http://www.winehq.com/ epoch 0 platforms darwin name wine depends_lib {lib:libX11.6:XFree86 port:expat port:fontconfig port:fontforge port:freetype port:jpeg port:libiconv port:libxml2 port:libxslt port:ncurses port:openssl port:xrender port:zlib} maintainers {ryandesign jwa openmaintainer} long_description {Wine is an implementation of the Windows APIs on top of X11.} version 1.0.1 categories x11 revision 1 wine-devel 536 @@ -10086,28 +10086,28 @@ variants universal description {X on-screen analog clock displayer with assignable skins} portdir x11/xonclock homepage http://xonclock.sourceforge.net/ epoch 0 platforms darwin name xonclock long_description {{X on-screen analog clock displayer with assignable skins}} maintainers nomaintainer categories x11 version 0.0.7.5 revision 0 xorg 573 variants {universal darwin puredarwin} description {The X Window System} portdir x11/xorg homepage http://www.x.org epoch 0 platforms darwin name xorg long_description {X11, or X, is a vendor-neutral, system-architecture neutral network-transparent window system and user interface standard. In other words, it's a GUI for UNIX. X can use your network -- you may run CPU-intensive programs on high powered workstations and display the user interface (the windows) on inexpensive desktop machines.} maintainers waqar at macports.org categories x11 version X11R6.8.2 revision 0 -xorg-applewmproto 342 -variants universal portdir x11/xorg-applewmproto description {X.org applewmproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-applewmproto depends_lib port:xorg-util-macros maintainers jeremyhu at macports.org long_description {Prototype headers for the AppleWM extension to X11} version 1.1.1 categories {x11 devel} revision 0 -xorg-bigreqsproto 335 -variants universal portdir x11/xorg-bigreqsproto description {X.org bigreqsproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-bigreqsproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for BigReqs extension to X11} version 1.0.2 categories {x11 devel} revision 0 +xorg-applewmproto 276 +portdir x11/xorg-applewmproto description {X.org applewmproto} platforms darwin name xorg-applewmproto version 1.1.1 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the AppleWM extension to X11} +xorg-bigreqsproto 272 +portdir x11/xorg-bigreqsproto description {X.org bigreqsproto} platforms darwin name xorg-bigreqsproto version 1.0.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for BigReqs extension to X11} xorg-cf-files 332 variants universal description {{Build files for discontinued imake build system.}} portdir x11/xorg-cf-files homepage http://xorg.freedesktop.org epoch 0 platforms darwin name xorg-cf-files long_description {{{Build files for discontinued imake build system.}}} maintainers mcalhoun categories {x11 devel} version 1.0.2 revision 0 -xorg-compositeproto 341 -variants universal portdir x11/xorg-compositeproto description {X.org compositeproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-compositeproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for Composite extension to X11} version 0.4 categories {x11 devel} revision 0 -xorg-damageproto 335 -variants universal portdir x11/xorg-damageproto description {X.org damageproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-damageproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for the Damage extension to X11} version 1.1.0 categories {x11 devel} revision 0 -xorg-evieproto 327 -variants universal portdir x11/xorg-evieproto description {X.org evieproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-evieproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for the evie extension to X11} version 1.0.2 categories {x11 devel} revision 0 -xorg-fixesproto 331 -variants universal portdir x11/xorg-fixesproto description {X.org fixesproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-fixesproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for the XFixes extension to X11.} version 4.0 categories {x11 devel} revision 0 -xorg-fontcacheproto 338 -variants universal portdir x11/xorg-fontcacheproto description {X.org fontcacheproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-fontcacheproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for the Fontcache library} version 0.1.2 categories {x11 devel} revision 0 -xorg-fontsproto 326 -variants universal portdir x11/xorg-fontsproto description {X.org fontsproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-fontsproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Font-related prototype header files for X11} version 2.0.2 categories {x11 devel} revision 0 -xorg-inputproto 288 -variants universal description {X.org inputproto} portdir x11/xorg-inputproto homepage http://www.x.org epoch 0 platforms darwin name xorg-inputproto long_description {Prototype headers for the XInput extension to X11} maintainers jeremyhu categories {x11 devel} version 1.5.0 revision 0 -xorg-kbproto 316 -variants universal portdir x11/xorg-kbproto description {X.org kbproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-kbproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for Xkb extension to X11} version 1.0.3 categories {x11 devel} revision 0 +xorg-compositeproto 278 +portdir x11/xorg-compositeproto description {X.org compositeproto} platforms darwin name xorg-compositeproto version 0.4 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for Composite extension to X11} +xorg-damageproto 272 +portdir x11/xorg-damageproto description {X.org damageproto} platforms darwin name xorg-damageproto version 1.1.0 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the Damage extension to X11} +xorg-evieproto 264 +portdir x11/xorg-evieproto description {X.org evieproto} platforms darwin name xorg-evieproto version 1.0.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the evie extension to X11} +xorg-fixesproto 268 +portdir x11/xorg-fixesproto description {X.org fixesproto} platforms darwin name xorg-fixesproto version 4.0 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XFixes extension to X11.} +xorg-fontcacheproto 275 +portdir x11/xorg-fontcacheproto description {X.org fontcacheproto} platforms darwin name xorg-fontcacheproto version 0.1.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the Fontcache library} +xorg-fontsproto 263 +portdir x11/xorg-fontsproto description {X.org fontsproto} platforms darwin name xorg-fontsproto version 2.0.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Font-related prototype header files for X11} +xorg-inputproto 269 +portdir x11/xorg-inputproto description {X.org inputproto} platforms darwin name xorg-inputproto version 1.5.0 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XInput extension to X11} +xorg-kbproto 253 +portdir x11/xorg-kbproto description {X.org kbproto} platforms darwin name xorg-kbproto version 1.0.3 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for Xkb extension to X11} xorg-libX11 571 variants universal portdir x11/xorg-libX11 description {X.org libX11} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libX11 depends_lib {port:pkgconfig port:xorg-xproto port:xorg-xextproto port:xorg-xtrans port:xorg-libpthread-stubs port:xorg-libXau port:xorg-xcb-proto port:xorg-libxcb port:xorg-xcmiscproto port:xorg-inputproto port:xorg-kbproto} maintainers jeremyhu at macports.org long_description {libX11 is the main library used by X Window System applications to communicate with the X server.} version 1.1.5 categories {x11 devel} revision 0 xorg-libXau 352 @@ -10130,42 +10130,42 @@ variants universal portdir x11/xorg-libxcb description {X.org libxcb} homepage http://xcb.freedesktop.org/ epoch 0 platforms {darwin macosx} name xorg-libxcb depends_lib {port:xorg-util-macros port:xorg-xcb-proto port:xorg-libpthread-stubs port:xorg-libXau} maintainers bbyer at macports.org long_description {The X C Binding (XCB) library} version 1.0 categories {devel x11} revision 0 xorg-libxkbfile 338 variants universal portdir x11/xorg-libxkbfile description {X.org libxbfile} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libxkbfile depends_lib {port:xorg-util-macros port:xorg-libXdmcp} maintainers bbyer at macports.org long_description {XKB file handling routines} version 1.0.4 categories {x11 devel} revision 0 -xorg-proto 890 -variants universal portdir x11/xorg-proto description {X.org proto meta-package} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-proto depends_lib {port:xorg-applewmproto port:xorg-bigreqsproto port:xorg-compositeproto port:xorg-damageproto port:xorg-evieproto port:xorg-fixesproto port:xorg-fontcacheproto port:xorg-fontsproto port:xorg-inputproto port:xorg-kbproto port:xorg-randrproto port:xorg-recordproto port:xorg-renderproto port:xorg-resourceproto port:xorg-scrnsaverproto port:xorg-trapproto port:xorg-videoproto port:xorg-xcb-proto port:xorg-xcmiscproto port:xorg-xextproto port:xorg-xf86bigfontproto port:xorg-xf86dgaproto port:xorg-xf86miscproto port:xorg-xf86vidmodeproto port:xorg-xineramaproto port:xorg-xproto} maintainers bbyer long_description {This package builds all of the x.org proto packages.} version 20070907 categories {x11 devel} revision 0 -xorg-randrproto 450 -variants universal portdir x11/xorg-randrproto description {X.org randrproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-randrproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {The pkg-config program is used to retrieve information about installed libraries in the system. It is typically used to compile and link against one or more libraries.} version 1.2.1 categories {x11 devel} revision 0 -xorg-recordproto 336 -variants universal portdir x11/xorg-recordproto description {X.org recordproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-recordproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for the Record extension to X11} version 1.13.2 categories {x11 devel} revision 0 +xorg-proto 874 +description {X.org proto meta-package} portdir x11/xorg-proto homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-proto depends_lib {port:xorg-applewmproto port:xorg-bigreqsproto port:xorg-compositeproto port:xorg-damageproto port:xorg-evieproto port:xorg-fixesproto port:xorg-fontcacheproto port:xorg-fontsproto port:xorg-inputproto port:xorg-kbproto port:xorg-randrproto port:xorg-recordproto port:xorg-renderproto port:xorg-resourceproto port:xorg-scrnsaverproto port:xorg-trapproto port:xorg-videoproto port:xorg-xcb-proto port:xorg-xcmiscproto port:xorg-xextproto port:xorg-xf86bigfontproto port:xorg-xf86dgaproto port:xorg-xf86miscproto port:xorg-xf86vidmodeproto port:xorg-xineramaproto port:xorg-xproto} maintainers jeremyhu long_description {This package builds all of the x.org proto packages.} version 20070907 categories {x11 devel} revision 0 +xorg-randrproto 387 +portdir x11/xorg-randrproto description {X.org randrproto} platforms darwin name xorg-randrproto version 1.2.1 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {The pkg-config program is used to retrieve information about installed libraries in the system. It is typically used to compile and link against one or more libraries.} +xorg-recordproto 273 +portdir x11/xorg-recordproto description {X.org recordproto} platforms darwin name xorg-recordproto version 1.13.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the Record extension to X11} xorg-renderproto 306 description {X.org renderproto} portdir x11/xorg-renderproto homepage http://www.x.org epoch 0 platforms darwin name xorg-renderproto depends_lib port:render maintainers bbyer at macports.org long_description {Prototype headers for the Render extension to X11} version 0.9.3 categories {x11 devel} revision 0 -xorg-resourceproto 348 -variants universal portdir x11/xorg-resourceproto description {X.org resourceproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-resourceproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype header files for the Resource extension to X11} version 1.0.2 categories {x11 devel} revision 0 -xorg-scrnsaverproto 351 -variants universal portdir x11/xorg-scrnsaverproto description {X.org scrnsaverproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-scrnsaverproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for the XScreenSaver extension to X11.} version 1.1.0 categories {x11 devel} revision 0 +xorg-resourceproto 285 +portdir x11/xorg-resourceproto description {X.org resourceproto} platforms darwin name xorg-resourceproto version 1.0.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype header files for the Resource extension to X11} +xorg-scrnsaverproto 288 +portdir x11/xorg-scrnsaverproto description {X.org scrnsaverproto} platforms darwin name xorg-scrnsaverproto version 1.1.0 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XScreenSaver extension to X11.} xorg-server 594 variants universal portdir x11/xorg-server description {The X.org / Xquartz X server.} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-server depends_lib {port:pkgconfig port:xorg-xproto port:xorg-xextproto port:xorg-xtrans port:xorg-libpthread-stubs port:xorg-libXau port:xorg-xcb-proto port:xorg-libxcb port:xorg-xcmiscproto port:xorg-inputproto port:xorg-kbproto port:xorg-libX11 port:xinit} maintainers bbyer at macports.org long_description {The X.org X server allows you to run X11 applications on your computer.} version 1.4.0-apple4 categories {x11 devel} revision 0 -xorg-trapproto 328 -variants universal portdir x11/xorg-trapproto description {X.org trapproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-trapproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for the XTrap extension to X11} version 3.4.3 categories {x11 devel} revision 0 +xorg-trapproto 265 +portdir x11/xorg-trapproto description {X.org trapproto} platforms darwin name xorg-trapproto version 3.4.3 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XTrap extension to X11} xorg-util-macros 301 portdir x11/xorg-util-macros description {X.org util-macros} platforms darwin name xorg-util-macros version 1.1.6 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers bbyer at macports.org long_description {Miscellaneous utility macros required by the Modular X.org codebase.} -xorg-videoproto 332 -variants universal portdir x11/xorg-videoproto description {X.org videoproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-videoproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for the XVideo extension to X11} version 2.2.2 categories {x11 devel} revision 0 -xorg-xcb-proto 326 -variants universal portdir x11/xorg-xcb-proto description {X.org xcb-proto} homepage http://xcb.freedesktop.org epoch 0 platforms {darwin macosx} name xorg-xcb-proto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {XML-XCB protocol descriptions} version 1.0 categories {x11 devel} revision 0 -xorg-xcmiscproto 335 -variants universal portdir x11/xorg-xcmiscproto description {X.org xcmiscproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-xcmiscproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for the XCMisc extension to X11} version 1.1.2 categories {x11 devel} revision 0 -xorg-xextproto 306 -variants universal portdir x11/xorg-xextproto description {X.org xextproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-xextproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for Xext} version 7.0.2 categories {x11 devel} revision 0 -xorg-xf86bigfontproto 335 -variants universal portdir x11/xorg-xf86bigfontproto description {X.org xf86bigfontproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-xf86bigfontproto depends_lib port:xorg-util-macros maintainers gmail.com:myschizobuddy long_description {XF86BigFont extension headers} version 1.1.2 categories {x11 devel} revision 0 -xorg-xf86dgaproto 339 -variants universal portdir x11/xorg-xf86dgaproto description {X.org xf86dgaproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-xf86dgaproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for the XF86DGA extension to X11} version 2.0.2 categories {x11 devel} revision 0 -xorg-xf86miscproto 346 -variants universal portdir x11/xorg-xf86miscproto description {X.org xf86miscproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-xf86miscproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Miscellaneous legacy XFree86 prototype headers for X11} version 0.9.2 categories {x11 devel} revision 0 -xorg-xf86vidmodeproto 355 -variants universal portdir x11/xorg-xf86vidmodeproto description {X.org xf86vidmodeproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-xf86vidmodeproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for the XF86Vidmode extension to X11} version 2.2.2 categories {x11 devel} revision 0 -xorg-xineramaproto 339 -variants universal portdir x11/xorg-xineramaproto description {X.org xineramaproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-xineramaproto depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Prototype headers for Xinerama extension to X11} version 1.1.2 categories {x11 devel} revision 0 +xorg-videoproto 269 +portdir x11/xorg-videoproto description {X.org videoproto} platforms darwin name xorg-videoproto version 2.2.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XVideo extension to X11} +xorg-xcb-proto 263 +portdir x11/xorg-xcb-proto description {X.org xcb-proto} platforms {darwin macosx} name xorg-xcb-proto version 1.0 categories {x11 devel} homepage http://xcb.freedesktop.org revision 0 epoch 0 maintainers jeremyhu long_description {XML-XCB protocol descriptions} +xorg-xcmiscproto 272 +portdir x11/xorg-xcmiscproto description {X.org xcmiscproto} platforms darwin name xorg-xcmiscproto version 1.1.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XCMisc extension to X11} +xorg-xextproto 243 +portdir x11/xorg-xextproto description {X.org xextproto} platforms darwin name xorg-xextproto version 7.0.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for Xext} +xorg-xf86bigfontproto 282 +portdir x11/xorg-xf86bigfontproto description {X.org xf86bigfontproto} platforms darwin name xorg-xf86bigfontproto version 1.1.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers gmail.com:myschizobuddy long_description {XF86BigFont extension headers} +xorg-xf86dgaproto 276 +portdir x11/xorg-xf86dgaproto description {X.org xf86dgaproto} platforms darwin name xorg-xf86dgaproto version 2.0.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XF86DGA extension to X11} +xorg-xf86miscproto 283 +portdir x11/xorg-xf86miscproto description {X.org xf86miscproto} platforms darwin name xorg-xf86miscproto version 0.9.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Miscellaneous legacy XFree86 prototype headers for X11} +xorg-xf86vidmodeproto 292 +portdir x11/xorg-xf86vidmodeproto description {X.org xf86vidmodeproto} platforms darwin name xorg-xf86vidmodeproto version 2.2.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XF86Vidmode extension to X11} +xorg-xineramaproto 276 +portdir x11/xorg-xineramaproto description {X.org xineramaproto} platforms darwin name xorg-xineramaproto version 1.1.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for Xinerama extension to X11} xorg-xproto 289 portdir x11/xorg-xproto description {X.org xproto} platforms darwin name xorg-xproto version 7.0.14 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers bbyer at macports.org long_description {The X.org xproto package contains miscellaneous X11 prototype headers.} xorg-xtrans 286 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Dec 1 20:25:48 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 1 Dec 2008 20:25:48 -0800 (PST) Subject: [42893] trunk/dports/x11/fvwm/Portfile Message-ID: <20081202042548.C72F07DEE10@beta.macosforge.org> Revision: 42893 http://trac.macports.org/changeset/42893 Author: ryandesign at macports.org Date: 2008-12-01 20:25:48 -0800 (Mon, 01 Dec 2008) Log Message: ----------- fvwm: increase revision so everyone gets the change from r42888 Modified Paths: -------------- trunk/dports/x11/fvwm/Portfile Modified: trunk/dports/x11/fvwm/Portfile =================================================================== --- trunk/dports/x11/fvwm/Portfile 2008-12-02 03:51:51 UTC (rev 42892) +++ trunk/dports/x11/fvwm/Portfile 2008-12-02 04:25:48 UTC (rev 42893) @@ -3,6 +3,7 @@ PortSystem 1.0 name fvwm version 1.24r +revision 1 description A very simple window manager supporting a pager long_description One of the earlier paging window managers with what is still considered to be a very elegant and minimal feature set yet highly configurable and expandable via plug-ins. -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Mon Dec 1 20:50:05 2008 From: blb at macports.org (blb at macports.org) Date: Mon, 1 Dec 2008 20:50:05 -0800 (PST) Subject: [42894] trunk/dports/mail/lbdb/Portfile Message-ID: <20081202045006.160537DF255@beta.macosforge.org> Revision: 42894 http://trac.macports.org/changeset/42894 Author: blb at macports.org Date: 2008-12-01 20:50:05 -0800 (Mon, 01 Dec 2008) Log Message: ----------- mail/lbdb - ensure -I${prefix}/include is used during compilation; ticket #16648 (maintainer timeout) Modified Paths: -------------- trunk/dports/mail/lbdb/Portfile Modified: trunk/dports/mail/lbdb/Portfile =================================================================== --- trunk/dports/mail/lbdb/Portfile 2008-12-02 04:25:48 UTC (rev 42893) +++ trunk/dports/mail/lbdb/Portfile 2008-12-02 04:50:05 UTC (rev 42894) @@ -28,6 +28,7 @@ configure.dir ${workpath}/${name}-${version} configure.args --sysconfdir=${prefix}/etc/ --libdir=${prefix}/lib/lbdb/ \ --mandir=${prefix}/share/man +configure.cflags-append -I${prefix}/include build.dir ${configure.dir} destroot.target install destroot.destdir install_prefix=${destroot} -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Dec 1 20:51:51 2008 From: portindex at macports.org (portindex at macports.org) Date: Mon, 1 Dec 2008 20:51:51 -0800 (PST) Subject: [42895] trunk/dports/PortIndex Message-ID: <20081202045153.18D1C7DF2B3@beta.macosforge.org> Revision: 42895 http://trac.macports.org/changeset/42895 Author: portindex at macports.org Date: 2008-12-01 20:51:51 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Total number of ports parsed: 5167 Ports successfully parsed: 5167 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 04:50:05 UTC (rev 42894) +++ trunk/dports/PortIndex 2008-12-02 04:51:51 UTC (rev 42895) @@ -9823,7 +9823,7 @@ fsv 415 portdir x11/fsv variants universal description {A clone of the SGI filesystem visualizer from Jurassic Park.} name fsv depends_lib {lib:gtk1:gtk1 lib:gtkglarea:gtkglarea} version 0.9 categories {x11 amusements} revision 0 epoch 0 maintainers edmundrhudy at mac.com long_description {fsv is an OpenGL filesystem visualizer inspired by the SGI 3D File System Navigator seen in Jurassic Park. homepage http://fsv.sf.net} fvwm 508 -variants universal depends_build bin:xmkmf:imake portdir x11/fvwm description {A very simple window manager supporting a pager} homepage http://www.fvwm.org/ epoch 0 platforms darwin depends_lib {lib:libX11.6:XFree86 lib:libXpm.4:xpm} name fvwm long_description {One of the earlier paging window managers with what is still considered to be a very elegant and minimal feature set yet highly configurable and expandable via plug-ins.} maintainers nomaintainer version 1.24r categories {x11 x11-wm} revision 0 +variants universal depends_build bin:xmkmf:imake portdir x11/fvwm description {A very simple window manager supporting a pager} homepage http://www.fvwm.org/ epoch 0 platforms darwin depends_lib {lib:libX11.6:XFree86 lib:libXpm.4:xpm} name fvwm long_description {One of the earlier paging window managers with what is still considered to be a very elegant and minimal feature set yet highly configurable and expandable via plug-ins.} maintainers nomaintainer version 1.24r categories {x11 x11-wm} revision 1 fvwm2 500 variants universal portdir x11/fvwm2 description {Version 2.x of FVWM, an X11 window manager.} homepage http://www.fvwm.org/ epoch 0 platforms darwin name fvwm2 depends_lib {lib:libX11.6:XFree86 lib:libXpm.4:xpm lib:libgtk.1:gtk1 lib:libreadline:readline bin:gnome-config:gnome-libs} long_description {FVWM 2.x is an extremely powerful ICCCM-compliant multiple virtual desktop window manager for the X Window system.} maintainers pguyot at kallisys.net version 2.5.21 categories {x11-wm x11} revision 0 fxscintilla 380 -------------- next part -------------- An HTML attachment was scrubbed... URL: From noreply at macports.org Mon Dec 1 21:06:19 2008 From: noreply at macports.org (MacPorts) Date: Tue, 02 Dec 2008 05:06:19 -0000 Subject: [MacPorts] MacPortsDevelopers modified Message-ID: <20081202050729.691F028081@relay11.apple.com> Changed page "MacPortsDevelopers" by perry at macports.org from 67.180.71.59* Page URL: Diff URL: Revision 116 -------8<------8<------8<------8<------8<------8<------8<------8<-------- Index: MacPortsDevelopers ========================================================================= --- MacPortsDevelopers (version: 115) +++ MacPortsDevelopers (version: 116) @@ -89,6 +89,7 @@ ||[wiki:noel noel] || Raffaele De Lorenzo |||| ||[wiki:nottwo nottwo] || Trannie Carter |||| ||[wiki:nox nox] || Anthony Ramine || N_Ox || +||[wiki:perry perry] || Perry Lee || pjl || ||[wiki:pguyot pguyot] || Paul Guyot |||| ||[wiki:phw phw] || Philipp Wei?mann |||| ||[wiki:pipping pipping] || Elias Pipping |||| -------8<------8<------8<------8<------8<------8<------8<------8<-------- * The IP shown here might not mean anything if the user or the server is behind a proxy. -- MacPorts Ports system for Mac OS This is an automated message. Someone at http://www.macports.org/ added your email address to be notified of changes on MacPortsDevelopers. If it was not you, please report to . From blb at macports.org Mon Dec 1 21:15:27 2008 From: blb at macports.org (blb at macports.org) Date: Mon, 1 Dec 2008 21:15:27 -0800 (PST) Subject: [42896] trunk/dports/archivers/libzzip Message-ID: <20081202051527.C28227DF60C@beta.macosforge.org> Revision: 42896 http://trac.macports.org/changeset/42896 Author: blb at macports.org Date: 2008-12-01 21:15:27 -0800 (Mon, 01 Dec 2008) Log Message: ----------- archivers/libzzip - avoid installing ${prefix}/lib/libzzip*.so.10, libzzip*.so.11, and libzzip*.so.12 symlinks (yes, the literal asterisk) Modified Paths: -------------- trunk/dports/archivers/libzzip/Portfile Added Paths: ----------- trunk/dports/archivers/libzzip/files/ trunk/dports/archivers/libzzip/files/patch-zzib_Makefile.in.diff Modified: trunk/dports/archivers/libzzip/Portfile =================================================================== --- trunk/dports/archivers/libzzip/Portfile 2008-12-02 04:51:51 UTC (rev 42895) +++ trunk/dports/archivers/libzzip/Portfile 2008-12-02 05:15:27 UTC (rev 42896) @@ -5,6 +5,7 @@ name libzzip set my_name zziplib version 0.13.49 +revision 1 categories archivers devel platforms darwin maintainers nomaintainer @@ -31,6 +32,8 @@ depends_lib port:zlib +patchfiles patch-zzib_Makefile.in.diff + configure.args --enable-default-pkgconfigdir=${prefix}/lib/pkgconfig set docdir ${prefix}/share/doc/${name}-${version} Added: trunk/dports/archivers/libzzip/files/patch-zzib_Makefile.in.diff =================================================================== --- trunk/dports/archivers/libzzip/files/patch-zzib_Makefile.in.diff (rev 0) +++ trunk/dports/archivers/libzzip/files/patch-zzib_Makefile.in.diff 2008-12-02 05:15:27 UTC (rev 42896) @@ -0,0 +1,11 @@ +--- zzip/Makefile.in.orig 2007-03-18 10:24:38.000000000 -0600 ++++ zzip/Makefile.in 2008-12-01 22:11:15.000000000 -0700 +@@ -622,7 +622,7 @@ + install-data-am: install-data-local install-pkgconfigHEADERS \ + install-zzipHEADERS + +-install-exec-am: install-exec-local install-libLTLIBRARIES ++install-exec-am: install-libLTLIBRARIES + + install-info: install-info-am + -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Mon Dec 1 21:15:46 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Mon, 1 Dec 2008 21:15:46 -0800 (PST) Subject: [42897] trunk/dports/audio/a52dec/Portfile Message-ID: <20081202051546.E591C7DF692@beta.macosforge.org> Revision: 42897 http://trac.macports.org/changeset/42897 Author: jeremyhu at macports.org Date: 2008-12-01 21:15:46 -0800 (Mon, 01 Dec 2008) Log Message: ----------- a52dec: autoreconf to build universal Modified Paths: -------------- trunk/dports/audio/a52dec/Portfile Modified: trunk/dports/audio/a52dec/Portfile =================================================================== --- trunk/dports/audio/a52dec/Portfile 2008-12-02 05:15:27 UTC (rev 42896) +++ trunk/dports/audio/a52dec/Portfile 2008-12-02 05:15:46 UTC (rev 42897) @@ -22,3 +22,8 @@ livecheck.check regex livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}" + +depends_build port:libtool +pre-configure { + system "cd ${worksrcpath} && autoreconf -fvi" +} -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Mon Dec 1 21:33:50 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Mon, 1 Dec 2008 21:33:50 -0800 (PST) Subject: [42898] trunk/dports/multimedia/ffmpeg/Portfile Message-ID: <20081202053350.7E2127DF9AC@beta.macosforge.org> Revision: 42898 http://trac.macports.org/changeset/42898 Author: jeremyhu at macports.org Date: 2008-12-01 21:33:50 -0800 (Mon, 01 Dec 2008) Log Message: ----------- ffmpeg: Doesn't build universal... Modified Paths: -------------- trunk/dports/multimedia/ffmpeg/Portfile Modified: trunk/dports/multimedia/ffmpeg/Portfile =================================================================== --- trunk/dports/multimedia/ffmpeg/Portfile 2008-12-02 05:15:46 UTC (rev 42897) +++ trunk/dports/multimedia/ffmpeg/Portfile 2008-12-02 05:33:50 UTC (rev 42898) @@ -72,11 +72,9 @@ default_variants +a52 -pre-configure { - if {[variant_isset universal]} { - configure.args-delete --disable-dependency-tracking - } -} +# configure isn't autoconf and they do use a dep cache +universal_variant no + post-destroot { file mkdir ${destroot}${prefix}/share/doc/${name} file copy ${worksrcpath}/doc/TODO ${destroot}${prefix}/share/doc/${name} -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Mon Dec 1 21:34:27 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Mon, 1 Dec 2008 21:34:27 -0800 (PST) Subject: [42899] trunk/dports/python Message-ID: <20081202053427.ADD167DFA0B@beta.macosforge.org> Revision: 42899 http://trac.macports.org/changeset/42899 Author: mcalhoun at macports.org Date: 2008-12-01 21:34:27 -0800 (Mon, 01 Dec 2008) Log Message: ----------- py26-setuptools: New port Added Paths: ----------- trunk/dports/python/py26-setuptools/ trunk/dports/python/py26-setuptools/Portfile Added: trunk/dports/python/py26-setuptools/Portfile =================================================================== --- trunk/dports/python/py26-setuptools/Portfile (rev 0) +++ trunk/dports/python/py26-setuptools/Portfile 2008-12-02 05:34:27 UTC (rev 42899) @@ -0,0 +1,75 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 + +####################################################################################################### +# PortGroup python26 1.0 +####################################################################################################### +# Can be removed once MacPorts 1.7.0 is released +if {![info exists frameworks_dir]} { + set frameworks_dir ${prefix}/Library/Frameworks +} + +set python.bin ${prefix}/bin/python2.6 +set python.lib ${frameworks_dir}/Python.framework/Versions/2.6/Python +set python.pkgd ${frameworks_dir}/Python.framework/Versions/2.6/lib/python2.6/site-packages +set python.bindir ${frameworks_dir}/Python.framework/Versions/2.6/bin +set python.include ${frameworks_dir}/Python.framework/Versions/2.6/include/python2.6 + +categories python + +dist_subdir python + +depends_lib port:python26 + +use_configure no + +build.cmd ${python.bin} setup.py --no-user-cfg +build.target build + +destroot.cmd ${python.bin} setup.py --no-user-cfg +destroot.destdir --prefix=${frameworks_dir}/Python.framework/Versions/2.6 --root=${destroot} +configure.pkg_config_path ${frameworks_dir}/Python.framework/Versions/2.6/lib/pkgconfig + +set env(PATH) "${python.bindir}:$env(PATH)" + +pre-destroot { + xinstall -d -m 755 ${destroot}${prefix}/share/doc/${name}/examples +} +####################################################################################################### + +name py26-setuptools +version 0.6c9 +categories-append devel +maintainers mcalhoun openmaintainer +description distutils enhancement for build and distribution +long_description \ + setuptools is a collection of enhancements to the Python distutils that \ + allow you to more easily build and distribute Python packages, \ + especially ones that have dependencies on other packages. + +platforms darwin + +homepage http://peak.telecommunity.com/DevCenter/setuptools +master_sites http://pypi.python.org/packages/source/s/setuptools +distname setuptools-${version} + +checksums md5 3864c01d9c719c8924c455714492295e \ + sha1 79086433b341f0c1df45e10d586a7d3cc25089f1 \ + rmd160 bc0ee3821e76b57fd13425b16c4419dbccf95ed9 + +post-destroot { + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} + xinstall -m 644 -W ${worksrcpath} EasyInstall.txt api_tests.txt \ + pkg_resources.txt setuptools.txt \ + ${destroot}${prefix}/share/doc/${name} + ln -s ${python.bindir}/easy_install-2.6 ${destroot}${prefix}/bin/ +} + +test.run yes +test.cmd ${python.bin} setup.py test + +livecheck.check regex +livecheck.url [lindex ${master_sites} 0]?C=M&O=D +livecheck.regex setuptools-(\\d+(?:\\.\\d+)*c\\d+(?:\\.\\d+)*) -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Mon Dec 1 21:47:39 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Mon, 1 Dec 2008 21:47:39 -0800 (PST) Subject: [42900] trunk/dports/python Message-ID: <20081202054739.F0EEC7DFC94@beta.macosforge.org> Revision: 42900 http://trac.macports.org/changeset/42900 Author: mcalhoun at macports.org Date: 2008-12-01 21:47:39 -0800 (Mon, 01 Dec 2008) Log Message: ----------- py26-zopeinterface: New port Added Paths: ----------- trunk/dports/python/py26-zopeinterface/ trunk/dports/python/py26-zopeinterface/Portfile Added: trunk/dports/python/py26-zopeinterface/Portfile =================================================================== --- trunk/dports/python/py26-zopeinterface/Portfile (rev 0) +++ trunk/dports/python/py26-zopeinterface/Portfile 2008-12-02 05:47:39 UTC (rev 42900) @@ -0,0 +1,66 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 +# $Id:$ + +PortSystem 1.0 + +####################################################################################################### +# PortGroup python26 1.0 +####################################################################################################### +# Can be removed once MacPorts 1.7.0 is released +if {![info exists frameworks_dir]} { + set frameworks_dir ${prefix}/Library/Frameworks +} + +set python.bin ${prefix}/bin/python2.6 +set python.lib ${frameworks_dir}/Python.framework/Versions/2.6/Python +set python.pkgd ${frameworks_dir}/Python.framework/Versions/2.6/lib/python2.6/site-packages +set python.bindir ${frameworks_dir}/Python.framework/Versions/2.6/bin +set python.include ${frameworks_dir}/Python.framework/Versions/2.6/include/python2.6 + +categories python + +dist_subdir python + +depends_lib port:python26 + +use_configure no + +build.cmd ${python.bin} setup.py --no-user-cfg +build.target build + +destroot.cmd ${python.bin} setup.py --no-user-cfg +destroot.destdir --prefix=${frameworks_dir}/Python.framework/Versions/2.6 --root=${destroot} +configure.pkg_config_path ${frameworks_dir}/Python.framework/Versions/2.6/lib/pkgconfig + +set env(PATH) "${python.bindir}:$env(PATH)" + +pre-destroot { + xinstall -d -m 755 ${destroot}${prefix}/share/doc/${name}/examples +} +####################################################################################################### + +name py26-zopeinterface +version 3.3.0 +categories python zope +platforms darwin +maintainers mcalhoun openmaintainer +description Python interfaces for Zope +long_description ${description} + +homepage http://www.zope.org/Products/ZopeInterface +master_sites ${homepage}/${version} +distname zope.interface-${version} +checksums \ + md5 93668855e37b4691c5c956665c33392c \ + sha1 6a5cdb2c03c9dfbaec51b243a4eb8328909f7e30 \ + rmd160 e44ad35c94e517130cb3dd951f9a637e9407cb1c + +post-destroot { + xinstall -m 644 -W ${worksrcpath} \ + CHANGES.txt README.txt \ + ${destroot}${prefix}/share/doc/${name} +} + +livecheck.check regex +livecheck.url ${homepage} +livecheck.regex zope.interface-(\\d+(?:\\.\\d+)*)${extract.suffix} -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Dec 1 21:51:59 2008 From: portindex at macports.org (portindex at macports.org) Date: Mon, 1 Dec 2008 21:51:59 -0800 (PST) Subject: [42901] trunk/dports/PortIndex Message-ID: <20081202055200.DFE837DFE7F@beta.macosforge.org> Revision: 42901 http://trac.macports.org/changeset/42901 Author: portindex at macports.org Date: 2008-12-01 21:51:58 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Total number of ports parsed: 5168 Ports successfully parsed: 5168 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 05:47:39 UTC (rev 42900) +++ trunk/dports/PortIndex 2008-12-02 05:51:58 UTC (rev 42901) @@ -207,7 +207,7 @@ libarxx 579 variants universal portdir archivers/libarxx description {C++ library for using ARX archives} homepage http://libarxx.sourceforge.net/ depends_run port:pkgconfig epoch 0 platforms darwin name libarxx depends_lib {port:zlib port:bzip2} maintainers nomaintainer long_description {libarxx is a C++ implementation for accessing ARX archives. ARX archives are compressed and structured collections of data items with advanced features like data synchronization, references for external data items, and merging multiple archives.} version 0.7.8 categories {archivers devel} revision 0 libzzip 646 -variants {universal sdl} variant_desc {sdl {Enable SDL support}} portdir archivers/libzzip description {library providing read access on ZIP-archives} homepage http://zziplib.sourceforge.net/ epoch 0 depends_run {port:pkgconfig port:xmlto} platforms darwin depends_lib port:zlib name libzzip maintainers nomaintainer long_description {The ZZIPlib provides read access on ZIP-archives. The library uses only the patent-free compression-algorithms supported by Zlib. It provides functions that transparently access files being either real files or zipped files, both with the same filepath.} categories {archivers devel} version 0.13.49 revision 0 +variants {universal sdl} variant_desc {sdl {Enable SDL support}} portdir archivers/libzzip description {library providing read access on ZIP-archives} homepage http://zziplib.sourceforge.net/ epoch 0 depends_run {port:pkgconfig port:xmlto} platforms darwin depends_lib port:zlib name libzzip maintainers nomaintainer long_description {The ZZIPlib provides read access on ZIP-archives. The library uses only the patent-free compression-algorithms supported by Zlib. It provides functions that transparently access files being either real files or zipped files, both with the same filepath.} categories {archivers devel} version 0.13.49 revision 1 lzma 395 variants universal description {high compression ratio archiver} portdir archivers/lzma homepage http://www.7-zip.org/sdk.html epoch 0 platforms darwin name lzma long_description {LZMA is default and general compression method of 7z format in 7-Zip program. LZMA provides high compression ratio and very fast decompression.} maintainers nomaintainer categories archivers version 4.43 revision 2 lzmautils 509 @@ -266,8 +266,8 @@ variants universal description {Manipulate archives of files in compressed form} portdir archivers/zoo homepage http://zoo.sourceforge.net/ epoch 0 platforms darwin name zoo long_description {Zoo is used to create and maintain collections of files in compressed form. It uses a Lempel-Ziv compression algorithm that gives space savings in the range of 20% to 80% depending on the type of file data. Zoo can store and selectively extract multiple generations of the same file. Data can be recovered from damaged archives by skipping the damaged portion and locating undamaged data with the help of fiz(1).} maintainers nomaintainer categories archivers version 2.10pl1 revision 0 ID3 707 variants universal description {Framework for reading and writing ID3Tags} portdir audio/ID3 homepage http://drewfamily.homemail.com.au/Cocoa_-_ID3Tag_framework.html epoch 0 platforms macosx name ID3 long_description {ID3Tag.framework is as the name suggests a Cocoa based framework for reading and writing ID3Tags. It is written in Objective C and uses the Cocoa (Foundation) tool kit, hence it is ideal for Cocoa based applications. ID3Panel.framework is as a Cocoa panel framework that uses ID3Tag.framework to provide the user with a one call modal panel for editing ID3 tags modelled after the tag editor in iTunes.} maintainers waqar at macports.org categories {audio devel aqua} version 0.98 revision 0 -a52dec 494 -variants universal description {library for decoding ATSC A/52 streams, aka AC-3} portdir audio/a52dec homepage http://liba52.sourceforge.net/ epoch 0 platforms darwin name a52dec long_description {liba52 is a free library for decoding ATSC A/52 streams. It is released under the terms of the GPL license. The A/52 standard is used in a variety of applications, including digital television and DVD. It is also known as AC-3.} maintainers nomaintainer categories audio version 0.7.4 revision 0 +a52dec 521 +variants universal depends_build port:libtool portdir audio/a52dec description {library for decoding ATSC A/52 streams, aka AC-3} homepage http://liba52.sourceforge.net/ epoch 0 platforms darwin name a52dec maintainers nomaintainer long_description {liba52 is a free library for decoding ATSC A/52 streams. It is released under the terms of the GPL license. The A/52 standard is used in a variety of applications, including digital television and DVD. It is also known as AC-3.} version 0.7.4 categories audio revision 0 aacgain 382 variants {universal darwin} portdir audio/aacgain description {AAC/MP3 normalisation tool} homepage http://altosdesign.com/aacgain/ epoch 0 platforms darwin name aacgain depends_lib {port:mpeg4ip port:faad2} maintainers tristan at cs.dartmouth.edu long_description {A modification of mp3gain to normalise the volume of MP3 and AAC audio files.} version 1.7 categories audio revision 0 abcMIDI 368 @@ -4534,8 +4534,8 @@ variants universal portdir multimedia/dvdrip description {perl front end for transcode} homepage http://www2.exit1.org/dvdrip/ epoch 0 platforms darwin name dvdrip depends_lib {port:p5-libintl-perl port:transcode port:p5-gtk2} maintainers marioscheel at web.de long_description {dvd::rip is a full featured DVD copy program written in Perl. It provides an easy to use but feature-rich Gtk+ GUI to control almost all aspects of the ripping and transcoding process. It uses the widely known video processing swissknife transcode and many other Open Source tools.} version 0.98.8 categories multimedia revision 0 emotion 755 variants universal portdir multimedia/emotion description {A Evas smart-object library for video capabilities.} homepage http://evidence.sf.net epoch 0 platforms darwin name emotion depends_lib {lib:libX11.6:XFree86 lib:libjpeg.62:jpeg lib:libpng.3:libpng lib:libtiff.3:tiff lib:libImlib2:imlib2 lib:libesd:esound lib:libintl:gettext lib:libxine:xine-lib lib:libevas:evas lib:libecore:ecore} long_description {Emotion is an Evas smart-object library providing video capabilities. Emotion leverages libxine 1.0 and integrates seemlessly with the rest of the EFL. Because its based on libxine, any format that it supports (Theora, DiVX, MPEG2, etc) is avalible using Emotion.} maintainers nomaintainer version 0.0.1 categories {multimedia devel} revision 0 -ffmpeg 1937 -variants {universal darwin_i386 mmx gpl postproc lame extvorbis theora faac faad xvid x264 a52 avfilter} depends_build {bin:svn:subversion port:gmake} variant_desc {mmx {enable mmx support, experimental; does not build in gcc-4.2 or xcode 3.0 gcc-4.0} gpl {allow use of GPL code, the resulting libav* and ffmpeg will be under GPL} postproc {enable GPLed postprocessing support} lame {enable MP3 encoding via libmp3lame} extvorbis {enable Vorbis encoding via libvorbis, native implementation exists} theora {enable Theora encoding via libtheora} faac {enable FAAC support via libfaac} faad {enable FAAD support via libfaad} xvid {enable Xvid encoding via xvidcore, native MPEG-4/Xvid encoder exists} x264 {enable H.264 encoding via x264} a52 {enable GPLed liba52 support} avfilter {video filter support (replaces vhook)}} portdir multimedia/ffmpeg description {Digital VCR and streaming server} homepage http://ffmpeg.sourceforge.net/ epoch 0 platforms darwin depends_lib port:a52dec name f fmpeg maintainers {acho at macports.org openmaintainer} long_description {FFmpeg is a complete solution to record, convert and stream audio and video. It includes libavcodec, the leading audio/video codec library. The project is made of several components: ffmpeg is a command line tool to convert one video file format to another. It also supports grabbing and encoding in real time from a TV card. ffserver is an HTTP (RTSP is being developped) multimedia streaming server for live broadcasts. Time shifting of live broadcast is also supported. ffplay is a simple media player based on SDL and on the ffmpeg libraries. libavcodec is a library containing all the ffmpeg audio/video encoders and decoders. Most codecs were developped from scratch to ensure best performances and high code reusability. libavformat is a library containing parsers and generators for all common audio/video formats.} categories multimedia version 0.4.9-pre1 revision 12 +ffmpeg 1927 +variants {darwin_i386 mmx gpl postproc lame extvorbis theora faac faad xvid x264 a52 avfilter} depends_build {bin:svn:subversion port:gmake} variant_desc {mmx {enable mmx support, experimental; does not build in gcc-4.2 or xcode 3.0 gcc-4.0} gpl {allow use of GPL code, the resulting libav* and ffmpeg will be under GPL} postproc {enable GPLed postprocessing support} lame {enable MP3 encoding via libmp3lame} extvorbis {enable Vorbis encoding via libvorbis, native implementation exists} theora {enable Theora encoding via libtheora} faac {enable FAAC support via libfaac} faad {enable FAAD support via libfaad} xvid {enable Xvid encoding via xvidcore, native MPEG-4/Xvid encoder exists} x264 {enable H.264 encoding via x264} a52 {enable GPLed liba52 support} avfilter {video filter support (replaces vhook)}} portdir multimedia/ffmpeg description {Digital VCR and streaming server} homepage http://ffmpeg.sourceforge.net/ epoch 0 platforms darwin depends_lib port:a52dec name ffmpeg main tainers {acho at macports.org openmaintainer} long_description {FFmpeg is a complete solution to record, convert and stream audio and video. It includes libavcodec, the leading audio/video codec library. The project is made of several components: ffmpeg is a command line tool to convert one video file format to another. It also supports grabbing and encoding in real time from a TV card. ffserver is an HTTP (RTSP is being developped) multimedia streaming server for live broadcasts. Time shifting of live broadcast is also supported. ffplay is a simple media player based on SDL and on the ffmpeg libraries. libavcodec is a library containing all the ffmpeg audio/video encoders and decoders. Most codecs were developped from scratch to ensure best performances and high code reusability. libavformat is a library containing parsers and generators for all common audio/video formats.} categories multimedia version 0.4.9-pre1 revision 12 gnupod 742 variants {universal flac vorbis aac artwork} variant_desc {flac {Enable FLAC} vorbis {Enable Ogg/Vorbis} aac {Enable AAC} artwork {Enable artwork support}} portdir multimedia/gnupod description {GNUpod is a collection of tools which allow you to use your iPod with UNIX-like operating systems.} homepage http://blinkenlights.ch/gnupod epoch 0 platforms darwin name gnupod depends_lib {path:bin/perl:perl5 port:p5-mp3-info port:p5-digest-md5 port:p5-xml-parser port:p5-unicode-string port:p5-libwww-perl port:p5-digest-sha1 port:p5-timedate port:lame} maintainers pmq long_description {{GNUpod is a collection of tools which allow you to use your iPod with UNIX-like operating systems.}} version 0.99.7 categories {multimedia perl} revision 0 libartnet 377 @@ -7822,6 +7822,8 @@ variants universal portdir python/py25-zsi description {Zolera SOAP Infrastructure is a Python implementation of SOAP} homepage http://pywebsvcs.sourceforge.net/ epoch 0 platforms darwin depends_lib port:python25 name py25-zsi maintainers stechert at macports.org long_description {ZSI, the Zolera SOAP Infrastructure, is a pure-Python module that provides an implementation of SOAP messaging, as described in The SOAP 1.1 Specification. It can also be used to build applications using SOAP Messages with Attachments. ZSI is intended to make it easier to write web services in Python.} categories {python net} version 2.0-rc3 revision 0 py26-pygments 549 variants universal portdir python/py26-pygments description {Python syntax highlighter} homepage http://pygments.org epoch 0 platforms darwin name py26-pygments depends_lib port:py26-setuptools maintainers {openmaintainer erickt at macports.org} long_description {Pygments is a fast syntax highlighter written in Python with a special focus on details. Can highlight source code in many supported languages: Python, Ruby, PHP, HTML etc. Outputs arbitrarily-styled HTML or LaTeX, comes with many builtin styles.} version 1.0 categories devel revision 0 +py26-setuptools 546 +variants universal portdir python/py26-setuptools description {distutils enhancement for build and distribution} homepage http://peak.telecommunity.com/DevCenter/setuptools epoch 0 platforms darwin depends_lib port:python26 name py26-setuptools maintainers {mcalhoun openmaintainer} long_description {setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages.} categories {python devel} version 0.6c9 revision 0 py30-bsddb 365 variants universal portdir python/py30-bsddb description {Python bindings to the db46 library} homepage http://www.python.org/doc/current/lib/module-dbm.html epoch 0 platforms darwin depends_lib {port:python30 port:db46} name py30-bsddb maintainers mww long_description {{Python bindings to the db46 library}} categories {python databases} version 3.0b3 revision 0 py30-bz2 328 -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Mon Dec 1 22:19:18 2008 From: blb at macports.org (blb at macports.org) Date: Mon, 1 Dec 2008 22:19:18 -0800 (PST) Subject: [42902] trunk/dports/lang/python26/Portfile Message-ID: <20081202061919.216707E0BB4@beta.macosforge.org> Revision: 42902 http://trac.macports.org/changeset/42902 Author: blb at macports.org Date: 2008-12-01 22:19:18 -0800 (Mon, 01 Dec 2008) Log Message: ----------- lang/python26 - add UCS4 support via variant, ticket #11774 Modified Paths: -------------- trunk/dports/lang/python26/Portfile Modified: trunk/dports/lang/python26/Portfile =================================================================== --- trunk/dports/lang/python26/Portfile 2008-12-02 05:51:58 UTC (rev 42901) +++ trunk/dports/lang/python26/Portfile 2008-12-02 06:19:18 UTC (rev 42902) @@ -136,6 +136,10 @@ configure.args-append --enable-universalsdk=${configure.universal_sysroot} } +variant ucs4 description {Enable support for UCS4} { + configure.args-append --enable-unicode=ucs4 +} + livecheck.check regex livecheck.url ${homepage}download/releases/ livecheck.regex Python (${branch}(?:\\.\\d+)*) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Mon Dec 1 22:31:48 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Mon, 1 Dec 2008 22:31:48 -0800 (PST) Subject: [42903] trunk/dports/multimedia/libmpeg2/Portfile Message-ID: <20081202063148.524D87E0E87@beta.macosforge.org> Revision: 42903 http://trac.macports.org/changeset/42903 Author: jeremyhu at macports.org Date: 2008-12-01 22:31:46 -0800 (Mon, 01 Dec 2008) Log Message: ----------- libmpeg2: Not universal... Modified Paths: -------------- trunk/dports/multimedia/libmpeg2/Portfile Modified: trunk/dports/multimedia/libmpeg2/Portfile =================================================================== --- trunk/dports/multimedia/libmpeg2/Portfile 2008-12-02 06:19:18 UTC (rev 42902) +++ trunk/dports/multimedia/libmpeg2/Portfile 2008-12-02 06:31:46 UTC (rev 42903) @@ -35,3 +35,7 @@ livecheck.check regex livecheck.url ${homepage}downloads.html livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}" + +# If you try to build this universal, it tries to use mmx for both archs +universal_variant no + -------------- next part -------------- An HTML attachment was scrubbed... URL: From mww at macports.org Mon Dec 1 22:51:46 2008 From: mww at macports.org (mww at macports.org) Date: Mon, 1 Dec 2008 22:51:46 -0800 (PST) Subject: [42904] trunk/dports/devel/automake/Portfile Message-ID: <20081202065147.177897E108B@beta.macosforge.org> Revision: 42904 http://trac.macports.org/changeset/42904 Author: mww at macports.org Date: 2008-12-01 22:51:46 -0800 (Mon, 01 Dec 2008) Log Message: ----------- version 1.10.2 (#17481) Modified Paths: -------------- trunk/dports/devel/automake/Portfile Modified: trunk/dports/devel/automake/Portfile =================================================================== --- trunk/dports/devel/automake/Portfile 2008-12-02 06:31:46 UTC (rev 42903) +++ trunk/dports/devel/automake/Portfile 2008-12-02 06:51:46 UTC (rev 42904) @@ -3,7 +3,7 @@ PortSystem 1.0 name automake -version 1.10.1 +version 1.10.2 categories devel maintainers mww description the gnu automake utility for generating Makefile.in @@ -17,7 +17,7 @@ homepage http://www.gnu.org/software/automake/ master_sites gnu -checksums sha1 cd2e0f7054d4edc75cbf87cd8a92962b3b417b74 +checksums sha1 fad55795a57b82d107808ae1bf51f72eba45c921 use_bzip2 yes depends_build port:autoconf -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Dec 1 22:51:50 2008 From: portindex at macports.org (portindex at macports.org) Date: Mon, 1 Dec 2008 22:51:50 -0800 (PST) Subject: [42905] trunk/dports/PortIndex Message-ID: <20081202065152.39DBE7E10D5@beta.macosforge.org> Revision: 42905 http://trac.macports.org/changeset/42905 Author: portindex at macports.org Date: 2008-12-01 22:51:50 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Total number of ports parsed: 5169 Ports successfully parsed: 5169 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 06:51:46 UTC (rev 42904) +++ trunk/dports/PortIndex 2008-12-02 06:51:50 UTC (rev 42905) @@ -3926,8 +3926,8 @@ variants {universal darwin_7 darwin_8 darwin_9 darwin_10} portdir lang/python25 description {An interpreted, object-oriented programming language} homepage http://www.python.org/ epoch 0 platforms darwin name python25 depends_lib port:gettext maintainers mww long_description {Python is an interpreted, interactive, object-oriented programming language.} version 2.5.2 categories lang revision 5 python25-doc 443 variants {universal darwin_7 darwin_8 darwin_9 puredarwin} portdir lang/python25-doc description {HTML documentation for Python 2.5} homepage http://www.python.org/ epoch 0 platforms darwin name python25-doc depends_lib {port:gettext port:python25 port:latex2html} maintainers nomaintainer long_description {HTML documentation for Python 2.5. Use by running 'pydoc2.5 TOPIC', e.g. 'pydoc2.5 NUMBERS'.} version 2.5.2 categories lang revision 0 -python26 500 -variants {universal darwin_7 darwin_9 darwin_10} portdir lang/python26 description {An interpreted, object-oriented programming language} homepage http://www.python.org/ epoch 0 platforms darwin name python26 depends_lib {port:gettext port:zlib port:openssl port:tk port:sqlite3 port:db46 port:ncurses port:gdbm port:bzip2 port:readline} maintainers {blb mcalhoun} long_description {Python is an interpreted, interactive, object-oriented programming language.} version 2.6 categories lang revision 5 +python26 551 +variants {universal darwin_7 darwin_9 darwin_10 ucs4} variant_desc {ucs4 {Enable support for UCS4}} portdir lang/python26 description {An interpreted, object-oriented programming language} homepage http://www.python.org/ epoch 0 platforms darwin name python26 depends_lib {port:gettext port:zlib port:openssl port:tk port:sqlite3 port:db46 port:ncurses port:gdbm port:bzip2 port:readline} maintainers {blb mcalhoun} long_description {Python is an interpreted, interactive, object-oriented programming language.} version 2.6 categories lang revision 5 python30 402 variants {universal darwin_10} portdir lang/python30 description {An interpreted, object-oriented programming language} homepage http://www.python.org/ epoch 0 platforms darwin name python30 depends_lib port:gettext maintainers mww long_description {Python is an interpreted, interactive, object-oriented programming language. This version is a BETA release!} version 3.0rc1 categories lang revision 0 python30-doc 292 @@ -4548,8 +4548,8 @@ variants universal portdir multimedia/libmatroska description {Matroska is an extensible open standard audio/video container format.} homepage http://www.matroska.org/ epoch 0 platforms darwin name libmatroska depends_lib lib:libebml.a:libebml maintainers {pguyot at kallisys.net openmaintainer} long_description {Matroska is an extensible open standard audio/video container format. This library is there to support this format and has been written by the Matroska project team.} version 0.8.1 categories multimedia revision 0 libmms 752 variants universal portdir multimedia/libmms description {Library for parsing mms:// and mmsh:// network streams} homepage http://libmms.sourceforge.net/ epoch 0 platforms darwin name libmms depends_lib {port:pkgconfig path:lib/pkgconfig/glib-2.0.pc:glib2 port:libiconv port:gettext} maintainers {boeyms openmaintainer} long_description {LibMMS is a common library for parsing the legacy mms:// and mmsh:// type network streams, created and now abandoned by Microsoft. These are commonly used to stream Windows Media Video content over the web. LibMMS itself is only for receiving MMS streams, it doesn't handle sending at all. If you need streaming functionality, look at other protocols, such as RT(S)P.} version 0.4 categories multimedia revision 0 -libmpeg2 535 -variants {universal no_sdl} variant_desc {no_sdl {Don't use libsdl}} portdir multimedia/libmpeg2 description {A free library for decoding mpeg-2 and mpeg-1 video streams.} homepage http://libmpeg2.sourceforge.net/ epoch 0 platforms darwin name libmpeg2 depends_lib port:libsdl maintainers nomaintainer long_description {libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams. The main goals in libmpeg2 development are conformance, speed, portability, and reuseability.} version 0.5.1 categories multimedia revision 0 +libmpeg2 523 +variants no_sdl variant_desc {no_sdl {Don't use libsdl}} portdir multimedia/libmpeg2 description {A free library for decoding mpeg-2 and mpeg-1 video streams.} homepage http://libmpeg2.sourceforge.net/ epoch 0 platforms darwin name libmpeg2 depends_lib port:libsdl maintainers nomaintainer long_description {libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams. The main goals in libmpeg2 development are conformance, speed, portability, and reuseability.} version 0.5.1 categories multimedia revision 0 libogg 436 variants {universal doc} variant_desc {doc {Install extra documentation}} portdir multimedia/libogg description {Ogg Bitstream Library} homepage http://www.vorbis.com/ epoch 0 platforms darwin name libogg maintainers {nox openmaintainer} long_description {Libogg is a library for manipulating ogg bitstreams. It handles both making ogg bitstreams and getting packets from ogg bitstreams.} version 1.1.3 categories multimedia revision 2 libquicktime 477 @@ -7824,6 +7824,8 @@ variants universal portdir python/py26-pygments description {Python syntax highlighter} homepage http://pygments.org epoch 0 platforms darwin name py26-pygments depends_lib port:py26-setuptools maintainers {openmaintainer erickt at macports.org} long_description {Pygments is a fast syntax highlighter written in Python with a special focus on details. Can highlight source code in many supported languages: Python, Ruby, PHP, HTML etc. Outputs arbitrarily-styled HTML or LaTeX, comes with many builtin styles.} version 1.0 categories devel revision 0 py26-setuptools 546 variants universal portdir python/py26-setuptools description {distutils enhancement for build and distribution} homepage http://peak.telecommunity.com/DevCenter/setuptools epoch 0 platforms darwin depends_lib port:python26 name py26-setuptools maintainers {mcalhoun openmaintainer} long_description {setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages.} categories {python devel} version 0.6c9 revision 0 +py26-zopeinterface 357 +variants universal portdir python/py26-zopeinterface description {Python interfaces for Zope} homepage http://www.zope.org/Products/ZopeInterface epoch 0 platforms darwin depends_lib port:python26 name py26-zopeinterface maintainers {mcalhoun openmaintainer} long_description {{Python interfaces for Zope}} categories {python zope} version 3.3.0 revision 0 py30-bsddb 365 variants universal portdir python/py30-bsddb description {Python bindings to the db46 library} homepage http://www.python.org/doc/current/lib/module-dbm.html epoch 0 platforms darwin depends_lib {port:python30 port:db46} name py30-bsddb maintainers mww long_description {{Python bindings to the db46 library}} categories {python databases} version 3.0b3 revision 0 py30-bz2 328 -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Dec 1 23:51:45 2008 From: portindex at macports.org (portindex at macports.org) Date: Mon, 1 Dec 2008 23:51:45 -0800 (PST) Subject: [42906] trunk/dports/PortIndex Message-ID: <20081202075147.7A0B27E171B@beta.macosforge.org> Revision: 42906 http://trac.macports.org/changeset/42906 Author: portindex at macports.org Date: 2008-12-01 23:51:45 -0800 (Mon, 01 Dec 2008) Log Message: ----------- Total number of ports parsed: 5169 Ports successfully parsed: 5169 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 06:51:50 UTC (rev 42905) +++ trunk/dports/PortIndex 2008-12-02 07:51:45 UTC (rev 42906) @@ -831,7 +831,7 @@ autogen 597 variants {universal darwin_8 darwin_6} portdir devel/autogen description {tool to simplify the creation and maintenance of programs} homepage http://autogen.sourceforge.net/ epoch 0 platforms darwin name autogen depends_lib {port:guile port:libiconv port:libxml2 port:zlib port:coreutils} maintainers mww long_description {AutoGen is a tool designed to simplify the creation and maintenance of programs that contain large amounts of repetitious text. It is especially valuable in programs that have several blocks of text that must be kept synchronized.} version 5.9.3 categories devel revision 0 automake 628 -variants universal depends_build port:autoconf portdir devel/automake description {the gnu automake utility for generating Makefile.in} homepage http://www.gnu.org/software/automake/ epoch 0 platforms {darwin freebsd} depends_lib path:bin/perl:perl5 name automake maintainers mww long_description {Automake is a tool for automatically generating Makefile.in files from files called Makefile.am. Each Makefile.am is basically a series of make variable definitions, with rules being thrown in occasionally. The generated Makefile.in files are compliant with the GNU Makefile standards.} version 1.10.1 categories devel revision 0 +variants universal depends_build port:autoconf portdir devel/automake description {the gnu automake utility for generating Makefile.in} homepage http://www.gnu.org/software/automake/ epoch 0 platforms {darwin freebsd} depends_lib path:bin/perl:perl5 name automake maintainers mww long_description {Automake is a tool for automatically generating Makefile.in files from files called Makefile.am. Each Makefile.am is basically a series of make variable definitions, with rules being thrown in occasionally. The generated Makefile.in files are compliant with the GNU Makefile standards.} version 1.10.2 categories devel revision 0 automake17 693 variants universal depends_build port:autoconf portdir devel/automake17 description {the gnu automake utility for generating Makefile.in} homepage http://www.gnu.org/software/automake/ epoch 0 platforms {darwin freebsd} depends_lib bin:perl:perl5.8 name automake17 maintainers springer.jonathan at gmail.com long_description {Automake is a tool for automatically generating Makefile.in files from files called Makefile.am. Each Makefile.am is basically a series of make variable definitions, with rules being thrown in occasionally. The generated Makefile.in files are compliant with the GNU Makefile standards. This is the compatibility version 1.7.x.} version 1.7.9 categories devel revision 1 automoc 448 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 00:02:15 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 00:02:15 -0800 (PST) Subject: [42907] trunk/dports/graphics/fontforge/Portfile Message-ID: <20081202080218.765A67E19B8@beta.macosforge.org> Revision: 42907 http://trac.macports.org/changeset/42907 Author: jeremyhu at macports.org Date: 2008-12-02 00:02:10 -0800 (Tue, 02 Dec 2008) Log Message: ----------- fontforge doesn't build universal. Modified Paths: -------------- trunk/dports/graphics/fontforge/Portfile Modified: trunk/dports/graphics/fontforge/Portfile =================================================================== --- trunk/dports/graphics/fontforge/Portfile 2008-12-02 07:51:45 UTC (rev 42906) +++ trunk/dports/graphics/fontforge/Portfile 2008-12-02 08:02:10 UTC (rev 42907) @@ -118,3 +118,5 @@ } livecheck.distname $name-source + +universal_variant no -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 00:25:59 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 00:25:59 -0800 (PST) Subject: [42908] trunk/dports/x11/wine/Portfile Message-ID: <20081202082600.7CDD27E1F67@beta.macosforge.org> Revision: 42908 http://trac.macports.org/changeset/42908 Author: jeremyhu at macports.org Date: 2008-12-02 00:25:57 -0800 (Tue, 02 Dec 2008) Log Message: ----------- wine is x86 only, so... not universal Modified Paths: -------------- trunk/dports/x11/wine/Portfile Modified: trunk/dports/x11/wine/Portfile =================================================================== --- trunk/dports/x11/wine/Portfile 2008-12-02 08:02:10 UTC (rev 42907) +++ trunk/dports/x11/wine/Portfile 2008-12-02 08:25:57 UTC (rev 42908) @@ -70,3 +70,5 @@ livecheck.check sourceforge livecheck.regex "Source Packages (\[0-9\]+\\.\[0-9\]*\[02468\](\\.\[0-9\]+)*) released.*" + +universal_variant no -------------- next part -------------- An HTML attachment was scrubbed... URL: From perry at macports.org Tue Dec 2 00:26:20 2008 From: perry at macports.org (perry at macports.org) Date: Tue, 2 Dec 2008 00:26:20 -0800 (PST) Subject: [42909] trunk/dports Message-ID: <20081202082620.8B0AF7E204C@beta.macosforge.org> Revision: 42909 http://trac.macports.org/changeset/42909 Author: perry at macports.org Date: 2008-12-02 00:26:20 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Updated the e-mail address for ports that I maintain. Modified Paths: -------------- trunk/dports/audio/libmusicbrainz/Portfile trunk/dports/devel/libdiscid/Portfile trunk/dports/java/gjdb/Portfile trunk/dports/perl/p5-class-insideout/Portfile trunk/dports/perl/p5-readonly-xs/Portfile trunk/dports/perl/p5-term-progressbar/Portfile trunk/dports/python/py-fchksum/Portfile Modified: trunk/dports/audio/libmusicbrainz/Portfile =================================================================== --- trunk/dports/audio/libmusicbrainz/Portfile 2008-12-02 08:25:57 UTC (rev 42908) +++ trunk/dports/audio/libmusicbrainz/Portfile 2008-12-02 08:26:20 UTC (rev 42909) @@ -5,7 +5,7 @@ name libmusicbrainz version 3.0.2 categories audio devel -maintainers whatisinaname.org:perry +maintainers perry description libmusicbrainz (also known as mb_client or MusicBrainz \ Client Library) long_description The libmusicbrainz (also known as mb_client or \ Modified: trunk/dports/devel/libdiscid/Portfile =================================================================== --- trunk/dports/devel/libdiscid/Portfile 2008-12-02 08:25:57 UTC (rev 42908) +++ trunk/dports/devel/libdiscid/Portfile 2008-12-02 08:26:20 UTC (rev 42909) @@ -5,7 +5,7 @@ name libdiscid version 0.2.2 categories devel -maintainers whatisinaname.org:perry +maintainers perry description libdiscid is a C library for creating MusicBrainz DiscIDs \ from audio CDs. long_description ${description} Modified: trunk/dports/java/gjdb/Portfile =================================================================== --- trunk/dports/java/gjdb/Portfile 2008-12-02 08:25:57 UTC (rev 42908) +++ trunk/dports/java/gjdb/Portfile 2008-12-02 08:26:20 UTC (rev 42909) @@ -5,7 +5,7 @@ name gjdb version 6.1.0 categories java devel -maintainers whatisinaname.org:perry +maintainers perry description GJDB is a modification of JDB, a debugger that comes with \ the public JDK (Java Development Kit) from Sun. long_description GJDB is a modification of JDB, a debugger that comes with \ Modified: trunk/dports/perl/p5-class-insideout/Portfile =================================================================== --- trunk/dports/perl/p5-class-insideout/Portfile 2008-12-02 08:25:57 UTC (rev 42908) +++ trunk/dports/perl/p5-class-insideout/Portfile 2008-12-02 08:26:20 UTC (rev 42909) @@ -7,7 +7,7 @@ name p5-class-insideout version 1.09 -maintainers whatisinaname.org:perry +maintainers perry description Class::InsideOut is a safe, simple inside-out object \ construction kit. long_description ${description} Modified: trunk/dports/perl/p5-readonly-xs/Portfile =================================================================== --- trunk/dports/perl/p5-readonly-xs/Portfile 2008-12-02 08:25:57 UTC (rev 42908) +++ trunk/dports/perl/p5-readonly-xs/Portfile 2008-12-02 08:26:20 UTC (rev 42909) @@ -6,7 +6,7 @@ perl5.setup Readonly-XS 1.04 version 1.04 -maintainers whatisinaname.org:perry +maintainers perry description Readonly::XS is a companion module for Readonly. It \ speeds up read-only scalar variables. long_description ${description} Modified: trunk/dports/perl/p5-term-progressbar/Portfile =================================================================== --- trunk/dports/perl/p5-term-progressbar/Portfile 2008-12-02 08:25:57 UTC (rev 42908) +++ trunk/dports/perl/p5-term-progressbar/Portfile 2008-12-02 08:26:20 UTC (rev 42909) @@ -6,7 +6,7 @@ perl5.setup Term-ProgressBar 2.09 version 2.09 -maintainers whatisinaname.org:perry +maintainers perry description Term::ProgressBar provides a progress meter on a standard \ terminal. long_description ${description} Modified: trunk/dports/python/py-fchksum/Portfile =================================================================== --- trunk/dports/python/py-fchksum/Portfile 2008-12-02 08:25:57 UTC (rev 42908) +++ trunk/dports/python/py-fchksum/Portfile 2008-12-02 08:26:20 UTC (rev 42909) @@ -8,7 +8,7 @@ revision 1 categories python platforms darwin -maintainers whatisinaname.org:perry +maintainers perry description Python module to find the checksum of files long_description fchksum is a Python module to find the checksum of \ files. Currently it supports md5, crc32, cksum, \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 00:31:53 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 00:31:53 -0800 (PST) Subject: [42910] trunk/dports/x11/xorg-xproto Message-ID: <20081202083153.E88B27E232B@beta.macosforge.org> Revision: 42910 http://trac.macports.org/changeset/42910 Author: jeremyhu at macports.org Date: 2008-12-02 00:31:53 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xorg-xproto: The new xproto doesn't need the fd_mask patch Modified Paths: -------------- trunk/dports/x11/xorg-xproto/Portfile Removed Paths: ------------- trunk/dports/x11/xorg-xproto/files/ Modified: trunk/dports/x11/xorg-xproto/Portfile =================================================================== --- trunk/dports/x11/xorg-xproto/Portfile 2008-12-02 08:26:20 UTC (rev 42909) +++ trunk/dports/x11/xorg-xproto/Portfile 2008-12-02 08:31:53 UTC (rev 42910) @@ -4,6 +4,7 @@ name xorg-xproto version 7.0.14 +revision 1 categories x11 devel maintainers bbyer at macports.org description X.org xproto @@ -19,8 +20,6 @@ sha1 cb8b35d290c4c57c78dad06b91136fef08e0f80c \ rmd160 e8b63f555ec3c4a91330679271fcd699a39fcdf9 -patchfiles patch-Xpoll.h.in.diff - post-destroot { set docdir ${prefix}/share/doc/${name}-${version} xinstall -d ${destroot}${docdir} -------------- next part -------------- An HTML attachment was scrubbed... URL: From perry at macports.org Tue Dec 2 00:32:19 2008 From: perry at macports.org (perry at macports.org) Date: Tue, 2 Dec 2008 00:32:19 -0800 (PST) Subject: [42911] trunk/dports/audio/libmusicbrainz/Portfile Message-ID: <20081202083219.86DE57E2421@beta.macosforge.org> Revision: 42911 http://trac.macports.org/changeset/42911 Author: perry at macports.org Date: 2008-12-02 00:32:18 -0800 (Tue, 02 Dec 2008) Log Message: ----------- audio/libmusicbrainz - Fixed a small typo in the long_description. Modified Paths: -------------- trunk/dports/audio/libmusicbrainz/Portfile Modified: trunk/dports/audio/libmusicbrainz/Portfile =================================================================== --- trunk/dports/audio/libmusicbrainz/Portfile 2008-12-02 08:31:53 UTC (rev 42910) +++ trunk/dports/audio/libmusicbrainz/Portfile 2008-12-02 08:32:18 UTC (rev 42911) @@ -8,7 +8,7 @@ maintainers perry description libmusicbrainz (also known as mb_client or MusicBrainz \ Client Library) -long_description The libmusicbrainz (also known as mb_client or \ +long_description libmusicbrainz (also known as mb_client or \ MusicBrainz Client Library) is a development library \ geared towards developers who wish to add MusicBrainz \ lookup capabilities to their applications. -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 00:51:47 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 00:51:47 -0800 (PST) Subject: [42912] trunk/dports/PortIndex Message-ID: <20081202085149.12A5E7E2870@beta.macosforge.org> Revision: 42912 http://trac.macports.org/changeset/42912 Author: portindex at macports.org Date: 2008-12-02 00:51:47 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5169 Ports successfully parsed: 5169 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 08:32:18 UTC (rev 42911) +++ trunk/dports/PortIndex 2008-12-02 08:51:47 UTC (rev 42912) @@ -366,8 +366,8 @@ variants universal description {A library to read and manipulate mp4 container format.} portdir audio/libmp4v2 homepage http://resare.com/libmp4v2 epoch 0 platforms darwin name libmp4v2 long_description {A library to read and manipulate mp4 container format, derived from mpeg4ip but free from the patent issues associated with that package.} maintainers {devans openmaintainer} categories audio version 1.5.0.1 revision 0 libmpcdec 267 variants universal description {Musepack Decoder Library} portdir audio/libmpcdec homepage http://www.musepack.net epoch 0 platforms darwin name libmpcdec long_description {{Musepack Decoder Library}} maintainers pmq categories {audio devel} version 1.2.6 revision 0 -libmusicbrainz 595 -variants universal depends_build port:cmake portdir audio/libmusicbrainz description {libmusicbrainz (also known as mb_client or MusicBrainz Client Library)} homepage http://musicbrainz.org/doc/libmusicbrainz epoch 0 platforms darwin depends_lib {port:libdiscid port:neon} name libmusicbrainz maintainers whatisinaname.org:perry long_description {The libmusicbrainz (also known as mb_client or MusicBrainz Client Library) is a development library geared towards developers who wish to add MusicBrainz lookup capabilities to their applications.} version 3.0.2 categories {audio devel} revision 0 +libmusicbrainz 573 +variants universal depends_build port:cmake portdir audio/libmusicbrainz description {libmusicbrainz (also known as mb_client or MusicBrainz Client Library)} homepage http://musicbrainz.org/doc/libmusicbrainz epoch 0 platforms darwin depends_lib {port:libdiscid port:neon} name libmusicbrainz maintainers perry long_description {libmusicbrainz (also known as mb_client or MusicBrainz Client Library) is a development library geared towards developers who wish to add MusicBrainz lookup capabilities to their applications.} version 3.0.2 categories {audio devel} revision 0 libofa 433 variants universal portdir audio/libofa description {Open Fingerprint Architecture} homepage http://code.google.com/p/musicip-libofa/ epoch 0 platforms darwin name libofa depends_lib {port:expat port:curl} maintainers nomaintainer long_description {LibOFA (Library Open Fingerprint Architecture) is an open-source audio fingerprint created and provided by MusicIP (http://www.musicip.com).} version 0.9.3 categories audio revision 0 libopendaap 548 @@ -1314,8 +1314,8 @@ variants {universal with_doxygen} variant_desc {with_doxygen {Create and install API docs}} portdir devel/libdatrie description {An Implementation of Double-Array Trie.} homepage http://linux.thai.net/~thep/datrie/datrie.html epoch 0 platforms darwin name libdatrie maintainers nomaintainer long_description {{An Implementation of Double-Array Trie.}} version 0.1.2 categories devel revision 0 libdevil 866 variants universal portdir devel/libdevil description {Library to develop applications with powerful image loading capabilities} homepage http://openil.sourceforge.net/ epoch 0 platforms darwin name libdevil depends_lib {port:lcms port:libmng port:libpng} maintainers {simon openmaintainer} long_description {Developer's Image Library (DevIL) is a programmer's library to develop applications with very powerful image loading capabilities, yet is easy for a developer to learn and use. Ultimate control of images is left to the developer, so unnecessary conversions, etc. are not performed. DevIL utilizes a simple, yet powerful, syntax. DevIL can load, save, convert, manipulate, filter and display a wide variety of image formats. Formerly known as OpenIL, but the name was changed due to SGI's request.} version 1.6.8-rc2 categories {devel multimedia} revision 0 -libdiscid 390 -variants universal description {libdiscid is a C library for creating MusicBrainz DiscIDs from audio CDs.} portdir devel/libdiscid homepage http://musicbrainz.org/doc/libdiscid epoch 0 platforms darwin name libdiscid long_description {{libdiscid is a C library for creating MusicBrainz DiscIDs from audio CDs.}} maintainers whatisinaname.org:perry categories devel version 0.2.2 revision 0 +libdiscid 372 +variants universal description {libdiscid is a C library for creating MusicBrainz DiscIDs from audio CDs.} portdir devel/libdiscid homepage http://musicbrainz.org/doc/libdiscid epoch 0 platforms darwin name libdiscid long_description {{libdiscid is a C library for creating MusicBrainz DiscIDs from audio CDs.}} maintainers perry categories devel version 0.2.2 revision 0 libdlna 569 variants {universal darwin} portdir devel/libdlna description {An implementation of DLNA standards} homepage http://libdlna.geexbox.org/ epoch 0 platforms darwin name libdlna depends_lib port:ffmpeg maintainers sfiera long_description {libdlna aims at being the reference open-source implementation of DLNA (Digital Living Network Alliance) standards. Its primary goal is to provide DLNA support to uShare, an embedded DLNA & UPnP A/V Media Server, but it will be used to build both DLNA servers and players in the long term.} version 0.2.3 categories devel revision 1 libds 421 @@ -2770,8 +2770,8 @@ variants universal portdir graphics/fnlib description {Fonts and font libraries necessary for Enlightenment} homepage http://www.enlightenment.org/ epoch 0 platforms darwin name fnlib depends_lib {lib:libX11.6:XFree86 lib:libjpeg.62:jpeg lib:libpng.3:libpng lib:libtiff.3:tiff lib:libImlib:imlib} long_description {This is a set of fonts and font libraries necessary for the latest release of Enlightenment.} maintainers nomaintainer version 0.5 categories graphics revision 1 fontconfig 499 variants {universal doc vera macosx} variant_desc {doc {Install extra documentation} vera {Install the Bitstream Vera font}} portdir graphics/fontconfig description {An XML-based font configuration API for X Windows} homepage http://fontconfig.org/ epoch 0 platforms darwin name fontconfig depends_lib {port:libiconv port:expat port:freetype} maintainers ryandesign long_description {Fontconfig is a library for configuring and customizing font access.} version 2.6.0 categories graphics revision 0 -fontforge 849 -variants {universal with_freetype_bytecode} variant_desc {with_freetype_bytecode {Enable support for bytecode interpreter}} portdir graphics/fontforge description {Outline and bitmap font editor/converter for many formats} homepage http://fontforge.sourceforge.net/ epoch 0 platforms darwin name fontforge depends_lib {lib:libX11:xorg port:freetype port:gettext port:giflib port:jpeg port:libiconv port:libpng port:libuninameslist port:libxml2 port:tiff port:zlib} maintainers nomaintainer long_description {FontForge allows you to edit outline and bitmap fonts. You may create new ones or modify old ones. It is also a format converter and can interconvert between PostScript (ascii & binary Type1, some Type3, some Type0), TrueType, OpenType (Type2), CID, SVG. Previously known as pfaedit.} version 20080927 categories {graphics fonts} revision 0 +fontforge 837 +variants with_freetype_bytecode variant_desc {with_freetype_bytecode {Enable support for bytecode interpreter}} portdir graphics/fontforge description {Outline and bitmap font editor/converter for many formats} homepage http://fontforge.sourceforge.net/ epoch 0 platforms darwin name fontforge depends_lib {lib:libX11:xorg port:freetype port:gettext port:giflib port:jpeg port:libiconv port:libpng port:libuninameslist port:libxml2 port:tiff port:zlib} maintainers nomaintainer long_description {FontForge allows you to edit outline and bitmap fonts. You may create new ones or modify old ones. It is also a format converter and can interconvert between PostScript (ascii & binary Type1, some Type3, some Type0), TrueType, OpenType (Type2), CID, SVG. Previously known as pfaedit.} version 20080927 categories {graphics fonts} revision 0 freeimage 529 variants {universal darwin_9} description {Library for FreeImage, a dependency-less graphics library} portdir graphics/freeimage homepage http://freeimage.sourceforge.net/ epoch 0 platforms macosx name freeimage long_description {FreeImage is a library for developers who would like to support most popular graphics image formats. Some highlights are: extremely simple in use, not limited to the local PC (unique FreeImageIO) and Plugin driven!} maintainers ryand-ruby at zenspider.com categories graphics version 3.10.0 revision 0 ftgl 438 @@ -3194,8 +3194,8 @@ variants universal depends_build bin:ant:apache-ant portdir java/ehcache description {Ehcache is a pure Java, in-process object cache.} homepage http://ehcache.sourceforge.net/ epoch 0 platforms darwin depends_lib bin:java:kaffe name ehcache maintainers {jberry openmaintainer} long_description {Ehcache is a pure Java, in-process cache with the following features: 1. Fast 2. Simple 3. Acts as a pluggable cache for Hibernate 4. Small foot print. Both in terms of size and memory requirements. 5. Minimal dependencies. 6. Fully documented. See the online Documentation, FAQ and the online JavaDoc. 7. Comprehensively Test Coverage. See the clover test report. 8. Scalable to hundreds of caches and large multi-cpu servers. 9. Provides LRU, LFU and FIFO cache eviction policies. 10. Available under the Apache 1.1 license. Ehcache's copyright and licensing has been reviewed and approved by the Apache Software Foundation, making ehcache suitable for use in Apache projects. 11. Production tested. All final versions of ehcache are production tested for several weeks on a large and very busy eCommerce site before release.} version 1.1 categories java revision 0 fast-md5 318 variants universal depends_build bin:ant:apache-ant portdir java/fast-md5 description {Fast MD5 Implementation in Java} homepage http://fast-md5.sourceforge.net/ epoch 0 platforms darwin name fast-md5 maintainers nomaintainer long_description {{Fast MD5 Implementation in Java}} version 2.6 categories java revision 0 -gjdb 840 -variants universal description {GJDB is a modification of JDB, a debugger that comes with the public JDK (Java Development Kit) from Sun.} portdir java/gjdb homepage http://www.cs.berkeley.edu/~hilfingr/gjdb.html epoch 0 platforms darwin name gjdb long_description {GJDB is a modification of JDB, a debugger that comes with the public JDK (Java Development Kit) from Sun. Unlike Sun's version, it also allows you to debug programs that take input from the terminal. The expression language has been extended to include much more of the language (including numerous features missing from jdb, such as array allocation, initialized array allocation, the .super operator, less fussy overload resolution, and numerous binary numeric and logical operations).} maintainers whatisinaname.org:perry categories {java devel} version 6.1.0 revision 0 +gjdb 822 +variants universal description {GJDB is a modification of JDB, a debugger that comes with the public JDK (Java Development Kit) from Sun.} portdir java/gjdb homepage http://www.cs.berkeley.edu/~hilfingr/gjdb.html epoch 0 platforms darwin name gjdb long_description {GJDB is a modification of JDB, a debugger that comes with the public JDK (Java Development Kit) from Sun. Unlike Sun's version, it also allows you to debug programs that take input from the terminal. The expression language has been extended to include much more of the language (including numerous features missing from jdb, such as array allocation, initialized array allocation, the .super operator, less fussy overload resolution, and numerous binary numeric and logical operations).} maintainers perry categories {java devel} version 6.1.0 revision 0 gnu-classpath 498 variants {universal gtk darwin_7} portdir java/gnu-classpath description {Essential libraries for Java.} homepage http://www.gnu.org/software/classpath/classpath.html epoch 0 platforms darwin name gnu-classpath depends_lib port:libiconv maintainers nomaintainer long_description {GNU Classpath, Essential Libraries for Java, is a GNU project to create free core class libraries for use with virtual machines and compilers for the java programming language.} version 0.93 categories java revision 0 gnu-classpath-inetlib 417 @@ -5540,8 +5540,8 @@ variants universal portdir perl/p5-class-errorhandler description {Base class for error handling} homepage http://search.cpan.org/dist/Class-ErrorHandler/ epoch 0 platforms darwin name p5-class-errorhandler depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers nomaintainer long_description {{Base class for error handling}} version 0.01 categories perl revision 0 p5-class-factory-util 430 variants universal portdir perl/p5-class-factory-util description {Provide utility methods for factory classes} homepage http://search.cpan.org/dist/Class-Factory-Util/ epoch 0 platforms darwin name p5-class-factory-util depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {narf_tm openmaintainer} long_description {This module exports a method that is useful for factory classes.} version 1.7 categories perl revision 0 -p5-class-insideout 466 -variants universal portdir perl/p5-class-insideout description {Class::InsideOut is a safe, simple inside-out object construction kit.} homepage http://search.cpan.org/~dagolden/Class-InsideOut-1.09/ epoch 0 platforms darwin name p5-class-insideout depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers whatisinaname.org:perry long_description {{Class::InsideOut is a safe, simple inside-out object construction kit.}} version 1.09 categories perl revision 0 +p5-class-insideout 448 +variants universal portdir perl/p5-class-insideout description {Class::InsideOut is a safe, simple inside-out object construction kit.} homepage http://search.cpan.org/~dagolden/Class-InsideOut-1.09/ epoch 0 platforms darwin name p5-class-insideout depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers perry long_description {{Class::InsideOut is a safe, simple inside-out object construction kit.}} version 1.09 categories perl revision 0 p5-class-inspector 720 variants universal portdir perl/p5-class-inspector description {Get information about a class and its structure} homepage http://search.cpan.org/dist/Class-Inspector/ epoch 0 platforms darwin name p5-class-inspector depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {narf_tm openmaintainer} long_description {Class::Inspector allows you to get information about a loaded class. Most or all of this information can be found in other ways, but they aren't always very friendly, and usually involve a relatively high level of Perl wizardry, or strange and unusual looking code. Class::Inspector attempts to provide an easier, more friendly interface to this information.} version 1.23 categories perl revision 0 p5-class-loader 378 @@ -6316,8 +6316,8 @@ variants universal portdir perl/p5-razor-agents description {a distributed, collaborative, spam detection and filter network} homepage http://razor.sourceforge.net/ epoch 0 platforms darwin name p5-razor-agents depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-digest-nilsimsa port:p5-digest-sha1 port:p5-net-dns port:p5-uri} maintainers nomaintainer long_description {Vipul's Razor is a distributed, collaborative, spam detection and filtering network. Through user contribution, Razor establishes a distributed and constantly updating catalogue of spam in propagation that is consulted by email clients to filter out known spam. Detection is done with statistical and randomized signatures that efficiently spot mutating spam content. User input is validated through reputation assignments based on consensus on report and revoke assertions which in turn is used for computing confidence values associated with individual signatures.} version 2.36 categories {perl mail} revision 3 p5-readonly 461 variants universal portdir perl/p5-readonly description {Facility for creating read-only scalars, arrays, hashes.} homepage http://search.cpan.org/dist/Readonly/ epoch 0 platforms darwin name p5-readonly depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {narf_tm openmaintainer} long_description {This is a facility for creating non-modifiable variables. This is useful for configuration files, headers, etc.} version 1.03 categories perl revision 0 -p5-readonly-xs 506 -variants universal portdir perl/p5-readonly-xs description {Readonly::XS is a companion module for Readonly. It speeds up read-only scalar variables.} homepage http://search.cpan.org/~roode/Readonly-XS-1.04/ epoch 0 platforms darwin name p5-readonly-xs depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-readonly} maintainers whatisinaname.org:perry long_description {{Readonly::XS is a companion module for Readonly. It speeds up read-only scalar variables.}} version 1.04 categories perl revision 0 +p5-readonly-xs 488 +variants universal portdir perl/p5-readonly-xs description {Readonly::XS is a companion module for Readonly. It speeds up read-only scalar variables.} homepage http://search.cpan.org/~roode/Readonly-XS-1.04/ epoch 0 platforms darwin name p5-readonly-xs depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-readonly} maintainers perry long_description {{Readonly::XS is a companion module for Readonly. It speeds up read-only scalar variables.}} version 1.04 categories perl revision 0 p5-regexp-assemble 577 variants universal portdir perl/p5-regexp-assemble description {Combine several regular expressions into one} homepage http://search.cpan.org/dist/Regexp-Assemble/ epoch 0 platforms darwin name p5-regexp-assemble depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers nomaintainer long_description {Regexp::Assemble allows you to take a number of regular expressions and assemble them into a single regular expression (or RE) that will match everything that any of the individual REs match, only what they match and nothing else.} version 0.28 categories perl revision 0 p5-regexp-common 392 @@ -6394,8 +6394,8 @@ variants {universal DBI} portdir perl/p5-template-toolkit description {Template processing system modules} homepage http://www.template-toolkit.org/ epoch 0 platforms darwin name p5-template-toolkit depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-appconfig port:p5-file-homedir port:p5-mac-carbon} maintainers nomaintainer long_description {The Template Toolkit is a collection of modules which implement a fast, flexible, powerful and extensible template processing system. It was originally designed and remains primarily useful for generating dynamic web content, but it can be used equally well for processing any other kind of text based documents: HTML, XML, POD, PostScript, LaTeX, and so on.} version 2.19 categories perl revision 0 p5-term-gnuplot 479 variants universal portdir perl/p5-term-gnuplot description {Low-level graphics using Gnuplot drawing routines} homepage http://search.cpan.org/dist/Term-Gnuplot/ epoch 0 platforms darwin name p5-term-gnuplot depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:libpng port:gd2 lib:libX11.6:XFree86} maintainers vincent-opdarw at vinc17.org long_description {Perl module to do low-level graphics using Gnuplot drawing routines.} version 0.90380905 categories {perl math} revision 0 -p5-term-progressbar 508 -variants universal portdir perl/p5-term-progressbar description {Term::ProgressBar provides a progress meter on a standard terminal.} homepage http://search.cpan.org/~fluffy/Term-ProgressBar-2.09/ epoch 0 platforms darwin name p5-term-progressbar depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-class-methodmaker port:p5-term-readkey} maintainers whatisinaname.org:perry long_description {{Term::ProgressBar provides a progress meter on a standard terminal.}} version 2.09 categories perl revision 0 +p5-term-progressbar 490 +variants universal portdir perl/p5-term-progressbar description {Term::ProgressBar provides a progress meter on a standard terminal.} homepage http://search.cpan.org/~fluffy/Term-ProgressBar-2.09/ epoch 0 platforms darwin name p5-term-progressbar depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-class-methodmaker port:p5-term-readkey} maintainers perry long_description {{Term::ProgressBar provides a progress meter on a standard terminal.}} version 2.09 categories perl revision 0 p5-term-prompt 411 variants universal portdir perl/p5-term-prompt description {Perl extension for prompting a user for information} homepage http://search.cpan.org/dist/Term-Prompt/ epoch 0 platforms darwin name p5-term-prompt depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-term-readkey} maintainers ecronin long_description {{Perl extension for prompting a user for information}} version 1.04 categories perl revision 0 p5-term-readkey 394 @@ -6860,8 +6860,8 @@ variants universal portdir python/py-ezpycrypto description {high-level encryption python module building upon py-crypto} homepage http://www.freenet.org.nz/ezPyCrypto/ epoch 0 platforms darwin depends_lib {port:python24 port:py-crypto} name py-ezpycrypto maintainers nomaintainer long_description {ezPyCrypto is a high-level encryption library for Python that makes your job of securing data easy and effortless. As a reaction to some other crypto libraries, which can be painfully complex to understand and use, ezPyCrypto has been designed from the ground up for absolute ease of use, without compromising security.} categories {python security} version 0.1.1 revision 1 py-f2py 642 variants universal portdir python/py-f2py description {Fortran to Python Interface Generator} homepage http://cens.ioc.ee/projects/f2py2e epoch 0 platforms darwin depends_lib {port:python24 port:py-numeric} name py-f2py maintainers nomaintainer long_description {The Fortran to Python Interface Generator, or F2PY for short, is a command line tool (f2py) for generating Python C/API modules for wrapping Fortran 77/90/95 routines, accessing common blocks from Python, and calling Python functions from Fortran (call-backs). It also supports interfacing routines from Fortran 90/95 modules.} categories python version 2.43.239_1831 revision 0 -py-fchksum 483 -variants universal portdir python/py-fchksum description {Python module to find the checksum of files} homepage http://users.dakotacom.net/~donut/programs/fchksum.html epoch 0 platforms darwin depends_lib {port:python24 lib:libz:zlib} name py-fchksum maintainers whatisinaname.org:perry long_description {fchksum is a Python module to find the checksum of files. Currently it supports md5, crc32, cksum, bsd-style sum, and sysv-style sum.} categories python version 1.7.1 revision 1 +py-fchksum 465 +variants universal portdir python/py-fchksum description {Python module to find the checksum of files} homepage http://users.dakotacom.net/~donut/programs/fchksum.html epoch 0 platforms darwin depends_lib {port:python24 lib:libz:zlib} name py-fchksum maintainers perry long_description {fchksum is a Python module to find the checksum of files. Currently it supports md5, crc32, cksum, bsd-style sum, and sysv-style sum.} categories python version 1.7.1 revision 1 py-fcrypt 589 variants universal portdir python/py-fcrypt description {python implementation of the Unix DES password crypt function} homepage http://home.clear.net.nz/pages/c.evans/sw/#python-fcrypt epoch 0 platforms darwin depends_lib port:python24 name py-fcrypt maintainers nomaintainer long_description {A pure Python implementation of the Unix DES password crypt function, based on Eric Young's fcrypt.c. It works with any version of Python from version 1.5 or higher, and because it's pure Python it doesn't need a C compiler to install it.} categories {python sysutils} version 1.3.1 revision 1 py-feedparser 497 @@ -10034,8 +10034,8 @@ portdir x11/vtwm variants universal description {Twm with a virtual desktop and optional Motif-like features} platforms darwin name vtwm version 5.4.6a categories x11 revision 0 epoch 0 maintainers mdales at mac.com windowmaker 810 variants {universal candy darwin_i386} portdir x11/windowmaker description {Window Maker is a X11 window manager supporting GNUstep} homepage http://www.windowmaker.info/ epoch 0 platforms {darwin freebsd} name windowmaker depends_lib {lib:libX11.6:XFree86 port:Xft2 port:gettext port:libpng path:include/gif_lib.h:giflib port:tiff} maintainers nomaintainer long_description {Window Maker is an X11 window manager originally designed to provide integration support for the GNUstep Desktop Environment. In every way possible, it reproduces the elegant look and feel of the {NEXTSTEP[tm]} user interface. It is fast, feature rich, easy to configure, and easy to use. It is also free software, with contributions being made by programmers from around the world.} version 0.92.0 categories {x11-wm x11} revision 2 -wine 524 -variants universal depends_build port:pkgconfig portdir x11/wine description {Wine Is Not an Emulator} homepage http://www.winehq.com/ epoch 0 platforms darwin name wine depends_lib {lib:libX11.6:XFree86 port:expat port:fontconfig port:fontforge port:freetype port:jpeg port:libiconv port:libxml2 port:libxslt port:ncurses port:openssl port:xrender port:zlib} maintainers {ryandesign jwa openmaintainer} long_description {Wine is an implementation of the Windows APIs on top of X11.} version 1.0.1 categories x11 revision 1 +wine 505 +depends_build port:pkgconfig portdir x11/wine description {Wine Is Not an Emulator} homepage http://www.winehq.com/ epoch 0 platforms darwin name wine depends_lib {lib:libX11.6:XFree86 port:expat port:fontconfig port:fontforge port:freetype port:jpeg port:libiconv port:libxml2 port:libxslt port:ncurses port:openssl port:xrender port:zlib} maintainers {ryandesign jwa openmaintainer} long_description {Wine is an implementation of the Windows APIs on top of X11.} version 1.0.1 categories x11 revision 1 wine-devel 536 variants universal depends_build port:pkgconfig portdir x11/wine-devel description {Wine Is Not an Emulator} homepage http://www.winehq.com/ epoch 0 platforms darwin name wine-devel depends_lib {lib:libX11.6:XFree86 port:expat port:fontconfig port:fontforge port:freetype port:jpeg port:libiconv port:libxml2 port:libxslt port:ncurses port:openssl port:xrender port:zlib} maintainers {ryandesign jwa openmaintainer} long_description {Wine is an implementation of the Windows APIs on top of X11.} version 1.1.9 categories x11 revision 0 winetricks 515 @@ -10171,7 +10171,7 @@ xorg-xineramaproto 276 portdir x11/xorg-xineramaproto description {X.org xineramaproto} platforms darwin name xorg-xineramaproto version 1.1.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for Xinerama extension to X11} xorg-xproto 289 -portdir x11/xorg-xproto description {X.org xproto} platforms darwin name xorg-xproto version 7.0.14 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers bbyer at macports.org long_description {The X.org xproto package contains miscellaneous X11 prototype headers.} +portdir x11/xorg-xproto description {X.org xproto} platforms darwin name xorg-xproto version 7.0.14 categories {x11 devel} homepage http://www.x.org revision 1 epoch 0 maintainers bbyer at macports.org long_description {The X.org xproto package contains miscellaneous X11 prototype headers.} xorg-xtrans 286 variants universal description {X.org xtrans} portdir x11/xorg-xtrans homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-xtrans long_description {X Network Transport layer shared code} maintainers jeremyhu at macports.org categories {x11 devel} version 1.2.2 revision 0 xping 267 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Dec 2 01:05:32 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 01:05:32 -0800 (PST) Subject: [42913] trunk/dports/x11/wine/Portfile Message-ID: <20081202090533.18A587E2AEC@beta.macosforge.org> Revision: 42913 http://trac.macports.org/changeset/42913 Author: ryandesign at macports.org Date: 2008-12-02 01:05:31 -0800 (Tue, 02 Dec 2008) Log Message: ----------- wine: reformatting: move 'universal_variant no' up Modified Paths: -------------- trunk/dports/x11/wine/Portfile Modified: trunk/dports/x11/wine/Portfile =================================================================== --- trunk/dports/x11/wine/Portfile 2008-12-02 08:51:47 UTC (rev 42912) +++ trunk/dports/x11/wine/Portfile 2008-12-02 09:05:31 UTC (rev 42913) @@ -12,6 +12,7 @@ use_bzip2 yes build.target depend all use_parallel_build yes +universal_variant no description \ Wine Is Not an Emulator @@ -70,5 +71,3 @@ livecheck.check sourceforge livecheck.regex "Source Packages (\[0-9\]+\\.\[0-9\]*\[02468\](\\.\[0-9\]+)*) released.*" - -universal_variant no -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Dec 2 01:07:50 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 01:07:50 -0800 (PST) Subject: [42914] trunk/dports/x11/wine-devel Message-ID: <20081202090750.546F77E2BB1@beta.macosforge.org> Revision: 42914 http://trac.macports.org/changeset/42914 Author: ryandesign at macports.org Date: 2008-12-02 01:07:49 -0800 (Tue, 02 Dec 2008) Log Message: ----------- wine-devel: add 'universal_variant no' as in wine port, because wine is for x86 only Modified Paths: -------------- trunk/dports/x11/wine-devel/Portfile Property Changed: ---------------- trunk/dports/x11/wine-devel/ trunk/dports/x11/wine-devel/files/wine.in Property changes on: trunk/dports/x11/wine-devel ___________________________________________________________________ Modified: svn:mergeinfo - + /trunk/dports/x11/wine:42908,42913 Modified: trunk/dports/x11/wine-devel/Portfile =================================================================== --- trunk/dports/x11/wine-devel/Portfile 2008-12-02 09:05:31 UTC (rev 42913) +++ trunk/dports/x11/wine-devel/Portfile 2008-12-02 09:07:49 UTC (rev 42914) @@ -14,6 +14,7 @@ use_bzip2 yes build.target depend all use_parallel_build yes +universal_variant no description \ Wine Is Not an Emulator Property changes on: trunk/dports/x11/wine-devel/files/wine.in ___________________________________________________________________ Deleted: svn:mergeinfo - -------------- next part -------------- An HTML attachment was scrubbed... URL: From mww at macports.org Tue Dec 2 01:17:50 2008 From: mww at macports.org (mww at macports.org) Date: Tue, 2 Dec 2008 01:17:50 -0800 (PST) Subject: [42915] trunk/dports/net/aria2/Portfile Message-ID: <20081202091750.CB7E57E2D97@beta.macosforge.org> Revision: 42915 http://trac.macports.org/changeset/42915 Author: mww at macports.org Date: 2008-12-02 01:17:49 -0800 (Tue, 02 Dec 2008) Log Message: ----------- version 1.0.1 Modified Paths: -------------- trunk/dports/net/aria2/Portfile Modified: trunk/dports/net/aria2/Portfile =================================================================== --- trunk/dports/net/aria2/Portfile 2008-12-02 09:07:49 UTC (rev 42914) +++ trunk/dports/net/aria2/Portfile 2008-12-02 09:17:49 UTC (rev 42915) @@ -3,7 +3,7 @@ PortSystem 1.0 name aria2 -version 1.0.0 +version 1.0.1 categories net platforms darwin maintainers mww @@ -13,7 +13,7 @@ homepage http://aria2.sourceforge.net/ master_sites sourceforge -checksums sha1 982eb7cfada8dbc9e43e48072fb581eddfc1d722 +checksums sha1 066c950663afa7eff1e37ffc992b1c89f5d96b85 distname ${name}c-${version} use_bzip2 yes -------------- next part -------------- An HTML attachment was scrubbed... URL: From febeling at macports.org Tue Dec 2 01:22:36 2008 From: febeling at macports.org (febeling at macports.org) Date: Tue, 2 Dec 2008 01:22:36 -0800 (PST) Subject: [42916] trunk/dports/lang/ruby19/Portfile Message-ID: <20081202092236.320DC7E2E69@beta.macosforge.org> Revision: 42916 http://trac.macports.org/changeset/42916 Author: febeling at macports.org Date: 2008-12-02 01:22:35 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Upgrade of ruby19 (closes #17474). Thanks to neufelry for the patch. Modified Paths: -------------- trunk/dports/lang/ruby19/Portfile Modified: trunk/dports/lang/ruby19/Portfile =================================================================== --- trunk/dports/lang/ruby19/Portfile 2008-12-02 09:17:49 UTC (rev 42915) +++ trunk/dports/lang/ruby19/Portfile 2008-12-02 09:22:35 UTC (rev 42916) @@ -3,7 +3,7 @@ PortSystem 1.0 name ruby19 -version 1.9.1-preview1 +version 1.9.1-preview2 categories lang ruby maintainers febeling openmaintainer @@ -24,7 +24,7 @@ use_bzip2 yes distname ruby-${version} -checksums md5 0d51dc949bb6b438ad4ebfabbb5f6754 +checksums md5 62126475998ede5318c1bc82c40d5f48 use_parallel_build no # breaks occasionally 1.9.0-1 depends_lib port:libiconv \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mww at macports.org Tue Dec 2 01:31:45 2008 From: mww at macports.org (mww at macports.org) Date: Tue, 2 Dec 2008 01:31:45 -0800 (PST) Subject: [42917] trunk/dports/lang/gcc44/Portfile Message-ID: <20081202093146.0277E7E2F5B@beta.macosforge.org> Revision: 42917 http://trac.macports.org/changeset/42917 Author: mww at macports.org Date: 2008-12-02 01:31:45 -0800 (Tue, 02 Dec 2008) Log Message: ----------- version 4.4-20081128 Modified Paths: -------------- trunk/dports/lang/gcc44/Portfile Modified: trunk/dports/lang/gcc44/Portfile =================================================================== --- trunk/dports/lang/gcc44/Portfile 2008-12-02 09:22:35 UTC (rev 42916) +++ trunk/dports/lang/gcc44/Portfile 2008-12-02 09:31:45 UTC (rev 42917) @@ -3,7 +3,7 @@ PortSystem 1.0 name gcc44 -version 4.4-20081121 +version 4.4-20081128 platforms darwin categories lang maintainers mww @@ -25,11 +25,11 @@ set dobjc gcc-objc-${version}.tar.bz2 distfiles ${dcore} ${dfort} ${dcxx} ${djava} ${dobjc} -checksums ${dcore} sha1 97003b1fd8affea972c13cdc46be6e5fd9dc53ed \ - ${dfort} sha1 20bf94a0dc36fa106910db4f6c77c5522d2b5fd5 \ - ${dcxx} sha1 4f3e72f29887295855f0e8deee426f3702af16e6 \ - ${djava} sha1 16fe8e2b8df6eb38bc151948b8cfe4d306c2b498 \ - ${dobjc} sha1 5d514649476ce7d03045cc3d1e3a0e91c2c79c4d +checksums ${dcore} sha1 143c5a9cac3f7a2800dba6f81ef8505ec3a27ab3 \ + ${dfort} sha1 97678adf899c7a05ba4f14eb611af31f9735c085 \ + ${dcxx} sha1 9dcb593a3699ada0757673422237a2a6d09a91c4 \ + ${djava} sha1 4ab0812d67add50c5d9f55c439ac447504e6b1fd \ + ${dobjc} sha1 a990aa7ebc64b844e9b813e1ccdab4e231c987a8 use_bzip2 yes -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 01:52:30 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 01:52:30 -0800 (PST) Subject: [42918] trunk/dports/PortIndex Message-ID: <20081202095234.A807F7E3219@beta.macosforge.org> Revision: 42918 http://trac.macports.org/changeset/42918 Author: portindex at macports.org Date: 2008-12-02 01:52:27 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5169 Ports successfully parsed: 5169 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 09:31:45 UTC (rev 42917) +++ trunk/dports/PortIndex 2008-12-02 09:52:27 UTC (rev 42918) @@ -3757,7 +3757,7 @@ gcc43 402 variants {universal powerpc darwin_8_i386} portdir lang/gcc43 description {The GNU compiler collection} homepage http://gcc.gnu.org/ epoch 0 platforms darwin name gcc43 depends_lib {port:gmp port:mpfr port:libiconv} maintainers mww long_description {The GNU compiler collection, including front ends for C, C++, Objective-C, Objective-C++, Java and Fortran95.} version 4.3.2 categories lang revision 0 gcc44 872 -variants {universal powerpc odcctools gfortran java} variant_desc {odcctools {Use the odcctools instead of the system provided ones - does not work for x64 currently!} gfortran {Enables Fortran/gfortran; this language will be enabled in the final version - this variant is completely untested!} java {Enables Java/gcj; this language will be enabled in the final version - this variant is completely untested!}} portdir lang/gcc44 description {The GNU compiler collection, prerelease BETA} homepage http://gcc.gnu.org/ epoch 0 platforms darwin name gcc44 depends_lib {port:gmp port:mpfr port:libiconv} maintainers mww long_description {The GNU compiler collection, including front ends for C, C++, Objective-C and Objective-C++. This is a prerelease BETA version and does not have all available language front ends enabled.} version 4.4-20081121 categories lang revision 0 +variants {universal powerpc odcctools gfortran java} variant_desc {odcctools {Use the odcctools instead of the system provided ones - does not work for x64 currently!} gfortran {Enables Fortran/gfortran; this language will be enabled in the final version - this variant is completely untested!} java {Enables Java/gcj; this language will be enabled in the final version - this variant is completely untested!}} portdir lang/gcc44 description {The GNU compiler collection, prerelease BETA} homepage http://gcc.gnu.org/ epoch 0 platforms darwin name gcc44 depends_lib {port:gmp port:mpfr port:libiconv} maintainers mww long_description {The GNU compiler collection, including front ends for C, C++, Objective-C and Objective-C++. This is a prerelease BETA version and does not have all available language front ends enabled.} version 4.4-20081128 categories lang revision 0 gccxml 351 variants universal depends_build port:cmake portdir lang/gccxml description {generates XML description of C++ code} homepage http://www.gccxml.org/ epoch 0 platforms darwin name gccxml maintainers nomaintainer long_description {generates an XML description of a C++ program from GCC's internal representation} version 0.6.0 categories lang revision 0 gcj34 546 @@ -3941,7 +3941,7 @@ ruby 812 variants {universal darwin darwin_7 tk mactk thread_hooks no_doc} variant_desc {tk {enable tk support} mactk {enable MacTk (Tk.framework without X11) support} thread_hooks {apply Apple's thread_hooks patch} no_doc {do not install rdoc documents}} portdir lang/ruby description {Powerful and clean object-oriented scripting language} homepage http://www.ruby-lang.org/ epoch 0 platforms darwin name ruby depends_lib {port:libiconv port:readline port:openssl port:zlib port:ncurses} maintainers kimuraw long_description {Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward, extensible, and portable.} version 1.8.7-p72 categories {lang ruby} revision 2 ruby19 906 -variants {universal c_api_docs tk mactk} variant_desc {c_api_docs {Generate documentation for Ruby C API} tk {Build using MacPorts Tk} mactk {Build using MacOS X Tk Framework}} portdir lang/ruby19 description {Powerful and clean object-oriented scripting language} homepage http://www.ruby-lang.org/ epoch 0 platforms darwin name ruby19 depends_lib {port:libiconv port:readline port:openssl port:zlib port:ncurses} maintainers {febeling openmaintainer} long_description {Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward, extensible, and portable. Version 1.9 contains a new VM called YARV, is faster and slightly incompatible from version 1.8. It has not yet been released as stable.} version 1.9.1-preview1 categories {lang ruby} revision 0 +variants {universal c_api_docs tk mactk} variant_desc {c_api_docs {Generate documentation for Ruby C API} tk {Build using MacPorts Tk} mactk {Build using MacOS X Tk Framework}} portdir lang/ruby19 description {Powerful and clean object-oriented scripting language} homepage http://www.ruby-lang.org/ epoch 0 platforms darwin name ruby19 depends_lib {port:libiconv port:readline port:openssl port:zlib port:ncurses} maintainers {febeling openmaintainer} long_description {Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward, extensible, and portable. Version 1.9 contains a new VM called YARV, is faster and slightly incompatible from version 1.8. It has not yet been released as stable.} version 1.9.1-preview2 categories {lang ruby} revision 0 sbcl 739 variants {universal powerpc darwin_8_i386 darwin_9_i386 html test threads} variant_desc {html {Builds the SBCL and ASDF documentation as HTML} test {enable test suite} threads {enable threaded runtime}} portdir lang/sbcl description {The Steel Bank Common Lisp system} homepage http://www.sbcl.org epoch 0 platforms darwin name sbcl maintainers {gwright at macports.org waqar at macports.org} long_description {Steel Bank Common Lisp (SBCL) is a Open Source development system for ANSI Common Lisp. It provides an interactive environment including an integrated native compiler, interpreter, and debugger. (And it, and its generated code, can also play nicely with Unix when running noninteractively.)} version 1.0.22 categories lang revision 0 scala 537 @@ -4627,7 +4627,7 @@ argus-monitor 621 variants {universal apple_postfix} portdir net/argus-monitor description {The All Seeing System and Network Monitoring Software} homepage http://argus.tcp4me.com/ epoch 0 platforms darwin name argus-monitor depends_lib {port:perl5.8 port:postfix port:openssl port:freetype port:gd2 port:fping port:db44 port:p5-dbi port:p5-berkeleydb port:p5-socket6 port:p5-gd port:p5-time-hires port:p5-net-ssleay port:p5-digest-hmac port:p5-digest-md5 port:p5-digest-sha1 port:p5-crypt-des} maintainers markd at macports.org long_description {{The All Seeing System and Network Monitoring Software}} version 3.5 categories net revision 0 aria2 444 -variants universal portdir net/aria2 description {download utility with resuming and segmented downloading} homepage http://aria2.sourceforge.net/ epoch 0 platforms darwin name aria2 depends_lib {port:gettext port:libiconv port:gnutls port:libxml2} maintainers mww long_description {aria2 is a download utility with resuming and segmented downloading. Supported protocols are HTTP/HTTPS/FTP/BitTorrent.} version 1.0.0 categories net revision 0 +variants universal portdir net/aria2 description {download utility with resuming and segmented downloading} homepage http://aria2.sourceforge.net/ epoch 0 platforms darwin name aria2 depends_lib {port:gettext port:libiconv port:gnutls port:libxml2} maintainers mww long_description {aria2 is a download utility with resuming and segmented downloading. Supported protocols are HTTP/HTTPS/FTP/BitTorrent.} version 1.0.1 categories net revision 0 arla 544 variants {universal krbafs} portdir net/arla description {free AFS implementation from KTH} homepage http://www.stacken.kth.se/projekt/arla/ epoch 0 platforms darwin name arla depends_lib lib:krbafs:krbafs maintainers nomaintainer long_description {Arla is a free AFS client implementation. The main goal of the Arla project is to make a fully functional client with all capabilities of commercial AFS. Other planned and implemented things are all the normal management tools and a server.} version 0.35.11 categories {net security} revision 1 arpd 339 @@ -10036,8 +10036,8 @@ variants {universal candy darwin_i386} portdir x11/windowmaker description {Window Maker is a X11 window manager supporting GNUstep} homepage http://www.windowmaker.info/ epoch 0 platforms {darwin freebsd} name windowmaker depends_lib {lib:libX11.6:XFree86 port:Xft2 port:gettext port:libpng path:include/gif_lib.h:giflib port:tiff} maintainers nomaintainer long_description {Window Maker is an X11 window manager originally designed to provide integration support for the GNUstep Desktop Environment. In every way possible, it reproduces the elegant look and feel of the {NEXTSTEP[tm]} user interface. It is fast, feature rich, easy to configure, and easy to use. It is also free software, with contributions being made by programmers from around the world.} version 0.92.0 categories {x11-wm x11} revision 2 wine 505 depends_build port:pkgconfig portdir x11/wine description {Wine Is Not an Emulator} homepage http://www.winehq.com/ epoch 0 platforms darwin name wine depends_lib {lib:libX11.6:XFree86 port:expat port:fontconfig port:fontforge port:freetype port:jpeg port:libiconv port:libxml2 port:libxslt port:ncurses port:openssl port:xrender port:zlib} maintainers {ryandesign jwa openmaintainer} long_description {Wine is an implementation of the Windows APIs on top of X11.} version 1.0.1 categories x11 revision 1 -wine-devel 536 -variants universal depends_build port:pkgconfig portdir x11/wine-devel description {Wine Is Not an Emulator} homepage http://www.winehq.com/ epoch 0 platforms darwin name wine-devel depends_lib {lib:libX11.6:XFree86 port:expat port:fontconfig port:fontforge port:freetype port:jpeg port:libiconv port:libxml2 port:libxslt port:ncurses port:openssl port:xrender port:zlib} maintainers {ryandesign jwa openmaintainer} long_description {Wine is an implementation of the Windows APIs on top of X11.} version 1.1.9 categories x11 revision 0 +wine-devel 517 +depends_build port:pkgconfig portdir x11/wine-devel description {Wine Is Not an Emulator} homepage http://www.winehq.com/ epoch 0 platforms darwin name wine-devel depends_lib {lib:libX11.6:XFree86 port:expat port:fontconfig port:fontforge port:freetype port:jpeg port:libiconv port:libxml2 port:libxslt port:ncurses port:openssl port:xrender port:zlib} maintainers {ryandesign jwa openmaintainer} long_description {Wine is an implementation of the Windows APIs on top of X11.} version 1.1.9 categories x11 revision 0 winetricks 515 description {downloads and installs various redistributable runtime libraries} portdir x11/winetricks homepage http://www.kegel.com/wine/ epoch 0 depends_run {path:bin/wine:wine port:cabextract port:openssl bin:curl:curl} platforms darwin name winetricks maintainers ryandesign long_description {winetricks can help you prepare your system for Windows applications that mistakenly assume all users' systems have all the needed redistributable runtime libraries or fonts.} version 20081201 categories x11 revision 0 wm-extra 338 -------------- next part -------------- An HTML attachment was scrubbed... URL: From macsforever2000 at macports.org Tue Dec 2 01:58:33 2008 From: macsforever2000 at macports.org (macsforever2000 at macports.org) Date: Tue, 2 Dec 2008 01:58:33 -0800 (PST) Subject: [42919] trunk/dports/x11/xplanet/Portfile Message-ID: <20081202095833.C61C07E3273@beta.macosforge.org> Revision: 42919 http://trac.macports.org/changeset/42919 Author: macsforever2000 at macports.org Date: 2008-12-02 01:58:33 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Changed dependency on libungif to giflib. (#17193) Modified Paths: -------------- trunk/dports/x11/xplanet/Portfile Modified: trunk/dports/x11/xplanet/Portfile =================================================================== --- trunk/dports/x11/xplanet/Portfile 2008-12-02 09:52:27 UTC (rev 42918) +++ trunk/dports/x11/xplanet/Portfile 2008-12-02 09:58:33 UTC (rev 42919) @@ -43,7 +43,7 @@ variant gif { configure.args-delete --without-gif configure.args-append --with-gif - depends_lib-append lib:libungif:libungif + depends_lib-append path:include/gif_lib.h:giflib } variant pango { -------------- next part -------------- An HTML attachment was scrubbed... URL: From macsforever2000 at macports.org Tue Dec 2 02:09:46 2008 From: macsforever2000 at macports.org (macsforever2000 at macports.org) Date: Tue, 2 Dec 2008 02:09:46 -0800 (PST) Subject: [42920] trunk/dports/x11/xplanet/Portfile Message-ID: <20081202100946.EF4267E3442@beta.macosforge.org> Revision: 42920 http://trac.macports.org/changeset/42920 Author: macsforever2000 at macports.org Date: 2008-12-02 02:09:46 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Add variant descriptions to appease lint. Modified Paths: -------------- trunk/dports/x11/xplanet/Portfile Modified: trunk/dports/x11/xplanet/Portfile =================================================================== --- trunk/dports/x11/xplanet/Portfile 2008-12-02 09:58:33 UTC (rev 42919) +++ trunk/dports/x11/xplanet/Portfile 2008-12-02 10:09:46 UTC (rev 42920) @@ -34,31 +34,31 @@ xinstall -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS README TODO ${docdir} } -variant freetype { +variant freetype description "Enable Freetype support for TrueType fonts" { configure.args-delete --without-freetype configure.args-append --with-freetype depends_lib lib:libfreetype:freetype } -variant gif { +variant gif description "Enable GIF support" { configure.args-delete --without-gif configure.args-append --with-gif depends_lib-append path:include/gif_lib.h:giflib } -variant pango { +variant pango description "Enable Pango" { configure.args-delete --without-pango configure.args-append --with-pango depends_lib-append path:lib/pkgconfig/pango.pc:pango } -variant aqua { +variant aqua description "Use aqua instead of X11" { depends_lib-delete lib:libX11:XFree86 configure.args-delete --with-x configure.args-append --without-x --with-aqua } -variant pnm { +variant pnm description "Enable PNM support" { depends_lib-append lib:libnetpbm.10:netpbm } -------------- next part -------------- An HTML attachment was scrubbed... URL: From macsforever2000 at macports.org Tue Dec 2 02:13:45 2008 From: macsforever2000 at macports.org (macsforever2000 at macports.org) Date: Tue, 2 Dec 2008 02:13:45 -0800 (PST) Subject: [42921] trunk/dports/x11/windowmaker/Portfile Message-ID: <20081202101346.147CC7E34D2@beta.macosforge.org> Revision: 42921 http://trac.macports.org/changeset/42921 Author: macsforever2000 at macports.org Date: 2008-12-02 02:13:45 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Fix categories. Add description to variant. Modified Paths: -------------- trunk/dports/x11/windowmaker/Portfile Modified: trunk/dports/x11/windowmaker/Portfile =================================================================== --- trunk/dports/x11/windowmaker/Portfile 2008-12-02 10:09:46 UTC (rev 42920) +++ trunk/dports/x11/windowmaker/Portfile 2008-12-02 10:13:45 UTC (rev 42921) @@ -4,7 +4,7 @@ version 0.92.0 revision 2 maintainers nomaintainer -categories x11-wm x11 +categories x11 platforms darwin freebsd homepage http://www.windowmaker.info/ description Window Maker is a X11 window manager supporting GNUstep @@ -56,8 +56,7 @@ --with-nlsdir=${prefix}/share/locale \ --with-gnustepdir=${prefix}/GNUstep/Local -# Various eye-candy options -variant candy { +variant candy description "Enable various eye-candy options" { post-configure { reinplace "s|undef OPTIMIZE_SHAPE|define OPTIMIZE_SHAPE|" \ ${worksrcpath}/src/wconfig.h -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Dec 2 02:34:11 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 02:34:11 -0800 (PST) Subject: [42922] trunk/dports/audio/libmikmod/Portfile Message-ID: <20081202103412.4DDC27E365A@beta.macosforge.org> Revision: 42922 http://trac.macports.org/changeset/42922 Author: ryandesign at macports.org Date: 2008-12-02 02:34:10 -0800 (Tue, 02 Dec 2008) Log Message: ----------- libmikmod: disable universal variant because it does not produce a universal dylib; see #14397 (maintainer timeout) Modified Paths: -------------- trunk/dports/audio/libmikmod/Portfile Modified: trunk/dports/audio/libmikmod/Portfile =================================================================== --- trunk/dports/audio/libmikmod/Portfile 2008-12-02 10:13:45 UTC (rev 42921) +++ trunk/dports/audio/libmikmod/Portfile 2008-12-02 10:34:10 UTC (rev 42922) @@ -8,6 +8,7 @@ maintainers eridius at macports.org description portable sound library platforms darwin +universal_variant no long_description libmikmod is a portable sound library for Unix systems. \ It can play IT, XM, S3M, MTM, 669, STM, ULT, FAR, MED, \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 02:51:55 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 02:51:55 -0800 (PST) Subject: [42923] trunk/dports/PortIndex Message-ID: <20081202105157.737C07E37F6@beta.macosforge.org> Revision: 42923 http://trac.macports.org/changeset/42923 Author: portindex at macports.org Date: 2008-12-02 02:51:54 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5169 Ports successfully parsed: 5169 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 10:34:10 UTC (rev 42922) +++ trunk/dports/PortIndex 2008-12-02 10:51:54 UTC (rev 42923) @@ -358,8 +358,8 @@ variants universal description {Lightweight Open Source Control implementation.} portdir audio/liblo homepage http://liblo.sourceforge.net/ epoch 0 platforms darwin name liblo long_description {liblo is an implementation of the Open Sound Control protocol for POSIX systems.} maintainers nomaintainer categories audio version 0.25 revision 0 libmad 491 depends_build port:pkgconfig description {MPEG Audio Decoder} portdir audio/libmad homepage http://www.underbit.com/products/mad/ epoch 0 platforms {darwin freebsd} name libmad maintainers nomaintainer long_description {MAD is a high-quality MPEG audio decoder. It currently supports MPEG-1 as well as the MPEG-2 extension to Lower Sampling Frequencies. All three audio layers (Layer I, Layer II, and Layer III a.k.a. MP3) are fully implemented.} version 0.15.1b categories audio revision 1 -libmikmod 430 -variants {universal esound} description {portable sound library} portdir audio/libmikmod homepage http://mikmod.raphnet.net/ epoch 0 platforms darwin name libmikmod long_description {libmikmod is a portable sound library for Unix systems. It can play IT, XM, S3M, MTM, 669, STM, ULT, FAR, MED, AMF, DSM, IMF, GDM, STX, OKT, and MOD module formats.} maintainers eridius at macports.org categories audio version 3.2.0-beta2 revision 0 +libmikmod 418 +variants esound description {portable sound library} portdir audio/libmikmod homepage http://mikmod.raphnet.net/ epoch 0 platforms darwin name libmikmod long_description {libmikmod is a portable sound library for Unix systems. It can play IT, XM, S3M, MTM, 669, STM, ULT, FAR, MED, AMF, DSM, IMF, GDM, STX, OKT, and MOD module formats.} maintainers eridius at macports.org categories audio version 3.2.0-beta2 revision 0 libmodplug 280 variants universal description {MOD audio library} portdir audio/libmodplug homepage http://modplug-xmms.sourceforge.net/ epoch 0 platforms darwin name libmodplug long_description {Library for playing MOD audio.} maintainers nomaintainer categories audio version 0.8.4 revision 0 libmp4v2 423 @@ -10032,8 +10032,8 @@ variants {universal no_server beta} portdir x11/vnc description {Remote display system for X11 applications} homepage http://www.realvnc.com/ depends_run bin:perl:perl5.8 epoch 0 platforms darwin name vnc depends_lib {lib:libX11.6:XFree86 lib:libz.1:zlib} maintainers nomaintainer long_description {Creates a virtual X11 windowing environment that can be viewed not only on the machine where it is running, but from anywhere on the Internet and from a wide variety of machine architectures.} version 3.3.7 categories {x11 vnc} revision 2 vtwm 213 portdir x11/vtwm variants universal description {Twm with a virtual desktop and optional Motif-like features} platforms darwin name vtwm version 5.4.6a categories x11 revision 0 epoch 0 maintainers mdales at mac.com -windowmaker 810 -variants {universal candy darwin_i386} portdir x11/windowmaker description {Window Maker is a X11 window manager supporting GNUstep} homepage http://www.windowmaker.info/ epoch 0 platforms {darwin freebsd} name windowmaker depends_lib {lib:libX11.6:XFree86 port:Xft2 port:gettext port:libpng path:include/gif_lib.h:giflib port:tiff} maintainers nomaintainer long_description {Window Maker is an X11 window manager originally designed to provide integration support for the GNUstep Desktop Environment. In every way possible, it reproduces the elegant look and feel of the {NEXTSTEP[tm]} user interface. It is fast, feature rich, easy to configure, and easy to use. It is also free software, with contributions being made by programmers from around the world.} version 0.92.0 categories {x11-wm x11} revision 2 +windowmaker 857 +variants {universal candy darwin_i386} variant_desc {candy {Enable various eye-candy options}} portdir x11/windowmaker description {Window Maker is a X11 window manager supporting GNUstep} homepage http://www.windowmaker.info/ epoch 0 platforms {darwin freebsd} name windowmaker depends_lib {lib:libX11.6:XFree86 port:Xft2 port:gettext port:libpng path:include/gif_lib.h:giflib port:tiff} maintainers nomaintainer long_description {Window Maker is an X11 window manager originally designed to provide integration support for the GNUstep Desktop Environment. In every way possible, it reproduces the elegant look and feel of the {NEXTSTEP[tm]} user interface. It is fast, feature rich, easy to configure, and easy to use. It is also free software, with contributions being made by programmers from around the world.} version 0.92.0 categories x11 revision 2 wine 505 depends_build port:pkgconfig portdir x11/wine description {Wine Is Not an Emulator} homepage http://www.winehq.com/ epoch 0 platforms darwin name wine depends_lib {lib:libX11.6:XFree86 port:expat port:fontconfig port:fontforge port:freetype port:jpeg port:libiconv port:libxml2 port:libxslt port:ncurses port:openssl port:xrender port:zlib} maintainers {ryandesign jwa openmaintainer} long_description {Wine is an implementation of the Windows APIs on top of X11.} version 1.0.1 categories x11 revision 1 wine-devel 517 @@ -10176,8 +10176,8 @@ variants universal description {X.org xtrans} portdir x11/xorg-xtrans homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-xtrans long_description {X Network Transport layer shared code} maintainers jeremyhu at macports.org categories {x11 devel} version 1.2.2 revision 0 xping 267 portdir x11/xping variants universal description {'ping' an Xserver} name xping depends_lib lib:libX11.6:XFree86 version 1.9 categories x11 revision 0 epoch 0 maintainers jdputsch at comcast.net long_description {A simple tool to determine if an X11 server is running.} -xplanet 673 -variants {universal freetype gif pango aqua pnm} portdir x11/xplanet description {Render an image of a planet into an X window or file} homepage http://xplanet.sourceforge.net/ epoch 0 platforms darwin name xplanet depends_lib {lib:libX11:XFree86 lib:libjpeg:jpeg lib:libpng:libpng lib:libtiff:tiff} maintainers nomaintainer long_description {Xplanet is similar to Xearth, where an image of the earth is rendered into an X window. All of the major planets and most satellites can be drawn. A number of different map projections are also supported, including azimuthal, Mercator, Mollweide, orthographic, and rectangular.} version 1.2.0 categories {x11 graphics} revision 1 +xplanet 844 +variants {universal freetype gif pango aqua pnm} variant_desc {freetype {Enable Freetype support for TrueType fonts} gif {Enable GIF support} pango {Enable Pango} aqua {Use aqua instead of X11} pnm {Enable PNM support}} portdir x11/xplanet description {Render an image of a planet into an X window or file} homepage http://xplanet.sourceforge.net/ epoch 0 platforms darwin name xplanet depends_lib {lib:libX11:XFree86 lib:libjpeg:jpeg lib:libpng:libpng lib:libtiff:tiff} maintainers nomaintainer long_description {Xplanet is similar to Xearth, where an image of the earth is rendered into an X window. All of the major planets and most satellites can be drawn. A number of different map projections are also supported, including azimuthal, Mercator, Mollweide, orthographic, and rectangular.} version 1.2.0 categories {x11 graphics} revision 1 xpm 406 variants universal depends_build bin:xmkmf:imake description {The X Pixmap Library} portdir x11/xpm epoch 0 platforms darwin name xpm maintainers nomaintainer long_description {XPM (X PixMap) is a format for storing/retrieving X pixmaps to/from files. It is used by a large number of common X applications and has become something of a de-facto standard.} categories {x11 graphics} version 3.4k revision 0 xrender 386 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ram at macports.org Tue Dec 2 06:19:18 2008 From: ram at macports.org (ram at macports.org) Date: Tue, 2 Dec 2008 06:19:18 -0800 (PST) Subject: [42924] trunk/dports/python/py25-boto/Portfile Message-ID: <20081202141920.11F767E47F2@beta.macosforge.org> Revision: 42924 http://trac.macports.org/changeset/42924 Author: ram at macports.org Date: 2008-12-02 06:19:16 -0800 (Tue, 02 Dec 2008) Log Message: ----------- python/py25-boto: update to 1.5c Modified Paths: -------------- trunk/dports/python/py25-boto/Portfile Modified: trunk/dports/python/py25-boto/Portfile =================================================================== --- trunk/dports/python/py25-boto/Portfile 2008-12-02 10:51:54 UTC (rev 42923) +++ trunk/dports/python/py25-boto/Portfile 2008-12-02 14:19:16 UTC (rev 42924) @@ -4,7 +4,7 @@ PortGroup python25 1.0 name py25-boto -version 1.5b +version 1.5c categories python net platforms darwin maintainers ram openmaintainer @@ -17,9 +17,9 @@ master_sites http://boto.googlecode.com/files/ distname boto-${version} -checksums md5 6db0ee3b826b4b281548b9cc9de226b2 \ - sha1 3c366015af371c5a76cbc040186186923257ada3 \ - rmd160 bc36adbc5b0bd1d93cfa4c106d4094b1ecf61f48 +checksums md5 596558d292361944d2319cc615494734 \ + sha1 c8e5127dc3ebc60fae7346bbdcfc423fd26ed9a5 \ + rmd160 e7dac4cab0509913583bc965a4542beaa52c4a7a universal_variant no -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Tue Dec 2 06:26:47 2008 From: jmr at macports.org (jmr at macports.org) Date: Tue, 2 Dec 2008 06:26:47 -0800 (PST) Subject: [42925] trunk/dports/devel/libtool-devel/Portfile Message-ID: <20081202142648.AF4847E491D@beta.macosforge.org> Revision: 42925 http://trac.macports.org/changeset/42925 Author: jmr at macports.org Date: 2008-12-02 06:26:45 -0800 (Tue, 02 Dec 2008) Log Message: ----------- libtool-devel: update to 2.3a Modified Paths: -------------- trunk/dports/devel/libtool-devel/Portfile Modified: trunk/dports/devel/libtool-devel/Portfile =================================================================== --- trunk/dports/devel/libtool-devel/Portfile 2008-12-02 14:19:16 UTC (rev 42924) +++ trunk/dports/devel/libtool-devel/Portfile 2008-12-02 14:26:45 UTC (rev 42925) @@ -1,8 +1,9 @@ # $Id$ PortSystem 1.0 + name libtool-devel -version 1.9f +version 2.3a categories devel maintainers nomaintainer description The GNU Portable Library Tool @@ -13,9 +14,10 @@ homepage http://www.gnu.org/software/libtool/ platforms darwin -master_sites ftp://alpha.gnu.org/gnu/libtool/ +master_sites http://pogma.com/libtool/ distname libtool-${version} -use_bzip2 yes -checksums md5 33ae608992faaa0daebee3f2fd2fd7be +checksums md5 f7ee3a3690977cd3faf4496a9c997356 \ + sha1 1154798c48a58543e7022e546d37858df193f546 \ + rmd160 6b461896f862f0e3015ab0bbc356d15f527a3903 configure.args --program-prefix=g --infodir=${prefix}/share/info -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Tue Dec 2 06:52:20 2008 From: jmr at macports.org (jmr at macports.org) Date: Tue, 2 Dec 2008 06:52:20 -0800 (PST) Subject: [42926] trunk/dports/devel/libtool1/ Message-ID: <20081202145220.9782E7E4BCC@beta.macosforge.org> Revision: 42926 http://trac.macports.org/changeset/42926 Author: jmr at macports.org Date: 2008-12-02 06:52:19 -0800 (Tue, 02 Dec 2008) Log Message: ----------- New port, libtool 1.x, to pave the way for upgrading libtool to 2.x. See #17208. Still needs some work to not conflict with libtool. Added Paths: ----------- trunk/dports/devel/libtool1/ Property changes on: trunk/dports/devel/libtool1 ___________________________________________________________________ Added: svn:mergeinfo + -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 06:52:25 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 06:52:25 -0800 (PST) Subject: [42927] trunk/dports/PortIndex Message-ID: <20081202145226.B53E97E4BEB@beta.macosforge.org> Revision: 42927 http://trac.macports.org/changeset/42927 Author: portindex at macports.org Date: 2008-12-02 06:52:25 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5169 Ports successfully parsed: 5169 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 14:52:19 UTC (rev 42926) +++ trunk/dports/PortIndex 2008-12-02 14:52:25 UTC (rev 42927) @@ -1455,7 +1455,7 @@ libtool 475 variants universal depends_build port:automake portdir devel/libtool description {GNU Libtool - The GNU Portable Library Tool} homepage http://www.gnu.org/software/libtool/ epoch 0 platforms {darwin freebsd} name libtool maintainers {boeyms openmaintainer} long_description {GNU libtool is a generic library support script. Libtool hides the complexity of using shared libraries behind a consistent, portable interface.} version 1.5.26 categories {devel sysutils} revision 0 libtool-devel 411 -variants universal description {The GNU Portable Library Tool} portdir devel/libtool-devel homepage http://www.gnu.org/software/libtool/ epoch 0 platforms darwin name libtool-devel long_description {GNU libtool is a generic library support script. Libtool hides the complexity of using shared libraries behind a consistent, portable interface.} maintainers nomaintainer categories devel version 1.9f revision 0 +variants universal description {The GNU Portable Library Tool} portdir devel/libtool-devel homepage http://www.gnu.org/software/libtool/ epoch 0 platforms darwin name libtool-devel long_description {GNU libtool is a generic library support script. Libtool hides the complexity of using shared libraries behind a consistent, portable interface.} maintainers nomaintainer categories devel version 2.3a revision 0 libtre 410 variants universal portdir devel/libtre description {lightweight fully POSIX compliant regexp matching library} homepage http://laurikari.net/tre/ epoch 0 platforms darwin name libtre depends_lib port:gettext maintainers nomaintainer long_description {Libtre is an attempt to create a lightweight, robust, and efficient fully POSIX compliant regexp matching library.} version 0.7.4 categories devel revision 0 libuninameslist 494 @@ -7447,7 +7447,7 @@ py25-biopython 530 variants universal portdir python/py25-biopython description {python tools for computational molecular biology} homepage http://www.biopython.org/ epoch 0 platforms darwin depends_lib {port:python25 port:py25-numeric port:py25-mx-base port:py25-reportlab} name py25-biopython maintainers mww long_description {python tools for computational molecular biology: parsers for various file formats, interfaces for programs, tools for performing common operations on sequences, etc.} categories {python science} version 1.44 revision 0 py25-boto 388 -description {python interface to Amazon Web Services} portdir python/py25-boto homepage http://code.google.com/p/boto/ epoch 0 platforms darwin depends_lib port:python25 name py25-boto maintainers {ram openmaintainer} long_description {An integrated interface to current and future infrastructural services offered by Amazon Web Services.} categories {python net} version 1.5b revision 0 +description {python interface to Amazon Web Services} portdir python/py25-boto homepage http://code.google.com/p/boto/ epoch 0 platforms darwin depends_lib port:python25 name py25-boto maintainers {ram openmaintainer} long_description {An integrated interface to current and future infrastructural services offered by Amazon Web Services.} categories {python net} version 1.5c revision 0 py25-bsddb 365 variants universal portdir python/py25-bsddb description {Python bindings to the db46 library} homepage http://www.python.org/doc/current/lib/module-dbm.html epoch 0 platforms darwin depends_lib {port:python25 port:db46} name py25-bsddb maintainers mww long_description {{Python bindings to the db46 library}} categories {python databases} version 2.5.2 revision 1 py25-bz2 328 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Tue Dec 2 06:56:48 2008 From: jmr at macports.org (jmr at macports.org) Date: Tue, 2 Dec 2008 06:56:48 -0800 (PST) Subject: [42928] trunk/dports/devel/libtool1/Portfile Message-ID: <20081202145648.6F6067E4C5C@beta.macosforge.org> Revision: 42928 http://trac.macports.org/changeset/42928 Author: jmr at macports.org Date: 2008-12-02 06:56:47 -0800 (Tue, 02 Dec 2008) Log Message: ----------- libtool1: fix up name and maintainer Modified Paths: -------------- trunk/dports/devel/libtool1/Portfile Modified: trunk/dports/devel/libtool1/Portfile =================================================================== --- trunk/dports/devel/libtool1/Portfile 2008-12-02 14:52:25 UTC (rev 42927) +++ trunk/dports/devel/libtool1/Portfile 2008-12-02 14:56:47 UTC (rev 42928) @@ -2,10 +2,10 @@ PortSystem 1.0 -name libtool +name libtool1 version 1.5.26 categories devel sysutils -maintainers boeyms openmaintainer +maintainers nomaintainer description GNU Libtool - The GNU Portable Library Tool long_description \ @@ -15,8 +15,9 @@ homepage http://www.gnu.org/software/libtool/ platforms darwin freebsd -master_sites gnu +master_sites gnu:libtool +distname libtool-${version} checksums md5 aa9c5107f3ec9ef4200eb6556f3b3c29 \ sha1 4c1738351736562a951a345e24f233d00953ec0a \ rmd160 4d1d7dd0308b98e8f590723ae5daddb8da49ac11 @@ -40,4 +41,3 @@ livecheck.check regex livecheck.url http://ftp.gnu.org/gnu/${name}/?C=M&O=D livecheck.regex ${name}-(\\d+(?:\\.\\d+)*) - -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Tue Dec 2 07:26:33 2008 From: jmr at macports.org (jmr at macports.org) Date: Tue, 2 Dec 2008 07:26:33 -0800 (PST) Subject: [42929] trunk/dports/devel/libtool1 Message-ID: <20081202152633.D46B07E5054@beta.macosforge.org> Revision: 42929 http://trac.macports.org/changeset/42929 Author: jmr at macports.org Date: 2008-12-02 07:26:31 -0800 (Tue, 02 Dec 2008) Log Message: ----------- libtool1: prevent conflicts with libtool Modified Paths: -------------- trunk/dports/devel/libtool1/Portfile Added Paths: ----------- trunk/dports/devel/libtool1/files/patch-configure.diff Modified: trunk/dports/devel/libtool1/Portfile =================================================================== --- trunk/dports/devel/libtool1/Portfile 2008-12-02 14:56:47 UTC (rev 42928) +++ trunk/dports/devel/libtool1/Portfile 2008-12-02 15:26:31 UTC (rev 42929) @@ -24,15 +24,27 @@ depends_build port:automake -configure.args --program-prefix=g +configure.args --program-prefix=g \ + --program-suffix=1 \ + --includedir=${prefix}/include/${name} \ + --libdir=${prefix}/lib/${name} -patchfiles patch-libtool.m4.diff +patchfiles patch-libtool.m4.diff \ + patch-configure.diff post-destroot { set docdir ${prefix}/share/doc/${name}-${version} xinstall -d ${destroot}${docdir} xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS README THANKS \ TODO ${destroot}${docdir} + move ${destroot}${prefix}/share/libtool \ + ${destroot}${prefix}/share/${name} + move ${destroot}${prefix}/share/aclocal/libtool.m4 \ + ${destroot}${prefix}/share/aclocal/libtool1.m4 + move ${destroot}${prefix}/share/aclocal/ltdl.m4 \ + ${destroot}${prefix}/share/aclocal/ltdl1.m4 + move ${destroot}${prefix}/share/info/libtool.info \ + ${destroot}${prefix}/share/info/libtool1.info } test.run yes Added: trunk/dports/devel/libtool1/files/patch-configure.diff =================================================================== --- trunk/dports/devel/libtool1/files/patch-configure.diff (rev 0) +++ trunk/dports/devel/libtool1/files/patch-configure.diff 2008-12-02 15:26:31 UTC (rev 42929) @@ -0,0 +1,11 @@ +--- configure.orig 2008-12-03 02:02:36.000000000 +1100 ++++ configure 2008-12-03 02:09:15.000000000 +1100 +@@ -750,7 +750,7 @@ + SHELL=${CONFIG_SHELL-/bin/sh} + + # Identity of this package. +-PACKAGE_NAME='libtool' ++PACKAGE_NAME='libtool1' + PACKAGE_TARNAME='libtool' + PACKAGE_VERSION='1.5.26' + PACKAGE_STRING='libtool 1.5.26' -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 07:52:35 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 07:52:35 -0800 (PST) Subject: [42930] trunk/dports/PortIndex Message-ID: <20081202155239.D1E9A7E6889@beta.macosforge.org> Revision: 42930 http://trac.macports.org/changeset/42930 Author: portindex at macports.org Date: 2008-12-02 07:52:30 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5170 Ports successfully parsed: 5170 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 15:26:31 UTC (rev 42929) +++ trunk/dports/PortIndex 2008-12-02 15:52:30 UTC (rev 42930) @@ -1456,6 +1456,8 @@ variants universal depends_build port:automake portdir devel/libtool description {GNU Libtool - The GNU Portable Library Tool} homepage http://www.gnu.org/software/libtool/ epoch 0 platforms {darwin freebsd} name libtool maintainers {boeyms openmaintainer} long_description {GNU libtool is a generic library support script. Libtool hides the complexity of using shared libraries behind a consistent, portable interface.} version 1.5.26 categories {devel sysutils} revision 0 libtool-devel 411 variants universal description {The GNU Portable Library Tool} portdir devel/libtool-devel homepage http://www.gnu.org/software/libtool/ epoch 0 platforms darwin name libtool-devel long_description {GNU libtool is a generic library support script. Libtool hides the complexity of using shared libraries behind a consistent, portable interface.} maintainers nomaintainer categories devel version 2.3a revision 0 +libtool1 466 +variants universal depends_build port:automake portdir devel/libtool1 description {GNU Libtool - The GNU Portable Library Tool} homepage http://www.gnu.org/software/libtool/ epoch 0 platforms {darwin freebsd} name libtool1 maintainers nomaintainer long_description {GNU libtool is a generic library support script. Libtool hides the complexity of using shared libraries behind a consistent, portable interface.} version 1.5.26 categories {devel sysutils} revision 0 libtre 410 variants universal portdir devel/libtre description {lightweight fully POSIX compliant regexp matching library} homepage http://laurikari.net/tre/ epoch 0 platforms darwin name libtre depends_lib port:gettext maintainers nomaintainer long_description {Libtre is an attempt to create a lightweight, robust, and efficient fully POSIX compliant regexp matching library.} version 0.7.4 categories devel revision 0 libuninameslist 494 -------------- next part -------------- An HTML attachment was scrubbed... URL: From markd at macports.org Tue Dec 2 08:41:14 2008 From: markd at macports.org (markd at macports.org) Date: Tue, 2 Dec 2008 08:41:14 -0800 (PST) Subject: [42931] trunk/dports/aqua/LyX Message-ID: <20081202164115.3F4627E7D43@beta.macosforge.org> Revision: 42931 http://trac.macports.org/changeset/42931 Author: markd at macports.org Date: 2008-12-02 08:41:13 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Update to 1.6.0. Modified Paths: -------------- trunk/dports/aqua/LyX/Portfile Removed Paths: ------------- trunk/dports/aqua/LyX/files/ Modified: trunk/dports/aqua/LyX/Portfile =================================================================== --- trunk/dports/aqua/LyX/Portfile 2008-12-02 15:52:30 UTC (rev 42930) +++ trunk/dports/aqua/LyX/Portfile 2008-12-02 16:41:13 UTC (rev 42931) @@ -4,7 +4,7 @@ PortSystem 1.0 name LyX -version 1.5.4 +version 1.6.0 platforms darwin categories aqua maintainers rsorasen at broadpark.no @@ -24,17 +24,15 @@ http://gd.tuwien.ac.at/publishing/tex/lyx/stable/ use_bzip2 yes distname lyx-${version} -checksums md5 6f424dc23af78e1d39c6962101cde2e9 \ - sha1 75c2be653b64eedeb443caf2b0401fb74a15e908 \ - rmd160 fca3cb9c9c9437e879c8abea820fbd28a5d1d72d +checksums md5 a51469e84e3c377df94a1546cf3077b6 \ + sha1 55720b9e82dc1c14882a23a3e6ea085d795cb6d3 \ + rmd160 8e4ee72b9c677d362a8a2dd49f316530b43a9533 depends_lib port:qt4-mac \ bin:tex:texlive \ port:ImageMagick \ port:python25 -patchfiles patch-ltmain.sh - use_parallel_build yes configure.python ${prefix}/bin/python2.5 configure.pre_args --prefix=/Applications/MacPorts/LyX.app -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 08:52:16 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 08:52:16 -0800 (PST) Subject: [42932] trunk/dports/PortIndex Message-ID: <20081202165217.DE0037E848C@beta.macosforge.org> Revision: 42932 http://trac.macports.org/changeset/42932 Author: portindex at macports.org Date: 2008-12-02 08:52:15 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5170 Ports successfully parsed: 5170 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 16:41:13 UTC (rev 42931) +++ trunk/dports/PortIndex 2008-12-02 16:52:15 UTC (rev 42932) @@ -47,7 +47,7 @@ Lingon 461 variants {universal darwin_6 darwin_7 darwin_8 darwin_9} description {Graphical interface for creating launchd configurations} portdir aqua/Lingon homepage http://lingon.sourceforge.net/ epoch 0 platforms darwin name Lingon long_description {Lingon is a graphical interface for creating launchd configuration files and controlling them through launchctl for Mac OS X Tiger.} maintainers bfulgham at macports.org version 2.0.2 categories {aqua sysutils} revision 0 LyX 548 -variants universal portdir aqua/LyX description {WYSIWYM document processor} homepage http://www.lyx.org/ epoch 0 platforms darwin name LyX depends_lib {port:qt4-mac bin:tex:texlive port:ImageMagick port:python25} maintainers rsorasen at broadpark.no long_description {LyX is an advanced open source document processor that encourages an approach to writing based on the structure of your documents, not their appearance. LyX lets you concentrate on writing, leaving details of visual layout to the software.} version 1.5.4 categories aqua revision 0 +variants universal portdir aqua/LyX description {WYSIWYM document processor} homepage http://www.lyx.org/ epoch 0 platforms darwin name LyX depends_lib {port:qt4-mac bin:tex:texlive port:ImageMagick port:python25} maintainers rsorasen at broadpark.no long_description {LyX is an advanced open source document processor that encourages an approach to writing based on the structure of your documents, not their appearance. LyX lets you concentrate on writing, leaving details of visual layout to the software.} version 1.6.0 categories aqua revision 0 MacBiff 462 variants growl variant_desc {growl {Add Growl support}} portdir aqua/MacBiff description {IMAP Email checker} homepage http://www.forkit.org/macbiff/ epoch 0 platforms macosx name MacBiff maintainers nomaintainer long_description {MacBiff is a GPL'd Mac OS X 10.3 (and greater) Biff Program. It periodically checks your IMAP server for new email, and reports where in your folder hierarchy your new mail resides.} categories {aqua net} version 1.1.11 revision 1 MailtoMutt 442 -------------- next part -------------- An HTML attachment was scrubbed... URL: From noreply at macports.org Tue Dec 2 11:22:49 2008 From: noreply at macports.org (MacPorts) Date: Tue, 02 Dec 2008 19:22:49 -0000 Subject: [MacPorts] GetMacPortsSource modified Message-ID: <20081202192359.C926828080@relay11.apple.com> Changed page "GetMacPortsSource" by perry at macports.org from 136.152.135.197* Page URL: Diff URL: Revision 2 -------8<------8<------8<------8<------8<------8<------8<------8<-------- Index: GetMacPortsSource ========================================================================= --- GetMacPortsSource (version: 1) +++ GetMacPortsSource (version: 2) @@ -24,5 +24,5 @@ {{{ # Checkout the macports trunk -svn checkout https://svn.macosforge.org/repository/macports/trunk macports-trunk +svn checkout https://svn.macosforge.org/repository/macports/trunk macports-trunk --username your_handle at macports.org }}} -------8<------8<------8<------8<------8<------8<------8<------8<-------- * The IP shown here might not mean anything if the user or the server is behind a proxy. -- MacPorts Ports system for Mac OS This is an automated message. Someone at http://www.macports.org/ added your email address to be notified of changes on GetMacPortsSource. If it was not you, please report to . From toby at macports.org Tue Dec 2 11:27:42 2008 From: toby at macports.org (toby at macports.org) Date: Tue, 2 Dec 2008 11:27:42 -0800 (PST) Subject: [42933] trunk/dports/lang/python25/Portfile Message-ID: <20081202192742.B39AD7F01F9@beta.macosforge.org> Revision: 42933 http://trac.macports.org/changeset/42933 Author: toby at macports.org Date: 2008-12-02 11:27:42 -0800 (Tue, 02 Dec 2008) Log Message: ----------- llvm works Modified Paths: -------------- trunk/dports/lang/python25/Portfile Modified: trunk/dports/lang/python25/Portfile =================================================================== --- trunk/dports/lang/python25/Portfile 2008-12-02 16:52:15 UTC (rev 42932) +++ trunk/dports/lang/python25/Portfile 2008-12-02 19:27:42 UTC (rev 42933) @@ -133,7 +133,6 @@ platform darwin 10 { configure.cppflags-append -D_DARWIN_C_SOURCE - configure.compiler gcc-4.2 patchfiles-append patch-configure-badcflags.diff } -------------- next part -------------- An HTML attachment was scrubbed... URL: From macsforever2000 at macports.org Tue Dec 2 11:44:59 2008 From: macsforever2000 at macports.org (macsforever2000 at macports.org) Date: Tue, 2 Dec 2008 11:44:59 -0800 (PST) Subject: [42934] trunk/dports/net/mcabber/Portfile Message-ID: <20081202194459.E4FB77F0FDC@beta.macosforge.org> Revision: 42934 http://trac.macports.org/changeset/42934 Author: macsforever2000 at macports.org Date: 2008-12-02 11:44:59 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Updated homepage and master_sites. (#17486) Modified Paths: -------------- trunk/dports/net/mcabber/Portfile Modified: trunk/dports/net/mcabber/Portfile =================================================================== --- trunk/dports/net/mcabber/Portfile 2008-12-02 19:27:42 UTC (rev 42933) +++ trunk/dports/net/mcabber/Portfile 2008-12-02 19:44:59 UTC (rev 42934) @@ -11,9 +11,9 @@ mcabber is a small Jabber console client. It includes features like \ SSL, MUC, history logging, command completion, OpenPGP encryption, \ OTR and external action triggers. -homepage http://www.lilotux.net/~mikael/mcabber/ +homepage http://mcabber.com/ platforms darwin -master_sites http://www.lilotux.net/~mikael/mcabber/files/ +master_sites http://mcabber.com/files/ extract.suffix .tar.bz2 use_bzip2 yes checksums md5 189fb9d23f5a8412bc660884528475ea \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 11:52:25 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 11:52:25 -0800 (PST) Subject: [42935] trunk/dports/PortIndex Message-ID: <20081202195227.13F187F172F@beta.macosforge.org> Revision: 42935 http://trac.macports.org/changeset/42935 Author: portindex at macports.org Date: 2008-12-02 11:52:25 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5170 Ports successfully parsed: 5170 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 19:44:59 UTC (rev 42934) +++ trunk/dports/PortIndex 2008-12-02 19:52:25 UTC (rev 42935) @@ -4966,8 +4966,8 @@ variants universal depends_build {lib:libexpat:expat lib:libz:zlib} portdir net/madflute description {Implementation of FLUTE - File Delivery over Unidirectional Transport} homepage http://www.atm.tut.fi/mad/ epoch 0 platforms darwin name madflute long_description {MAD-FLUTE is an implementation of FLUTE - File Delivery over Unidirectional Transport (IETF draft). FLUTE is a protocol for the unidirectional delivery of files over the Internet, which is { particularly} suited to multicast networks. FLUTE builds on Asyncronous { Layered} Coding (ALC), the base protocol designed for massively { scalable} multicast distribution (RFC 3450).} maintainers nomaintainer version 0.9 categories net revision 0 maradns 494 variants {universal authonly} variant_desc {authonly {Build only the authoritative DNS server, omitting the recursive one}} portdir net/maradns description {DNS server supporting authoritative, recursive and caching DNS} homepage http://www.maradns.org/ epoch 0 platforms darwin name maradns maintainers {boeyms openmaintainer} long_description {MaraDNS is a fully functional DNS server supporting authoritative DNS, recursive DNS, and caching DNS.} version 1.2.12.09 categories net revision 0 -mcabber 727 -variants {universal ssl aspell} depends_build {bin:gawk:gawk bin:pkg-config:pkgconfig bin:gpgme-config:gpgme bin:gcrypt-config:libgcrypt bin:gmkdir:coreutils} variant_desc {ssl {Use OpenSSL} aspell {Use aspell spell checking}} portdir net/mcabber description {Console Jabber client} homepage http://www.lilotux.net/~mikael/mcabber/ epoch 0 platforms darwin name mcabber depends_lib {lib:libgpgme:gpgme port:libiconv port:ncursesw port:glib2 port:gettext port:libotr} maintainers hitzemann.org:simon long_description {mcabber is a small Jabber console client. It includes features like SSL, MUC, history logging, command completion, OpenPGP encryption, OTR and external action triggers.} categories net version 0.9.9 revision 0 +mcabber 707 +variants {universal ssl aspell} depends_build {bin:gawk:gawk bin:pkg-config:pkgconfig bin:gpgme-config:gpgme bin:gcrypt-config:libgcrypt bin:gmkdir:coreutils} variant_desc {ssl {Use OpenSSL} aspell {Use aspell spell checking}} portdir net/mcabber description {Console Jabber client} homepage http://mcabber.com/ epoch 0 platforms darwin name mcabber depends_lib {lib:libgpgme:gpgme port:libiconv port:ncursesw port:glib2 port:gettext port:libotr} maintainers hitzemann.org:simon long_description {mcabber is a small Jabber console client. It includes features like SSL, MUC, history logging, command completion, OpenPGP encryption, OTR and external action triggers.} categories net version 0.9.9 revision 0 mdnsd 595 variants universal description {embeddable Multicast DNS Daemon} portdir net/mdnsd homepage http://dotlocal.org/mdnsd/ epoch 0 platforms darwin name mdnsd long_description {mdnsd is a very lightweight, simple, portable, and easy to integrate open source implementation of Multicast DNS (part of Zeroconf, also called Rendezvous by Apple) for developers. It supports both acting as a Query and a Responder, allowing any software to participate fully on the .local network just by including a few files and calling a few functions.} maintainers nomaintainer categories net version 0.7G revision 0 meanwhile 484 -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Tue Dec 2 12:02:22 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Tue, 2 Dec 2008 12:02:22 -0800 (PST) Subject: [42936] trunk/dports/python/py26-setuptools/Portfile Message-ID: <20081202200222.D58A77F1DE8@beta.macosforge.org> Revision: 42936 http://trac.macports.org/changeset/42936 Author: mcalhoun at macports.org Date: 2008-12-02 12:02:21 -0800 (Tue, 02 Dec 2008) Log Message: ----------- py26-setuptools: removed duplicate test command argument Modified Paths: -------------- trunk/dports/python/py26-setuptools/Portfile Modified: trunk/dports/python/py26-setuptools/Portfile =================================================================== --- trunk/dports/python/py26-setuptools/Portfile 2008-12-02 19:52:25 UTC (rev 42935) +++ trunk/dports/python/py26-setuptools/Portfile 2008-12-02 20:02:21 UTC (rev 42936) @@ -68,7 +68,7 @@ } test.run yes -test.cmd ${python.bin} setup.py test +test.cmd ${python.bin} setup.py livecheck.check regex livecheck.url [lindex ${master_sites} 0]?C=M&O=D -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Tue Dec 2 12:02:53 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Tue, 2 Dec 2008 12:02:53 -0800 (PST) Subject: [42937] trunk/dports/python/py26-zopeinterface/Portfile Message-ID: <20081202200254.329197F1EC9@beta.macosforge.org> Revision: 42937 http://trac.macports.org/changeset/42937 Author: mcalhoun at macports.org Date: 2008-12-02 12:02:53 -0800 (Tue, 02 Dec 2008) Log Message: ----------- py26-zopeinterface: add test phase Modified Paths: -------------- trunk/dports/python/py26-zopeinterface/Portfile Modified: trunk/dports/python/py26-zopeinterface/Portfile =================================================================== --- trunk/dports/python/py26-zopeinterface/Portfile 2008-12-02 20:02:21 UTC (rev 42936) +++ trunk/dports/python/py26-zopeinterface/Portfile 2008-12-02 20:02:53 UTC (rev 42937) @@ -61,6 +61,9 @@ ${destroot}${prefix}/share/doc/${name} } +test.run yes +test.cmd ${python.bin} setup.py + livecheck.check regex livecheck.url ${homepage} livecheck.regex zope.interface-(\\d+(?:\\.\\d+)*)${extract.suffix} -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Tue Dec 2 12:09:57 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Tue, 2 Dec 2008 12:09:57 -0800 (PST) Subject: [42938] trunk/dports/python Message-ID: <20081202200957.E955A7F243C@beta.macosforge.org> Revision: 42938 http://trac.macports.org/changeset/42938 Author: mcalhoun at macports.org Date: 2008-12-02 12:09:57 -0800 (Tue, 02 Dec 2008) Log Message: ----------- py26-openssl: new port Added Paths: ----------- trunk/dports/python/py26-openssl/ trunk/dports/python/py26-openssl/Portfile Added: trunk/dports/python/py26-openssl/Portfile =================================================================== --- trunk/dports/python/py26-openssl/Portfile (rev 0) +++ trunk/dports/python/py26-openssl/Portfile 2008-12-02 20:09:57 UTC (rev 42938) @@ -0,0 +1,100 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 +# $Id: Portfile 493 2008-12-02 05:50:20Z macports $ + +PortSystem 1.0 + +####################################################################################################### +# PortGroup python26 1.0 +####################################################################################################### +# Can be removed once MacPorts 1.7.0 is released +if {![info exists frameworks_dir]} { + set frameworks_dir ${prefix}/Library/Frameworks +} + +set python.bin ${prefix}/bin/python2.6 +set python.lib ${frameworks_dir}/Python.framework/Versions/2.6/Python +set python.pkgd ${frameworks_dir}/Python.framework/Versions/2.6/lib/python2.6/site-packages +set python.bindir ${frameworks_dir}/Python.framework/Versions/2.6/bin +set python.include ${frameworks_dir}/Python.framework/Versions/2.6/include/python2.6 + +categories python + +dist_subdir python + +depends_lib port:python26 + +use_configure no + +build.cmd ${python.bin} setup.py --no-user-cfg +build.target build + +destroot.cmd ${python.bin} setup.py --no-user-cfg +destroot.destdir --prefix=${frameworks_dir}/Python.framework/Versions/2.6 --root=${destroot} +configure.pkg_config_path ${frameworks_dir}/Python.framework/Versions/2.6/lib/pkgconfig + +set env(PATH) "${python.bindir}:$env(PATH)" + +pre-destroot { + xinstall -d -m 755 ${destroot}${prefix}/share/doc/${name}/examples +} +####################################################################################################### + +name py26-openssl +version 0.8 +categories python devel security +maintainers mcalhoun openmaintainer +platforms darwin freebsd +description python wrapper around the OpenSSL library +long_description This python module is a rather thin wrapper around (a \ + subset of) the OpenSSL library. With thin wrapper a lot of the \ + object methods do nothing more than calling a corresponding \ + function in the OpenSSL library. + +homepage http://pyopenssl.sourceforge.net/ +master_sites sourceforge:pyopenssl +distname pyOpenSSL-${version} + +checksums \ + md5 00377690f224d9e59c833fb0459603f4 \ + sha1 50f4214dc18d8b90b9c6a7f50d6c004edad997eb \ + rmd160 daacaab96c45aadca25f8aa39238a12d1907ddaa + +depends_lib-append port:openssl + +post-patch { + reinplace "s|/sw/|${prefix}/|g" ${worksrcpath}/setup.py + reinplace "s|#!/usr/bin/env python|#!${prefix}/bin/python2.6|g" ${worksrcpath}/examples/proxy.py +} + +post-destroot { + xinstall -m 644 -W ${worksrcpath} \ + COPYING ChangeLog INSTALL README TODO \ + ${destroot}${prefix}/share/doc/${name} + + file delete ${destroot}${prefix}/share/doc/${name}/examples + file copy ${worksrcpath}/examples ${destroot}${prefix}/share/doc/${name} +} + +variant doc { + depends_build-append port:latex2hml + + post-patch { + # Ensure that the correct binaries are used. + # Some are not actually invoked because only the html documentation is created. + foreach bin {bibtex dvips latex latex2html lynx makeindex pdflatex perl python} { + reinplace "s| = \"${bin}\"| = \"${prefix}/bin/${bin}\"|g" ${worksrcpath}/doc/tools/mkhowto + } + + # Ensure that the correct python is used. + reinplace "s|${prefix}/bin/python|${prefix}/bin/python2.6|g" ${worksrcpath}/doc/tools/mkhowto + reinplace "s| python | ${prefix}/bin/python2.6 |g" ${worksrcpath}/doc/Makefile + } + + post-build { + system "cd ${worksrcpath}/doc && /usr/bin/make html" + } + + post-destroot { + file copy ${worksrcpath}/doc/html ${destroot}${prefix}/share/doc/${name} + } +} -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Tue Dec 2 12:11:01 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Tue, 2 Dec 2008 12:11:01 -0800 (PST) Subject: [42939] trunk/dports/python/py26-openssl/Portfile Message-ID: <20081202201102.115ED7F25B8@beta.macosforge.org> Revision: 42939 http://trac.macports.org/changeset/42939 Author: mcalhoun at macports.org Date: 2008-12-02 12:11:01 -0800 (Tue, 02 Dec 2008) Log Message: ----------- py26-openssl: fix lint error Modified Paths: -------------- trunk/dports/python/py26-openssl/Portfile Modified: trunk/dports/python/py26-openssl/Portfile =================================================================== --- trunk/dports/python/py26-openssl/Portfile 2008-12-02 20:09:57 UTC (rev 42938) +++ trunk/dports/python/py26-openssl/Portfile 2008-12-02 20:11:01 UTC (rev 42939) @@ -75,7 +75,7 @@ file copy ${worksrcpath}/examples ${destroot}${prefix}/share/doc/${name} } -variant doc { +variant doc description {build html documentation} { depends_build-append port:latex2hml post-patch { -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Tue Dec 2 12:12:21 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Tue, 2 Dec 2008 12:12:21 -0800 (PST) Subject: [42940] trunk/dports/python Message-ID: <20081202201221.460EB7F26F4@beta.macosforge.org> Revision: 42940 http://trac.macports.org/changeset/42940 Author: mcalhoun at macports.org Date: 2008-12-02 12:12:20 -0800 (Tue, 02 Dec 2008) Log Message: ----------- py26-twisted: new port Added Paths: ----------- trunk/dports/python/py26-twisted/ trunk/dports/python/py26-twisted/Portfile Added: trunk/dports/python/py26-twisted/Portfile =================================================================== --- trunk/dports/python/py26-twisted/Portfile (rev 0) +++ trunk/dports/python/py26-twisted/Portfile 2008-12-02 20:12:20 UTC (rev 42940) @@ -0,0 +1,74 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 +# $Id: Portfile 493 2008-12-02 05:50:20Z macports $ + +PortSystem 1.0 + +####################################################################################################### +# PortGroup python26 1.0 +####################################################################################################### +# Can be removed once MacPorts 1.7.0 is released +if {![info exists frameworks_dir]} { + set frameworks_dir ${prefix}/Library/Frameworks +} + +set python.bin ${prefix}/bin/python2.6 +set python.lib ${frameworks_dir}/Python.framework/Versions/2.6/Python +set python.pkgd ${frameworks_dir}/Python.framework/Versions/2.6/lib/python2.6/site-packages +set python.bindir ${frameworks_dir}/Python.framework/Versions/2.6/bin +set python.include ${frameworks_dir}/Python.framework/Versions/2.6/include/python2.6 + +categories python + +dist_subdir python + +depends_lib port:python26 + +use_configure no + +build.cmd ${python.bin} setup.py --no-user-cfg +build.target build + +destroot.cmd ${python.bin} setup.py --no-user-cfg +destroot.destdir --prefix=${frameworks_dir}/Python.framework/Versions/2.6 --root=${destroot} +configure.pkg_config_path ${frameworks_dir}/Python.framework/Versions/2.6/lib/pkgconfig + +set env(PATH) "${python.bindir}:$env(PATH)" + +pre-destroot { + xinstall -d -m 755 ${destroot}${prefix}/share/doc/${name}/examples +} +####################################################################################################### + +name py26-twisted +version 8.1.0 +categories python devel net +maintainers mcalhoun openmaintainer +description An event-based Python framework for internet applications +long_description Twisted is an event-driven networking framework \ + written in Python. Twisted supports TCP, UDP, SSL/TLS, \ + multicast, Unix sockets, a large number of protocols \ + (including HTTP, NNTP, SSH, IRC, FTP, and others), and \ + much more. + +homepage http://www.twistedmatrix.com/ +master_sites http://tmrc.mit.edu/mirror/twisted/Twisted/[join [lrange [split ${version} .] 0 1] .] +distname Twisted-${version} +use_bzip2 yes +checksums \ + md5 a575f29ead4cc02c54e9061d0e6ac7c3 \ + sha1 b10e523ab96032f5055ee02687b22bcd7cb02951 \ + rmd160 1348f5e384a7d9d8591bd67e6b1f0d54aa18700e + +depends_lib-append port:py26-zopeinterface + +post-destroot { + set branch 2.6 + + foreach bin [glob -tails -directory ${destroot}${python.bindir} *] { + ln -s ${python.bindir} ${destroot}${prefix}/bin/${bin}-${branch} + } +} + +livecheck.check regex +livecheck.url http://twistedmatrix.com/trac/wiki/Downloads +livecheck.regex "The current release is Twisted (\\d+(?:\\.\\d+)*)" -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Tue Dec 2 12:14:34 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Tue, 2 Dec 2008 12:14:34 -0800 (PST) Subject: [42941] trunk/dports/python/py26-twisted/Portfile Message-ID: <20081202201434.682A67F2944@beta.macosforge.org> Revision: 42941 http://trac.macports.org/changeset/42941 Author: mcalhoun at macports.org Date: 2008-12-02 12:14:34 -0800 (Tue, 02 Dec 2008) Log Message: ----------- py26-twisted: fix lint and formatting errors Modified Paths: -------------- trunk/dports/python/py26-twisted/Portfile Modified: trunk/dports/python/py26-twisted/Portfile =================================================================== --- trunk/dports/python/py26-twisted/Portfile 2008-12-02 20:12:20 UTC (rev 42940) +++ trunk/dports/python/py26-twisted/Portfile 2008-12-02 20:14:34 UTC (rev 42941) @@ -1,5 +1,5 @@ # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 -# $Id: Portfile 493 2008-12-02 05:50:20Z macports $ +# $Id:$ PortSystem 1.0 @@ -42,6 +42,7 @@ name py26-twisted version 8.1.0 categories python devel net +platforms darwin maintainers mcalhoun openmaintainer description An event-based Python framework for internet applications long_description Twisted is an event-driven networking framework \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Tue Dec 2 12:20:13 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Tue, 2 Dec 2008 12:20:13 -0800 (PST) Subject: [42942] trunk/dports/python/py26-openssl/Portfile Message-ID: <20081202202013.8E1C07F2D18@beta.macosforge.org> Revision: 42942 http://trac.macports.org/changeset/42942 Author: mcalhoun at macports.org Date: 2008-12-02 12:20:13 -0800 (Tue, 02 Dec 2008) Log Message: ----------- py26-openssl: fix formatting error Modified Paths: -------------- trunk/dports/python/py26-openssl/Portfile Modified: trunk/dports/python/py26-openssl/Portfile =================================================================== --- trunk/dports/python/py26-openssl/Portfile 2008-12-02 20:14:34 UTC (rev 42941) +++ trunk/dports/python/py26-openssl/Portfile 2008-12-02 20:20:13 UTC (rev 42942) @@ -1,5 +1,5 @@ # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 -# $Id: Portfile 493 2008-12-02 05:50:20Z macports $ +# $Id:$ PortSystem 1.0 -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Tue Dec 2 12:29:45 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Tue, 2 Dec 2008 12:29:45 -0800 (PST) Subject: [42943] trunk/dports/python Message-ID: <20081202202946.071EE7F3446@beta.macosforge.org> Revision: 42943 http://trac.macports.org/changeset/42943 Author: mcalhoun at macports.org Date: 2008-12-02 12:29:45 -0800 (Tue, 02 Dec 2008) Log Message: ----------- py26-nose: new port Added Paths: ----------- trunk/dports/python/py26-nose/ trunk/dports/python/py26-nose/Portfile Added: trunk/dports/python/py26-nose/Portfile =================================================================== --- trunk/dports/python/py26-nose/Portfile (rev 0) +++ trunk/dports/python/py26-nose/Portfile 2008-12-02 20:29:45 UTC (rev 42943) @@ -0,0 +1,99 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 +# $Id:$ + +PortSystem 1.0 + +####################################################################################################### +# PortGroup python26 1.0 +####################################################################################################### +# Can be removed once MacPorts 1.7.0 is released +if {![info exists frameworks_dir]} { + set frameworks_dir ${prefix}/Library/Frameworks +} + +set python.bin ${prefix}/bin/python2.6 +set python.lib ${frameworks_dir}/Python.framework/Versions/2.6/Python +set python.pkgd ${frameworks_dir}/Python.framework/Versions/2.6/lib/python2.6/site-packages +set python.bindir ${frameworks_dir}/Python.framework/Versions/2.6/bin +set python.include ${frameworks_dir}/Python.framework/Versions/2.6/include/python2.6 + +categories python + +dist_subdir python + +depends_lib port:python26 + +use_configure no + +build.cmd ${python.bin} setup.py --no-user-cfg +build.target build + +destroot.cmd ${python.bin} setup.py --no-user-cfg +destroot.destdir --prefix=${frameworks_dir}/Python.framework/Versions/2.6 --root=${destroot} +configure.pkg_config_path ${frameworks_dir}/Python.framework/Versions/2.6/lib/pkgconfig + +set env(PATH) "${python.bindir}:$env(PATH)" + +pre-destroot { + xinstall -d -m 755 ${destroot}${prefix}/share/doc/${name}/examples +} +####################################################################################################### + +name py26-nose +version 0.10.4 +categories-append www +maintainers mcalhoun openmaintainer +description A Python unittest extension. +long_description \ + A unittest extension offering automatic test \ + suite discovery, simplified test authoring, \ + and output capture. Nose provides an alternate \ + test discovery and running process for \ + unittest, one that is intended to mimic the \ + behavior of py.test as much as is reasonably \ + possible without resorting to magic. + +platforms darwin + +homepage http://somethingaboutorange.com/mrl/projects/nose/ +master_sites ${homepage} +distname nose-${version} + +depends_lib port:py26-setuptools + +checksums \ + md5 4b4aec226d03f1d8465336a88d7183c4 \ + sha1 e0235c0d4dad211357c073df2376f1d9775d342c \ + rmd160 0a855579c2401f7a353d915b5ce21a7aa3dd5197 + +post-patch { + reinplace "s|man/man|share/man/man|" ${worksrcpath}/setup.py + + # One of the tests fails if this directory does not exist + file mkdir ${worksrcpath}/functional_tests/support/empty +} + +post-destroot { + set branch 2.6 + set framewpath ${frameworks_dir}/Python.framework + set framewdir ${framewpath}/Versions/${branch} + + ln -s ${framewdir}/share/man/man1/nosetests.1 ${destroot}${prefix}/share/man/man1/nosetests${branch}.1 + ln -s ${python.bindir}/nosetests ${destroot}${prefix}/bin/nosetests-${branch} + + xinstall -m 644 -W ${worksrcpath} \ + AUTHORS CHANGELOG NEWS README.txt \ + ${destroot}${prefix}/share/doc/${name} + + file copy ${worksrcpath}/doc ${destroot}${prefix}/share/doc/${name}/html + + file delete ${destroot}${prefix}/share/doc/${name}/examples + file copy ${worksrcpath}/examples ${destroot}${prefix}/share/doc/${name} +} + +test.run yes +test.cmd ${python.bin} setup.py test + +livecheck.check regex +livecheck.url ${homepage} +livecheck.regex "Current version: (\\d+(?:\\.\\d+)*)" -------------- next part -------------- An HTML attachment was scrubbed... URL: From toby at macports.org Tue Dec 2 12:32:32 2008 From: toby at macports.org (toby at macports.org) Date: Tue, 2 Dec 2008 12:32:32 -0800 (PST) Subject: [42944] trunk/dports/databases/sqlite3/Portfile Message-ID: <20081202203232.6B7417F3778@beta.macosforge.org> Revision: 42944 http://trac.macports.org/changeset/42944 Author: toby at macports.org Date: 2008-12-02 12:32:31 -0800 (Tue, 02 Dec 2008) Log Message: ----------- llvm fail Modified Paths: -------------- trunk/dports/databases/sqlite3/Portfile Modified: trunk/dports/databases/sqlite3/Portfile =================================================================== --- trunk/dports/databases/sqlite3/Portfile 2008-12-02 20:29:45 UTC (rev 42943) +++ trunk/dports/databases/sqlite3/Portfile 2008-12-02 20:32:31 UTC (rev 42944) @@ -47,3 +47,6 @@ configure.args-append --enable-load-extension } +platform darwin 10 { + configure.compiler gcc-4.2 +} -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 12:36:49 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 12:36:49 -0800 (PST) Subject: [42945] trunk/dports/x11/xorg-libXdmcp/Portfile Message-ID: <20081202203649.649AB7F3D45@beta.macosforge.org> Revision: 42945 http://trac.macports.org/changeset/42945 Author: jeremyhu at macports.org Date: 2008-12-02 12:36:48 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xorg-libXt: Fixed depends and build in parallel Modified Paths: -------------- trunk/dports/x11/xorg-libXdmcp/Portfile Modified: trunk/dports/x11/xorg-libXdmcp/Portfile =================================================================== --- trunk/dports/x11/xorg-libXdmcp/Portfile 2008-12-02 20:32:31 UTC (rev 42944) +++ trunk/dports/x11/xorg-libXdmcp/Portfile 2008-12-02 20:36:48 UTC (rev 42945) @@ -5,13 +5,17 @@ name xorg-libXdmcp version 1.0.2 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org libXdmcp homepage http://www.x.org platforms darwin macosx long_description X Display Manager Control Protocol routines master_sites ${homepage}/pub/individual/lib/ +use_parallel_build yes distname libXdmcp-${version} checksums sha1 0e2fd4a0d8e8b94a4b5af85f08a2fff27bf90238 use_bzip2 yes + +depends_build port:pkgconfig \ + port:xorg-xproto -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 12:37:23 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 12:37:23 -0800 (PST) Subject: [42946] trunk/dports/x11/xorg-libXt/Portfile Message-ID: <20081202203723.694D47F3E26@beta.macosforge.org> Revision: 42946 http://trac.macports.org/changeset/42946 Author: jeremyhu at macports.org Date: 2008-12-02 12:37:23 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xorg-libXt: Fixed depends and build in parallel Modified Paths: -------------- trunk/dports/x11/xorg-libXt/Portfile Modified: trunk/dports/x11/xorg-libXt/Portfile =================================================================== --- trunk/dports/x11/xorg-libXt/Portfile 2008-12-02 20:36:48 UTC (rev 42945) +++ trunk/dports/x11/xorg-libXt/Portfile 2008-12-02 20:37:23 UTC (rev 42946) @@ -5,7 +5,7 @@ name xorg-libXt version 1.0.5 categories x11 devel -maintainers nomaintainer +maintainers jeremyhu description X.org libXt homepage http://www.x.org platforms darwin macosx @@ -21,10 +21,11 @@ rmd160 7e5ef9e03dc860bf5b64b85a897dd1d2ae1ed0bf use_bzip2 yes +use_parallel_build yes -depends_lib port:pkgconfig \ +depends_build port:pkgconfig \ port:xorg-kbproto \ - port:xorg-proto \ - port:xorg-libXdmcp \ + port:xorg-proto +depends_lib port:xorg-libXdmcp \ port:xorg-libsm \ port:xorg-libX11 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 12:44:39 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 12:44:39 -0800 (PST) Subject: [42947] trunk/dports/x11/xorg-libX11/Portfile Message-ID: <20081202204439.5BA2E7F4594@beta.macosforge.org> Revision: 42947 http://trac.macports.org/changeset/42947 Author: jeremyhu at macports.org Date: 2008-12-02 12:44:39 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xorg-libX11: parallel build, default to not using xcb Modified Paths: -------------- trunk/dports/x11/xorg-libX11/Portfile Modified: trunk/dports/x11/xorg-libX11/Portfile =================================================================== --- trunk/dports/x11/xorg-libX11/Portfile 2008-12-02 20:37:23 UTC (rev 42946) +++ trunk/dports/x11/xorg-libX11/Portfile 2008-12-02 20:44:39 UTC (rev 42947) @@ -4,8 +4,9 @@ name xorg-libX11 version 1.1.5 +revision 1 categories x11 devel -maintainers jeremyhu at macports.org +maintainers jeremyhu description X.org libX11 homepage http://www.x.org platforms darwin macosx @@ -15,7 +16,21 @@ distname libX11-${version} checksums sha1 b703cb7c97e5aa35bf04a8df798e128ae16cf0d0 use_bzip2 yes +use_parallel_build yes -depends_lib port:pkgconfig port:xorg-xproto port:xorg-xextproto port:xorg-xtrans \ - port:xorg-libpthread-stubs port:xorg-libXau port:xorg-xcb-proto \ - port:xorg-libxcb port:xorg-xcmiscproto port:xorg-inputproto port:xorg-kbproto +depends_build port:pkgconfig \ + port:xorg-xproto \ + port:xorg-xtrans \ + port:xorg-xextproto \ + port:xorg-xf86bigfontproto \ + port:xorg-inputproto \ + port:xorg-kbproto +depends_lib port:xorg-libXdmcp \ + port:xorg-libXau + +configure.args --without-xcb +variant x11_xcb { + depends_lib-append port:xorg-libxcb + configure.args-delete --without-xcb + configure.args-append --with-xcb +} -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 12:49:35 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 12:49:35 -0800 (PST) Subject: [42948] trunk/dports/x11/xorg-libXt/Portfile Message-ID: <20081202204936.052677F498A@beta.macosforge.org> Revision: 42948 http://trac.macports.org/changeset/42948 Author: jeremyhu at macports.org Date: 2008-12-02 12:49:35 -0800 (Tue, 02 Dec 2008) Log Message: ----------- libXt: Fixed xproto dependency Modified Paths: -------------- trunk/dports/x11/xorg-libXt/Portfile Modified: trunk/dports/x11/xorg-libXt/Portfile =================================================================== --- trunk/dports/x11/xorg-libXt/Portfile 2008-12-02 20:44:39 UTC (rev 42947) +++ trunk/dports/x11/xorg-libXt/Portfile 2008-12-02 20:49:35 UTC (rev 42948) @@ -25,7 +25,7 @@ depends_build port:pkgconfig \ port:xorg-kbproto \ - port:xorg-proto + port:xorg-xproto depends_lib port:xorg-libXdmcp \ port:xorg-libsm \ port:xorg-libX11 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 12:50:37 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 12:50:37 -0800 (PST) Subject: [42949] trunk/dports/x11 Message-ID: <20081202205038.0AE407F4A3C@beta.macosforge.org> Revision: 42949 http://trac.macports.org/changeset/42949 Author: jeremyhu at macports.org Date: 2008-12-02 12:50:37 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xorg-libXfixes: New port for X11's libXfixes Added Paths: ----------- trunk/dports/x11/xorg-libXfixes/ trunk/dports/x11/xorg-libXfixes/Portfile Added: trunk/dports/x11/xorg-libXfixes/Portfile =================================================================== --- trunk/dports/x11/xorg-libXfixes/Portfile (rev 0) +++ trunk/dports/x11/xorg-libXfixes/Portfile 2008-12-02 20:50:37 UTC (rev 42949) @@ -0,0 +1,27 @@ +# $Id$ + +PortSystem 1.0 + +name xorg-libXfixes +version 4.0.3 +categories x11 devel +maintainers jeremyhu +description X.org libXfixes +homepage http://www.x.org +platforms darwin macosx +long_description ${description} +master_sites ${homepage}/pub/individual/lib/ + +distname libXfixes-${version} +checksums md5 1990d19725a3c7f32290037f02d3737f \ + sha1 37297e64239e1cc2a7b4372e27c5f9325f9f29dc \ + rmd160 fdc587914cc2896ec380219a285548c84f08b256 + +use_bzip2 yes +use_parallel_build yes + +depends_build port:pkgconfig \ + port:xorg-fixesproto \ + port:xorg-xproto \ + port:xorg-xextproto +depends_lib port:xorg-libX11 Property changes on: trunk/dports/x11/xorg-libXfixes/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 12:52:09 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 12:52:09 -0800 (PST) Subject: [42950] trunk/dports/PortIndex Message-ID: <20081202205211.6EC647F4AFE@beta.macosforge.org> Revision: 42950 http://trac.macports.org/changeset/42950 Author: portindex at macports.org Date: 2008-12-02 12:52:09 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5173 Ports successfully parsed: 5173 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 20:50:37 UTC (rev 42949) +++ trunk/dports/PortIndex 2008-12-02 20:52:09 UTC (rev 42950) @@ -746,8 +746,8 @@ variants universal portdir databases/spatialite-devel description {Spatial extensions for SQLite 3} homepage http://www.gaia-gis.it/spatialite-2.1/ epoch 0 platforms darwin name spatialite-devel depends_lib {port:sqlite3 port:geos port:proj} maintainers {landonf openmaintainer} long_description {SpatiaLite is a library for geographic information systems (GIS) that implements the core OpenGIS specification. It provides SQLite with basic support for spatial data is intended for lightweight GIS projects.} version 2.1 categories {databases gis} revision 0 sqlite2 629 variants universal portdir databases/sqlite2 description {an embedded SQL database engine} homepage http://www.sqlite.org/ epoch 0 platforms darwin name sqlite2 depends_lib port:readline maintainers nomaintainer long_description {SQLite is an SQL database engine in a C library. Programs that link the SQLite library can have SQL database access without running a separate RDBMS process. The distribution comes with a standalone command-line access program (sqlite) that can be used to administer an SQLite database and which serves as an example of how to use the SQLite library.} version 2.8.17 categories databases revision 0 -sqlite3 726 -variants {universal loadable_extensions} variant_desc {loadable_extensions {Enables experimental loadable extensions}} portdir databases/sqlite3 description {an embedded SQL database engine} homepage http://www.sqlite.org/ epoch 0 platforms darwin name sqlite3 depends_lib port:readline maintainers mww long_description {SQLite3 is an SQL database engine in a C library. Programs that link the SQLite3 library can have SQL database access without running a separate RDBMS process. The distribution comes with a standalone command-line access program (sqlite3) that can be used to administer an SQLite3 database and which serves as an example of how to use the SQLite3 library.} version 3.6.6.2 categories databases revision 0 +sqlite3 736 +variants {universal loadable_extensions darwin_10} variant_desc {loadable_extensions {Enables experimental loadable extensions}} portdir databases/sqlite3 description {an embedded SQL database engine} homepage http://www.sqlite.org/ epoch 0 platforms darwin name sqlite3 depends_lib port:readline maintainers mww long_description {SQLite3 is an SQL database engine in a C library. Programs that link the SQLite3 library can have SQL database access without running a separate RDBMS process. The distribution comes with a standalone command-line access program (sqlite3) that can be used to administer an SQLite3 database and which serves as an example of how to use the SQLite3 library.} version 3.6.6.2 categories databases revision 0 sqliteman 513 variants universal depends_build port:cmake portdir databases/sqliteman description {GUI tool for Sqlite3} homepage http://www.sqliteman.com/ epoch 0 platforms darwin depends_lib {port:sqlite3 port:qt4-mac port:qscintilla} name sqliteman long_description {The best developer's and/or admin's GUI tool for Sqlite3 in the world. No joking here (or just a bit only) - it contains the most complete feature set of all tools available.} maintainers {ricci openmaintainer} version 1.2.0 categories databases revision 0 tcl-sqlite3 679 @@ -7822,10 +7822,16 @@ variants universal portdir python/py25-zopeinterface description {Python interfaces for Zope} homepage http://www.zope.org/Products/ZopeInterface epoch 0 platforms darwin depends_lib port:python25 name py25-zopeinterface maintainers mww long_description {{Python interfaces for Zope}} categories {python zope} version 3.3.0 revision 0 py25-zsi 634 variants universal portdir python/py25-zsi description {Zolera SOAP Infrastructure is a Python implementation of SOAP} homepage http://pywebsvcs.sourceforge.net/ epoch 0 platforms darwin depends_lib port:python25 name py25-zsi maintainers stechert at macports.org long_description {ZSI, the Zolera SOAP Infrastructure, is a pure-Python module that provides an implementation of SOAP messaging, as described in The SOAP 1.1 Specification. It can also be used to build applications using SOAP Messages with Attachments. ZSI is intended to make it easier to write web services in Python.} categories {python net} version 2.0-rc3 revision 0 +py26-nose 628 +variants universal portdir python/py26-nose description {A Python unittest extension.} homepage http://somethingaboutorange.com/mrl/projects/nose/ epoch 0 platforms darwin depends_lib port:py26-setuptools name py26-nose maintainers {mcalhoun openmaintainer} long_description {A unittest extension offering automatic test suite discovery, simplified test authoring, and output capture. Nose provides an alternate test discovery and running process for unittest, one that is intended to mimic the behavior of py.test as much as is reasonably possible without resorting to magic.} categories {python www} version 0.10.4 revision 0 +py26-openssl 617 +variants {universal doc} variant_desc {doc {build html documentation}} portdir python/py26-openssl description {python wrapper around the OpenSSL library} homepage http://pyopenssl.sourceforge.net/ epoch 0 platforms {darwin freebsd} depends_lib {port:python26 port:openssl} name py26-openssl maintainers {mcalhoun openmaintainer} long_description {This python module is a rather thin wrapper around (a subset of) the OpenSSL library. With thin wrapper a lot of the object methods do nothing more than calling a corresponding function in the OpenSSL library.} categories {python devel security} version 0.8 revision 0 py26-pygments 549 variants universal portdir python/py26-pygments description {Python syntax highlighter} homepage http://pygments.org epoch 0 platforms darwin name py26-pygments depends_lib port:py26-setuptools maintainers {openmaintainer erickt at macports.org} long_description {Pygments is a fast syntax highlighter written in Python with a special focus on details. Can highlight source code in many supported languages: Python, Ruby, PHP, HTML etc. Outputs arbitrarily-styled HTML or LaTeX, comes with many builtin styles.} version 1.0 categories devel revision 0 py26-setuptools 546 variants universal portdir python/py26-setuptools description {distutils enhancement for build and distribution} homepage http://peak.telecommunity.com/DevCenter/setuptools epoch 0 platforms darwin depends_lib port:python26 name py26-setuptools maintainers {mcalhoun openmaintainer} long_description {setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages.} categories {python devel} version 0.6c9 revision 0 +py26-twisted 587 +variants universal portdir python/py26-twisted description {An event-based Python framework for internet applications} homepage http://www.twistedmatrix.com/ epoch 0 platforms darwin depends_lib {port:python26 port:py26-zopeinterface} name py26-twisted maintainers {mcalhoun openmaintainer} long_description {Twisted is an event-driven networking framework written in Python. Twisted supports TCP, UDP, SSL/TLS, multicast, Unix sockets, a large number of protocols (including HTTP, NNTP, SSH, IRC, FTP, and others), and much more.} categories {python devel net} version 8.1.0 revision 0 py26-zopeinterface 357 variants universal portdir python/py26-zopeinterface description {Python interfaces for Zope} homepage http://www.zope.org/Products/ZopeInterface epoch 0 platforms darwin depends_lib port:python26 name py26-zopeinterface maintainers {mcalhoun openmaintainer} long_description {{Python interfaces for Zope}} categories {python zope} version 3.3.0 revision 0 py30-bsddb 365 @@ -10114,16 +10120,16 @@ portdir x11/xorg-inputproto description {X.org inputproto} platforms darwin name xorg-inputproto version 1.5.0 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XInput extension to X11} xorg-kbproto 253 portdir x11/xorg-kbproto description {X.org kbproto} platforms darwin name xorg-kbproto version 1.0.3 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for Xkb extension to X11} -xorg-libX11 571 -variants universal portdir x11/xorg-libX11 description {X.org libX11} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libX11 depends_lib {port:pkgconfig port:xorg-xproto port:xorg-xextproto port:xorg-xtrans port:xorg-libpthread-stubs port:xorg-libXau port:xorg-xcb-proto port:xorg-libxcb port:xorg-xcmiscproto port:xorg-inputproto port:xorg-kbproto} maintainers jeremyhu at macports.org long_description {libX11 is the main library used by X Window System applications to communicate with the X server.} version 1.1.5 categories {x11 devel} revision 0 +xorg-libX11 544 +variants {universal x11_xcb} depends_build {port:pkgconfig port:xorg-xproto port:xorg-xtrans port:xorg-xextproto port:xorg-xf86bigfontproto port:xorg-inputproto port:xorg-kbproto} portdir x11/xorg-libX11 description {X.org libX11} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXdmcp port:xorg-libXau} name xorg-libX11 maintainers jeremyhu long_description {libX11 is the main library used by X Window System applications to communicate with the X server.} version 1.1.5 categories {x11 devel} revision 1 xorg-libXau 352 variants universal portdir x11/xorg-libXau description {X.org libXau} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXau depends_lib {port:xorg-util-macros port:xorg-libpthread-stubs port:xorg-xproto} maintainers bbyer at macports.org long_description {X Authorization Routines library} version 1.0.3 categories devel revision 0 -xorg-libXdmcp 295 -variants universal description {X.org libXdmcp} portdir x11/xorg-libXdmcp homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXdmcp long_description {X Display Manager Control Protocol routines} maintainers bbyer at macports.org categories {x11 devel} version 1.0.2 revision 0 +xorg-libXdmcp 333 +variants universal depends_build {port:pkgconfig port:xorg-xproto} portdir x11/xorg-libXdmcp description {X.org libXdmcp} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXdmcp maintainers jeremyhu long_description {X Display Manager Control Protocol routines} version 1.0.2 categories {x11 devel} revision 0 xorg-libXfont 558 variants universal portdir x11/xorg-libXfont description {X.org libXfont} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXfont depends_lib {port:pkgconfig port:freetype port:xorg-xproto port:xorg-xextproto port:xorg-xtrans port:xorg-libpthread-stubs port:xorg-libXau port:xorg-xcb-proto port:xorg-libfontenc port:xorg-libxcb port:xorg-xcmiscproto port:xorg-inputproto port:xorg-kbproto} maintainers bbyer at macports.org long_description {X font handling library for server & utilities} version 1.3.1 categories {x11 devel} revision 0 -xorg-libXt 546 -variants universal portdir x11/xorg-libXt description {X.org libXt} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXt depends_lib {port:pkgconfig port:xorg-kbproto port:xorg-proto port:xorg-libXdmcp port:xorg-libsm port:xorg-libX11} maintainers nomaintainer long_description {X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif (a Motif implementation).} version 1.0.5 categories {x11 devel} revision 0 +xorg-libXt 558 +variants universal depends_build {port:pkgconfig port:xorg-kbproto port:xorg-proto} portdir x11/xorg-libXt description {X.org libXt} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXdmcp port:xorg-libsm port:xorg-libX11} name xorg-libXt maintainers jeremyhu long_description {X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif (a Motif implementation).} version 1.0.5 categories {x11 devel} revision 0 xorg-libfontenc 504 variants universal portdir x11/xorg-libfontenc description {X.org libfontenc} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libfontenc depends_lib {port:pkgconfig port:xorg-xproto port:xorg-xextproto port:xorg-xtrans port:xorg-libpthread-stubs port:xorg-libXau port:xorg-xcb-proto port:xorg-libxcb port:xorg-xcmiscproto port:xorg-inputproto port:xorg-kbproto} maintainers bbyer at macports.org long_description {Font encoding library} version 1.0.4 categories {x11 devel} revision 0 xorg-libice 347 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 12:57:10 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 12:57:10 -0800 (PST) Subject: [42951] trunk/dports/x11 Message-ID: <20081202205710.8AC727F4E04@beta.macosforge.org> Revision: 42951 http://trac.macports.org/changeset/42951 Author: jeremyhu at macports.org Date: 2008-12-02 12:57:09 -0800 (Tue, 02 Dec 2008) Log Message: ----------- New port: xorg-libXext Added Paths: ----------- trunk/dports/x11/xorg-libXext/ trunk/dports/x11/xorg-libXext/Portfile Added: trunk/dports/x11/xorg-libXext/Portfile =================================================================== --- trunk/dports/x11/xorg-libXext/Portfile (rev 0) +++ trunk/dports/x11/xorg-libXext/Portfile 2008-12-02 20:57:09 UTC (rev 42951) @@ -0,0 +1,26 @@ +# $Id$ + +PortSystem 1.0 + +name xorg-libXext +version 1.0.4 +categories x11 devel +maintainers jeremyhu +description X.org libAppleWM +homepage http://www.x.org +platforms darwin macosx +long_description ${description} +master_sites ${homepage}/pub/individual/lib/ + +distname libXext-${version} +checksums md5 a91f1f722ac80c597cf0b75dcb8b48c0 \ + sha1 dbadb6b71d303f75980ea66ef76096a9d17243c4 \ + rmd160 c13e54d388f2fa91e09b221ca91a2ee281f10bbc + +use_bzip2 yes +use_parallel_build yes + +depends_build port:pkgconfig \ + port:xorg-xproto \ + port:xorg-xextproto +depends_lib port:xorg-libX11 Property changes on: trunk/dports/x11/xorg-libXext/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From devans at macports.org Tue Dec 2 13:12:59 2008 From: devans at macports.org (devans at macports.org) Date: Tue, 2 Dec 2008 13:12:59 -0800 (PST) Subject: [42952] trunk/dports/audio/easytag-devel/Portfile Message-ID: <20081202211259.DE83E7F5B06@beta.macosforge.org> Revision: 42952 http://trac.macports.org/changeset/42952 Author: devans at macports.org Date: 2008-12-02 13:12:59 -0800 (Tue, 02 Dec 2008) Log Message: ----------- easytag-devel: maintainer timeout, update to 2.1.6, change dependency to libmp4v2, fix livecheck. Closes #17297. Modified Paths: -------------- trunk/dports/audio/easytag-devel/Portfile Modified: trunk/dports/audio/easytag-devel/Portfile =================================================================== --- trunk/dports/audio/easytag-devel/Portfile 2008-12-02 20:57:09 UTC (rev 42951) +++ trunk/dports/audio/easytag-devel/Portfile 2008-12-02 21:12:59 UTC (rev 42952) @@ -3,7 +3,7 @@ PortSystem 1.0 name easytag-devel -version 2.1.5 +version 2.1.6 categories audio platforms darwin maintainers gmail.com:bytestorm @@ -18,9 +18,9 @@ master_sites sourceforge:easytag -checksums md5 f80ceb61da7335fbbdaeef365d65d3be \ - sha1 25c9db7c2fe6f809d4275e3af142d428c3b3ca21 \ - rmd160 6ff55c3224862b701e131b367d82282a8264b1ad +checksums md5 6c5b9dc2bf1f3b0a11bd4efc81aaa9ee \ + sha1 e2d378d63d872d16a33b45515858cdfab7755645 \ + rmd160 2ba568b34762e538e26582d9ce648114b7ee5274 use_bzip2 yes @@ -58,7 +58,7 @@ } variant mp4 { configure.args-delete --disable-mp4 - depends_lib-append port:mpeg4ip + depends_lib-append lib:libmp4v2:libmp4v2 depends_build-append port:faad2 } @@ -70,3 +70,5 @@ depends_lib-append port:wavpack } +livecheck.regex "easytag unstable \\(gtk 2\\) (\\d+(?:\\.\\d+)*) released.*" + -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Tue Dec 2 13:15:12 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Tue, 2 Dec 2008 13:15:12 -0800 (PST) Subject: [42953] trunk/dports/python Message-ID: <20081202211513.0761B7F5D18@beta.macosforge.org> Revision: 42953 http://trac.macports.org/changeset/42953 Author: mcalhoun at macports.org Date: 2008-12-02 13:15:12 -0800 (Tue, 02 Dec 2008) Log Message: ----------- py26-*: fix subversion ID tag line Modified Paths: -------------- trunk/dports/python/py26-nose/Portfile trunk/dports/python/py26-openssl/Portfile trunk/dports/python/py26-twisted/Portfile trunk/dports/python/py26-zopeinterface/Portfile Modified: trunk/dports/python/py26-nose/Portfile =================================================================== --- trunk/dports/python/py26-nose/Portfile 2008-12-02 21:12:59 UTC (rev 42952) +++ trunk/dports/python/py26-nose/Portfile 2008-12-02 21:15:12 UTC (rev 42953) @@ -1,5 +1,5 @@ # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 -# $Id:$ +# $Id$ PortSystem 1.0 Modified: trunk/dports/python/py26-openssl/Portfile =================================================================== --- trunk/dports/python/py26-openssl/Portfile 2008-12-02 21:12:59 UTC (rev 42952) +++ trunk/dports/python/py26-openssl/Portfile 2008-12-02 21:15:12 UTC (rev 42953) @@ -1,5 +1,5 @@ # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 -# $Id:$ +# $Id$ PortSystem 1.0 Modified: trunk/dports/python/py26-twisted/Portfile =================================================================== --- trunk/dports/python/py26-twisted/Portfile 2008-12-02 21:12:59 UTC (rev 42952) +++ trunk/dports/python/py26-twisted/Portfile 2008-12-02 21:15:12 UTC (rev 42953) @@ -1,5 +1,5 @@ # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 -# $Id:$ +# $Id$ PortSystem 1.0 Modified: trunk/dports/python/py26-zopeinterface/Portfile =================================================================== --- trunk/dports/python/py26-zopeinterface/Portfile 2008-12-02 21:12:59 UTC (rev 42952) +++ trunk/dports/python/py26-zopeinterface/Portfile 2008-12-02 21:15:12 UTC (rev 42953) @@ -1,5 +1,5 @@ # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 -# $Id:$ +# $Id$ PortSystem 1.0 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Dec 2 13:15:20 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 13:15:20 -0800 (PST) Subject: [42954] trunk/dports/devel/libtool1/Portfile Message-ID: <20081202211520.E7AB27F5E40@beta.macosforge.org> Revision: 42954 http://trac.macports.org/changeset/42954 Author: ryandesign at macports.org Date: 2008-12-02 13:15:20 -0800 (Tue, 02 Dec 2008) Log Message: ----------- libtool1: fix livecheck, and change dist_subdir so people don't have to re-download a file they already have from the libtool port Modified Paths: -------------- trunk/dports/devel/libtool1/Portfile Modified: trunk/dports/devel/libtool1/Portfile =================================================================== --- trunk/dports/devel/libtool1/Portfile 2008-12-02 21:15:12 UTC (rev 42953) +++ trunk/dports/devel/libtool1/Portfile 2008-12-02 21:15:20 UTC (rev 42954) @@ -3,6 +3,7 @@ PortSystem 1.0 name libtool1 +set my_name libtool version 1.5.26 categories devel sysutils maintainers nomaintainer @@ -17,7 +18,8 @@ platforms darwin freebsd master_sites gnu:libtool -distname libtool-${version} +dist_subdir ${my_name} +distname ${my_name}-${version} checksums md5 aa9c5107f3ec9ef4200eb6556f3b3c29 \ sha1 4c1738351736562a951a345e24f233d00953ec0a \ rmd160 4d1d7dd0308b98e8f590723ae5daddb8da49ac11 @@ -51,5 +53,5 @@ test.target check livecheck.check regex -livecheck.url http://ftp.gnu.org/gnu/${name}/?C=M&O=D -livecheck.regex ${name}-(\\d+(?:\\.\\d+)*) +livecheck.url http://ftp.gnu.org/gnu/${my_name}/?C=M&O=D +livecheck.regex ${my_name}-(1(?:\\.\\d+)+) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 13:24:38 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 13:24:38 -0800 (PST) Subject: [42955] trunk/dports/x11/xorg-libXext/Portfile Message-ID: <20081202212438.7DE217F6113@beta.macosforge.org> Revision: 42955 http://trac.macports.org/changeset/42955 Author: jeremyhu at macports.org Date: 2008-12-02 13:24:38 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xorg-libXext: Fixed description. Modified Paths: -------------- trunk/dports/x11/xorg-libXext/Portfile Modified: trunk/dports/x11/xorg-libXext/Portfile =================================================================== --- trunk/dports/x11/xorg-libXext/Portfile 2008-12-02 21:15:20 UTC (rev 42954) +++ trunk/dports/x11/xorg-libXext/Portfile 2008-12-02 21:24:38 UTC (rev 42955) @@ -6,7 +6,7 @@ version 1.0.4 categories x11 devel maintainers jeremyhu -description X.org libAppleWM +description X.org libXext homepage http://www.x.org platforms darwin macosx long_description ${description} -------------- next part -------------- An HTML attachment was scrubbed... URL: From devans at macports.org Tue Dec 2 13:28:53 2008 From: devans at macports.org (devans at macports.org) Date: Tue, 2 Dec 2008 13:28:53 -0800 (PST) Subject: [42956] trunk/dports/audio/aacgain/Portfile Message-ID: <20081202212854.574F07F65B4@beta.macosforge.org> Revision: 42956 http://trac.macports.org/changeset/42956 Author: devans at macports.org Date: 2008-12-02 13:28:53 -0800 (Tue, 02 Dec 2008) Log Message: ----------- aacgain: change dependency from mpeg4ip to libmp4v2 (maintainer timeout). Closes #17298. Modified Paths: -------------- trunk/dports/audio/aacgain/Portfile Modified: trunk/dports/audio/aacgain/Portfile =================================================================== --- trunk/dports/audio/aacgain/Portfile 2008-12-02 21:24:38 UTC (rev 42955) +++ trunk/dports/audio/aacgain/Portfile 2008-12-02 21:28:53 UTC (rev 42956) @@ -1,6 +1,7 @@ # $Id$ PortSystem 1.0 + name aacgain version 1.7 categories audio @@ -17,7 +18,7 @@ checksums md5 de7a95488dac7c34c45896a4c0772709 patchfiles patch-libfaad-common.h -depends_lib port:mpeg4ip port:faad2 +depends_lib lib:libmp4v2:libmp4v2 port:faad2 platform darwin { configure.cflags-append "-DHAS_LRINTF" -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 13:37:22 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 13:37:22 -0800 (PST) Subject: [42957] trunk/dports/x11 Message-ID: <20081202213722.B4E6D7F6AD5@beta.macosforge.org> Revision: 42957 http://trac.macports.org/changeset/42957 Author: jeremyhu at macports.org Date: 2008-12-02 13:37:22 -0800 (Tue, 02 Dec 2008) Log Message: ----------- New port: xorg-libAppleWM Added Paths: ----------- trunk/dports/x11/xorg-libAppleWM/ trunk/dports/x11/xorg-libAppleWM/Portfile Added: trunk/dports/x11/xorg-libAppleWM/Portfile =================================================================== --- trunk/dports/x11/xorg-libAppleWM/Portfile (rev 0) +++ trunk/dports/x11/xorg-libAppleWM/Portfile 2008-12-02 21:37:22 UTC (rev 42957) @@ -0,0 +1,28 @@ +# $Id$ + +PortSystem 1.0 + +name xorg-libAppleWM +version 1.0.0 +categories x11 devel +maintainers jeremyhu +description X.org libAppleWM +homepage http://www.x.org +platforms darwin macosx +long_description ${description} +master_sites ${homepage}/pub/individual/lib/ + +distname libAppleWM-${version} +checksums md5 48a403c45be2206ee900729ced3a0e62 \ + sha1 2164f2904d9108326ec6e0899701e0759fcc7ebd \ + rmd160 2116fa3d0a28517140719c649020f1ecabdabfb3 + +use_bzip2 yes +use_parallel_build yes + +depends_build port:pkgconfig \ + port:xorg-applewmproto \ + port:xorg-xproto \ + port:xorg-xextproto +depends_lib port:xorg-libX11 \ + port:xorg-libXext Property changes on: trunk/dports/x11/xorg-libAppleWM/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Tue Dec 2 13:37:47 2008 From: blb at macports.org (blb at macports.org) Date: Tue, 2 Dec 2008 13:37:47 -0800 (PST) Subject: [42958] trunk/dports/audio/twolame/Portfile Message-ID: <20081202213747.4CF677F6B39@beta.macosforge.org> Revision: 42958 http://trac.macports.org/changeset/42958 Author: blb at macports.org Date: 2008-12-02 13:37:46 -0800 (Tue, 02 Dec 2008) Log Message: ----------- audio/twolame - fix categories since twolame is located in audio/ Modified Paths: -------------- trunk/dports/audio/twolame/Portfile Modified: trunk/dports/audio/twolame/Portfile =================================================================== --- trunk/dports/audio/twolame/Portfile 2008-12-02 21:37:22 UTC (rev 42957) +++ trunk/dports/audio/twolame/Portfile 2008-12-02 21:37:46 UTC (rev 42958) @@ -5,7 +5,7 @@ name twolame version 0.3.3 revision 1 -categories multimedia +categories audio multimedia platforms darwin maintainers nomaintainer description TwoLAME is an optimized MPEG Audio Layer 2 encoder -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 13:41:12 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 13:41:12 -0800 (PST) Subject: [42959] trunk/dports/x11 Message-ID: <20081202214112.B7F8D7F6C17@beta.macosforge.org> Revision: 42959 http://trac.macports.org/changeset/42959 Author: jeremyhu at macports.org Date: 2008-12-02 13:41:12 -0800 (Tue, 02 Dec 2008) Log Message: ----------- New port: xorg-glproto Added Paths: ----------- trunk/dports/x11/xorg-glproto/ trunk/dports/x11/xorg-glproto/Portfile Added: trunk/dports/x11/xorg-glproto/Portfile =================================================================== --- trunk/dports/x11/xorg-glproto/Portfile (rev 0) +++ trunk/dports/x11/xorg-glproto/Portfile 2008-12-02 21:41:12 UTC (rev 42959) @@ -0,0 +1,20 @@ +# $Id$ +PortSystem 1.0 + +name xorg-glproto +version 1.4.9 +categories x11 devel +maintainers jeremyhu +description X.org glproto +homepage http://www.x.org +platforms darwin +long_description Prototype headers for the GLX extension to X11 +master_sites ${homepage}/pub/individual/proto/ + +distname glproto-${version} +checksums md5 e60951628422663e60faeb400f27bac1 \ + sha1 6a8e17ff3ac08224d0aef2b3c27b6aecfebaa95b \ + rmd160 54c08968532bccfbd666eafc2cb4132432096d10 + +use_bzip2 yes +universal_variant no Property changes on: trunk/dports/x11/xorg-glproto/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Tue Dec 2 13:47:09 2008 From: blb at macports.org (blb at macports.org) Date: Tue, 2 Dec 2008 13:47:09 -0800 (PST) Subject: [42960] trunk/dports/audio/twolame/Portfile Message-ID: <20081202214709.4C2A27F6D3F@beta.macosforge.org> Revision: 42960 http://trac.macports.org/changeset/42960 Author: blb at macports.org Date: 2008-12-02 13:47:08 -0800 (Tue, 02 Dec 2008) Log Message: ----------- audio/twolame - version bump to 0.3.12 Modified Paths: -------------- trunk/dports/audio/twolame/Portfile Modified: trunk/dports/audio/twolame/Portfile =================================================================== --- trunk/dports/audio/twolame/Portfile 2008-12-02 21:41:12 UTC (rev 42959) +++ trunk/dports/audio/twolame/Portfile 2008-12-02 21:47:08 UTC (rev 42960) @@ -3,8 +3,7 @@ PortSystem 1.0 name twolame -version 0.3.3 -revision 1 +version 0.3.12 categories audio multimedia platforms darwin maintainers nomaintainer @@ -13,10 +12,13 @@ homepage http://twolame.sourceforge.net/ master_sites sourceforge -checksums md5 5d9a829c68e7785db0d1554a0cfd6c87 -distname twolame-${version} +checksums md5 d38c3ead5ac49b7425c1a9ef91126a35 \ + sha1 64d621c2967fe8a2fda20f75230a8220fb740090 \ + rmd160 d5577b36380007ecc701e3afb5b98bc145790085 configure.args --mandir=${prefix}/share/man -depends_lib port:libsndfile \ - port:libtool +depends_build port:pkgconfig + +depends_lib port:libsndfile port:libtool + -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 13:51:56 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 13:51:56 -0800 (PST) Subject: [42961] trunk/dports/PortIndex Message-ID: <20081202215157.D03327F6DBB@beta.macosforge.org> Revision: 42961 http://trac.macports.org/changeset/42961 Author: portindex at macports.org Date: 2008-12-02 13:51:55 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5177 Ports successfully parsed: 5177 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 21:47:08 UTC (rev 42960) +++ trunk/dports/PortIndex 2008-12-02 21:51:55 UTC (rev 42961) @@ -268,8 +268,8 @@ variants universal description {Framework for reading and writing ID3Tags} portdir audio/ID3 homepage http://drewfamily.homemail.com.au/Cocoa_-_ID3Tag_framework.html epoch 0 platforms macosx name ID3 long_description {ID3Tag.framework is as the name suggests a Cocoa based framework for reading and writing ID3Tags. It is written in Objective C and uses the Cocoa (Foundation) tool kit, hence it is ideal for Cocoa based applications. ID3Panel.framework is as a Cocoa panel framework that uses ID3Tag.framework to provide the user with a one call modal panel for editing ID3 tags modelled after the tag editor in iTunes.} maintainers waqar at macports.org categories {audio devel aqua} version 0.98 revision 0 a52dec 521 variants universal depends_build port:libtool portdir audio/a52dec description {library for decoding ATSC A/52 streams, aka AC-3} homepage http://liba52.sourceforge.net/ epoch 0 platforms darwin name a52dec maintainers nomaintainer long_description {liba52 is a free library for decoding ATSC A/52 streams. It is released under the terms of the GPL license. The A/52 standard is used in a variety of applications, including digital television and DVD. It is also known as AC-3.} version 0.7.4 categories audio revision 0 -aacgain 382 -variants {universal darwin} portdir audio/aacgain description {AAC/MP3 normalisation tool} homepage http://altosdesign.com/aacgain/ epoch 0 platforms darwin name aacgain depends_lib {port:mpeg4ip port:faad2} maintainers tristan at cs.dartmouth.edu long_description {A modification of mp3gain to normalise the volume of MP3 and AAC audio files.} version 1.7 categories audio revision 0 +aacgain 391 +variants {universal darwin} portdir audio/aacgain description {AAC/MP3 normalisation tool} homepage http://altosdesign.com/aacgain/ epoch 0 platforms darwin name aacgain depends_lib {lib:libmp4v2:libmp4v2 port:faad2} maintainers tristan at cs.dartmouth.edu long_description {A modification of mp3gain to normalise the volume of MP3 and AAC audio files.} version 1.7 categories audio revision 0 abcMIDI 368 variants universal description {ABC to midi and vice versa converter} portdir audio/abcMIDI homepage http://ifdo.pugmarks.com/~seymour/runabc/top.html epoch 0 platforms darwin name abcMIDI long_description {ABC is a text-based music notation language. These tools can convert ABC to midi and vice versa.} maintainers mww categories audio version 2008-09-28 revision 0 abcde 550 @@ -305,7 +305,7 @@ easytag 661 variants {universal ogg flac mp4 mp3} depends_build port:hicolor-icon-theme variant_desc {ogg {Enable ogg support} flac {Enable flac support} mp4 {Enable mp4 support} mp3 {Enable mp3 support}} portdir audio/easytag description {Tool for editing tags of audio files} homepage http://easytag.sf.net/ epoch 0 platforms darwin name easytag depends_lib {port:gtk2 port:gettext} maintainers nomaintainer long_description {EasyTAG is an utility for viewing and editing tags for MP3, MP2, FLAC, Ogg Vorbis, MusePack, Monkey's audio files and MP4/AAC. Its simple and nice GTK2+ interface makes tagging easier under UNIX systems.} categories audio version 2.1 revision 0 easytag-devel 577 -variants {universal ogg flac mp4 mp3 wavpack} depends_build port:hicolor-icon-theme portdir audio/easytag-devel description {Tool for editing tags of audio files} homepage http://easytag.sf.net/ epoch 0 platforms darwin name easytag-devel depends_lib {port:gtk2 port:gettext} maintainers gmail.com:bytestorm long_description {EasyTAG is an utility for viewing and editing tags for MP3, MP2, FLAC, Ogg Vorbis, MusePack and Monkey's audio files and MP4/AAC. It's simple and nice GTK+2 interface makes tagging easier under UNIX systems.} version 2.1.5 categories audio revision 0 +variants {universal ogg flac mp4 mp3 wavpack} depends_build port:hicolor-icon-theme portdir audio/easytag-devel description {Tool for editing tags of audio files} homepage http://easytag.sf.net/ epoch 0 platforms darwin name easytag-devel depends_lib {port:gtk2 port:gettext} maintainers gmail.com:bytestorm long_description {EasyTAG is an utility for viewing and editing tags for MP3, MP2, FLAC, Ogg Vorbis, MusePack and Monkey's audio files and MP4/AAC. It's simple and nice GTK+2 interface makes tagging easier under UNIX systems.} version 2.1.6 categories audio revision 0 esound 629 variants {universal puredarwin} depends_build port:pkgconfig portdir audio/esound description {Enlightened Sound Daemon (ESD)} homepage http://www.tux.org/~ricdude/EsounD.html epoch 0 platforms darwin name esound depends_lib port:audiofile long_description {EsounD, the Enlightened Sound Daemon, is a server process that mixes several audio streams for playback by a single audio device. For example, if you're listening to music on a CD and you receive a sound-related event from ICQ, the two applications won't have to jockey for the use of your sound card.} maintainers nomaintainer version 0.2.40 categories audio revision 1 etree-scripts 493 @@ -466,8 +466,8 @@ variants universal portdir audio/taglib-sharp description {C# implementation of TagLib.} homepage http://www.taglib-sharp.com/ epoch 0 platforms darwin name taglib-sharp depends_lib port:mono maintainers {simon openmaintainer} long_description {{C# implementation of TagLib.} TagLib is a library for reading and editing the meta-data of several popular audio formats.} version 2.0.3.0 categories audio revision 0 tagtool 801 variants universal depends_build {bin:grep:grep bin:fgrep:grep port:pkgconfig port:intltool} portdir audio/tagtool description {Audio Tag Tool is a program to manage the information fields in MP3 and Ogg Vorbis files, commonly called tags.} homepage http://pwp.netcabo.pt/paol/tagtool/ epoch 0 platforms darwin depends_lib {port:id3lib port:libvorbis port:gettext port:gtk2 port:libglade2 port:libxml2 port:sqlite3 port:libffi} name tagtool maintainers raimue long_description {{Audio Tag Tool is a program to manage the information fields in MP3 and Ogg Vorbis files, commonly called tags.} Tag Tool can be used to edit tags one by one, but the most useful features are the ability to easily tag or rename hundreds of files at once, in any desired format.} version 0.12.3 categories audio revision 0 -twolame 372 -variants universal portdir audio/twolame description {TwoLAME is an optimized MPEG Audio Layer 2 encoder} homepage http://twolame.sourceforge.net/ epoch 0 platforms darwin name twolame depends_lib {port:libsndfile port:libtool} maintainers nomaintainer long_description {{TwoLAME is an optimized MPEG Audio Layer 2 encoder}} version 0.3.3 categories multimedia revision 1 +twolame 380 +variants universal portdir audio/twolame description {TwoLAME is an optimized MPEG Audio Layer 2 encoder} homepage http://twolame.sourceforge.net/ epoch 0 platforms darwin name twolame depends_lib {port:libsndfile port:libtool} maintainers nomaintainer long_description {{TwoLAME is an optimized MPEG Audio Layer 2 encoder}} version 0.3.3 categories {audio multimedia} revision 1 uade2 532 variants {universal uadefs xmms} variant_desc {uadefs {Build with Amiga to WAV filesystem (fuse)} xmms {Build with plugin for the xmms player}} portdir audio/uade2 description {Unix Amiga Delitracker Emulator} homepage http://zakalwe.fi/uade epoch 0 platforms darwin name uade2 depends_lib {port:libao port:pkgconfig} maintainers mac.com:mlund long_description {UADE plays old amiga music formats by emulating Amiga hardware. It re-uses Amiga Eagleplayer plugins to play different formats.} version 2.12 categories audio revision 0 vorbis-tools 861 @@ -10116,20 +10116,28 @@ portdir x11/xorg-fontcacheproto description {X.org fontcacheproto} platforms darwin name xorg-fontcacheproto version 0.1.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the Fontcache library} xorg-fontsproto 263 portdir x11/xorg-fontsproto description {X.org fontsproto} platforms darwin name xorg-fontsproto version 2.0.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Font-related prototype header files for X11} +xorg-glproto 257 +portdir x11/xorg-glproto description {X.org glproto} platforms darwin name xorg-glproto version 1.4.9 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the GLX extension to X11} xorg-inputproto 269 portdir x11/xorg-inputproto description {X.org inputproto} platforms darwin name xorg-inputproto version 1.5.0 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XInput extension to X11} xorg-kbproto 253 portdir x11/xorg-kbproto description {X.org kbproto} platforms darwin name xorg-kbproto version 1.0.3 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for Xkb extension to X11} +xorg-libAppleWM 406 +variants universal depends_build {port:pkgconfig port:xorg-applewmproto port:xorg-xproto port:xorg-xextproto} portdir x11/xorg-libAppleWM description {X.org libAppleWM} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libX11 port:xorg-libXext} name xorg-libAppleWM maintainers jeremyhu long_description {{X.org libAppleWM}} version 1.0.0 categories {x11 devel} revision 0 xorg-libX11 544 variants {universal x11_xcb} depends_build {port:pkgconfig port:xorg-xproto port:xorg-xtrans port:xorg-xextproto port:xorg-xf86bigfontproto port:xorg-inputproto port:xorg-kbproto} portdir x11/xorg-libX11 description {X.org libX11} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXdmcp port:xorg-libXau} name xorg-libX11 maintainers jeremyhu long_description {libX11 is the main library used by X Window System applications to communicate with the X server.} version 1.1.5 categories {x11 devel} revision 1 xorg-libXau 352 variants universal portdir x11/xorg-libXau description {X.org libXau} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXau depends_lib {port:xorg-util-macros port:xorg-libpthread-stubs port:xorg-xproto} maintainers bbyer at macports.org long_description {X Authorization Routines library} version 1.0.3 categories devel revision 0 xorg-libXdmcp 333 variants universal depends_build {port:pkgconfig port:xorg-xproto} portdir x11/xorg-libXdmcp description {X.org libXdmcp} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXdmcp maintainers jeremyhu long_description {X Display Manager Control Protocol routines} version 1.0.2 categories {x11 devel} revision 0 +xorg-libXext 351 +variants universal depends_build {port:pkgconfig port:xorg-xproto port:xorg-xextproto} portdir x11/xorg-libXext description {X.org libXext} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib port:xorg-libX11 name xorg-libXext maintainers jeremyhu long_description {{X.org libXext}} version 1.0.4 categories {x11 devel} revision 0 +xorg-libXfixes 380 +variants universal depends_build {port:pkgconfig port:xorg-fixesproto port:xorg-xproto port:xorg-xextproto} portdir x11/xorg-libXfixes description {X.org libXfixes} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib port:xorg-libX11 name xorg-libXfixes maintainers jeremyhu long_description {{X.org libXfixes}} version 4.0.3 categories {x11 devel} revision 0 xorg-libXfont 558 variants universal portdir x11/xorg-libXfont description {X.org libXfont} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXfont depends_lib {port:pkgconfig port:freetype port:xorg-xproto port:xorg-xextproto port:xorg-xtrans port:xorg-libpthread-stubs port:xorg-libXau port:xorg-xcb-proto port:xorg-libfontenc port:xorg-libxcb port:xorg-xcmiscproto port:xorg-inputproto port:xorg-kbproto} maintainers bbyer at macports.org long_description {X font handling library for server & utilities} version 1.3.1 categories {x11 devel} revision 0 -xorg-libXt 558 -variants universal depends_build {port:pkgconfig port:xorg-kbproto port:xorg-proto} portdir x11/xorg-libXt description {X.org libXt} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXdmcp port:xorg-libsm port:xorg-libX11} name xorg-libXt maintainers jeremyhu long_description {X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif (a Motif implementation).} version 1.0.5 categories {x11 devel} revision 0 +xorg-libXt 559 +variants universal depends_build {port:pkgconfig port:xorg-kbproto port:xorg-xproto} portdir x11/xorg-libXt description {X.org libXt} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXdmcp port:xorg-libsm port:xorg-libX11} name xorg-libXt maintainers jeremyhu long_description {X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif (a Motif implementation).} version 1.0.5 categories {x11 devel} revision 0 xorg-libfontenc 504 variants universal portdir x11/xorg-libfontenc description {X.org libfontenc} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libfontenc depends_lib {port:pkgconfig port:xorg-xproto port:xorg-xextproto port:xorg-xtrans port:xorg-libpthread-stubs port:xorg-libXau port:xorg-xcb-proto port:xorg-libxcb port:xorg-xcmiscproto port:xorg-inputproto port:xorg-kbproto} maintainers bbyer at macports.org long_description {Font encoding library} version 1.0.4 categories {x11 devel} revision 0 xorg-libice 347 -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Tue Dec 2 14:43:19 2008 From: blb at macports.org (blb at macports.org) Date: Tue, 2 Dec 2008 14:43:19 -0800 (PST) Subject: [42962] trunk/base/portmgr/dmg/postflight Message-ID: <20081202224319.8D0937F778C@beta.macosforge.org> Revision: 42962 http://trac.macports.org/changeset/42962 Author: blb at macports.org Date: 2008-12-02 14:43:19 -0800 (Tue, 02 Dec 2008) Log Message: ----------- postflight - upgrade sources.conf before dep_map cleaning, just like in r42760 Modified Paths: -------------- trunk/base/portmgr/dmg/postflight Modified: trunk/base/portmgr/dmg/postflight =================================================================== --- trunk/base/portmgr/dmg/postflight 2008-12-02 21:51:55 UTC (rev 42961) +++ trunk/base/portmgr/dmg/postflight 2008-12-02 22:43:19 UTC (rev 42962) @@ -59,10 +59,10 @@ echo "Successful!" fi + # Add [default] tag to the central MacPorts repository, if it isn't already + ${TCLSH} upgrade_sources_conf_default.tcl ${PREFIX} # Remove any duplicates from the dep map (could occur with 1.6 and earlier) ${TCLSH} dep_map_clean.tcl ${TCL_PACKAGE_DIR} - # Add [default] tag to the central MacPorts repository, if it isn't already - ${TCLSH} upgrade_sources_conf_default.tcl ${PREFIX} } # Through this command we write an environment variable to an appropriate shell configuration file, -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Tue Dec 2 14:45:29 2008 From: blb at macports.org (blb at macports.org) Date: Tue, 2 Dec 2008 14:45:29 -0800 (PST) Subject: [42963] branches/release_1_7 Message-ID: <20081202224529.DA2C27F78DB@beta.macosforge.org> Revision: 42963 http://trac.macports.org/changeset/42963 Author: blb at macports.org Date: 2008-12-02 14:45:29 -0800 (Tue, 02 Dec 2008) Log Message: ----------- merge r42962 from trunk: postflight - upgrade sources.conf before dep_map cleaning (like r42761) Modified Paths: -------------- branches/release_1_7/base/portmgr/dmg/postflight Property Changed: ---------------- branches/release_1_7/ Property changes on: branches/release_1_7 ___________________________________________________________________ Modified: svn:mergeinfo - /trunk:42683,42697,42734,42747,42760,42845-42847,42865 + /trunk:42683,42697,42734,42747,42760,42845-42847,42865,42962 Modified: branches/release_1_7/base/portmgr/dmg/postflight =================================================================== --- branches/release_1_7/base/portmgr/dmg/postflight 2008-12-02 22:43:19 UTC (rev 42962) +++ branches/release_1_7/base/portmgr/dmg/postflight 2008-12-02 22:45:29 UTC (rev 42963) @@ -59,10 +59,10 @@ echo "Successful!" fi + # Add [default] tag to the central MacPorts repository, if it isn't already + ${TCLSH} upgrade_sources_conf_default.tcl ${PREFIX} # Remove any duplicates from the dep map (could occur with 1.6 and earlier) ${TCLSH} dep_map_clean.tcl ${TCL_PACKAGE_DIR} - # Add [default] tag to the central MacPorts repository, if it isn't already - ${TCLSH} upgrade_sources_conf_default.tcl ${PREFIX} } # Through this command we write an environment variable to an appropriate shell configuration file, -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 14:52:11 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 14:52:11 -0800 (PST) Subject: [42964] trunk/dports/PortIndex Message-ID: <20081202225213.011887F7B9D@beta.macosforge.org> Revision: 42964 http://trac.macports.org/changeset/42964 Author: portindex at macports.org Date: 2008-12-02 14:52:11 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5177 Ports successfully parsed: 5177 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 22:45:29 UTC (rev 42963) +++ trunk/dports/PortIndex 2008-12-02 22:52:11 UTC (rev 42964) @@ -466,8 +466,8 @@ variants universal portdir audio/taglib-sharp description {C# implementation of TagLib.} homepage http://www.taglib-sharp.com/ epoch 0 platforms darwin name taglib-sharp depends_lib port:mono maintainers {simon openmaintainer} long_description {{C# implementation of TagLib.} TagLib is a library for reading and editing the meta-data of several popular audio formats.} version 2.0.3.0 categories audio revision 0 tagtool 801 variants universal depends_build {bin:grep:grep bin:fgrep:grep port:pkgconfig port:intltool} portdir audio/tagtool description {Audio Tag Tool is a program to manage the information fields in MP3 and Ogg Vorbis files, commonly called tags.} homepage http://pwp.netcabo.pt/paol/tagtool/ epoch 0 platforms darwin depends_lib {port:id3lib port:libvorbis port:gettext port:gtk2 port:libglade2 port:libxml2 port:sqlite3 port:libffi} name tagtool maintainers raimue long_description {{Audio Tag Tool is a program to manage the information fields in MP3 and Ogg Vorbis files, commonly called tags.} Tag Tool can be used to edit tags one by one, but the most useful features are the ability to easily tag or rename hundreds of files at once, in any desired format.} version 0.12.3 categories audio revision 0 -twolame 380 -variants universal portdir audio/twolame description {TwoLAME is an optimized MPEG Audio Layer 2 encoder} homepage http://twolame.sourceforge.net/ epoch 0 platforms darwin name twolame depends_lib {port:libsndfile port:libtool} maintainers nomaintainer long_description {{TwoLAME is an optimized MPEG Audio Layer 2 encoder}} version 0.3.3 categories {audio multimedia} revision 1 +twolame 410 +variants universal depends_build port:pkgconfig portdir audio/twolame description {TwoLAME is an optimized MPEG Audio Layer 2 encoder} homepage http://twolame.sourceforge.net/ epoch 0 platforms darwin depends_lib {port:libsndfile port:libtool} name twolame maintainers nomaintainer long_description {{TwoLAME is an optimized MPEG Audio Layer 2 encoder}} version 0.3.12 categories {audio multimedia} revision 0 uade2 532 variants {universal uadefs xmms} variant_desc {uadefs {Build with Amiga to WAV filesystem (fuse)} xmms {Build with plugin for the xmms player}} portdir audio/uade2 description {Unix Amiga Delitracker Emulator} homepage http://zakalwe.fi/uade epoch 0 platforms darwin name uade2 depends_lib {port:libao port:pkgconfig} maintainers mac.com:mlund long_description {UADE plays old amiga music formats by emulating Amiga hardware. It re-uses Amiga Eagleplayer plugins to play different formats.} version 2.12 categories audio revision 0 vorbis-tools 861 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 15:01:09 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 15:01:09 -0800 (PST) Subject: [42965] trunk/dports/x11/xorg-server/Portfile Message-ID: <20081202230109.A5A037F7D0D@beta.macosforge.org> Revision: 42965 http://trac.macports.org/changeset/42965 Author: jeremyhu at macports.org Date: 2008-12-02 15:01:09 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xorg-server: Update xorg-server to 1.4.2-apple26 (same as the latest xquartz release: 2.3.2_rc2) Modified Paths: -------------- trunk/dports/x11/xorg-server/Portfile Modified: trunk/dports/x11/xorg-server/Portfile =================================================================== --- trunk/dports/x11/xorg-server/Portfile 2008-12-02 22:52:11 UTC (rev 42964) +++ trunk/dports/x11/xorg-server/Portfile 2008-12-02 23:01:09 UTC (rev 42965) @@ -3,9 +3,9 @@ PortSystem 1.0 name xorg-server -version 1.4.0-apple4 +version 1.4.2-apple26 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description The X.org / Xquartz X server. homepage http://www.x.org platforms darwin macosx @@ -13,19 +13,50 @@ master_sites http://xquartz.macosforge.org/downloads/src/:xq \ http://downloads.sourceforge.net/mesa3d/:mesa -set mesavers "7.0.3" +set mesavers "7.0.4" distfiles xorg-server-$version.tar.bz2:xq \ MesaLib-${mesavers}.tar.bz2:mesa -checksums xorg-server-$version.tar.bz2 sha1 3fa1d2720b0df365b33a2a0099af2dfa6af9e0b7 \ - MesaLib-$mesavers.tar.bz2 sha1 49b92094a25f189b411f393174ee666e73dddf36 +checksums xorg-server-$version.tar.bz2 sha1 30d2cb0a2cc35d14d7931788006dc3d283c10389 \ + MesaLib-$mesavers.tar.bz2 sha1 7e2ecbe89d245510d2681d04e959aee6adc205c5 use_bzip2 yes +use_parallel_build yes -depends_lib port:pkgconfig port:xorg-xproto port:xorg-xextproto port:xorg-xtrans \ - port:xorg-libpthread-stubs port:xorg-libXau port:xorg-xcb-proto \ - port:xorg-libxcb port:xorg-xcmiscproto port:xorg-inputproto \ - port:xorg-kbproto port:xorg-libX11 port:xinit +# port:xorg-glproto \ -configure.env PKG_CONFIG_PATH=/usr/X11/lib/pkgconfig -configure.args --with-mesa-source=${worksrcpath}/../Mesa-${mesavers} \ No newline at end of file +depends_build port:pkgconfig \ + port:xorg-applewmproto \ + port:xorg-fixesproto \ + port:xorg-inputproto \ + port:xorg-randrproto \ + port:xorg-renderproto \ + port:xorg-xcmiscproto \ + port:xorg-xproto \ + port:xorg-xextproto \ + port:xorg-xtrans + +depends_run port:xinit +depends_lib port:libpixman \ + port:xorg-libAppleWM \ + port:xorg-libXdmcp \ + port:xorg-libXfixes + +configure.env PKG_CONFIG_PATH=${x11prefix}/lib/pkgconfig + +# Otherwise glcore.h will be pulled in from glproto in /opt/local/include/GL/internal +configure.cppflags -I${worksrcpath}/../Mesa-${mesavers}/include -I${prefix}/include + +# Can be removed once MacPorts 1.7.0 is released +if {![info exists applications_dir]} { + set applications_dir /Applications/MacPorts +} + +configure.args --with-mesa-source=${worksrcpath}/../Mesa-${mesavers} --with-apple-applications-dir=${applications_dir} + +post-patch { + reinplace "s|org.x.X11|org.macports.X11|" ${worksrcpath}/hw/xquartz/bundle/Info.plist + reinplace "s|org.x.X11|org.macports.X11|" ${worksrcpath}/hw/xquartz/mach-startup/bundle-main.c + reinplace "s|org.x.X11|org.macports.X11|" ${worksrcpath}/hw/xquartz/mach-startup/stub.c + reinplace "s|/usr/X11|${prefix}|" ${worksrcpath}/hw/xquartz/mach-startup/bundle-main.c +} -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 15:02:01 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 15:02:01 -0800 (PST) Subject: [42966] trunk/dports/x11/xorg-server/Portfile Message-ID: <20081202230201.A84F17F7D9B@beta.macosforge.org> Revision: 42966 http://trac.macports.org/changeset/42966 Author: jeremyhu at macports.org Date: 2008-12-02 15:02:01 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xorg-server: Added glproto dependency Modified Paths: -------------- trunk/dports/x11/xorg-server/Portfile Modified: trunk/dports/x11/xorg-server/Portfile =================================================================== --- trunk/dports/x11/xorg-server/Portfile 2008-12-02 23:01:09 UTC (rev 42965) +++ trunk/dports/x11/xorg-server/Portfile 2008-12-02 23:02:01 UTC (rev 42966) @@ -23,11 +23,10 @@ use_bzip2 yes use_parallel_build yes -# port:xorg-glproto \ - depends_build port:pkgconfig \ port:xorg-applewmproto \ port:xorg-fixesproto \ + port:xorg-glproto \ port:xorg-inputproto \ port:xorg-randrproto \ port:xorg-renderproto \ @@ -37,7 +36,7 @@ port:xorg-xtrans depends_run port:xinit -depends_lib port:libpixman \ +depends_lib port:libpixman \ port:xorg-libAppleWM \ port:xorg-libXdmcp \ port:xorg-libXfixes -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 15:52:07 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 15:52:07 -0800 (PST) Subject: [42967] trunk/dports/PortIndex Message-ID: <20081202235208.B7EB07F8865@beta.macosforge.org> Revision: 42967 http://trac.macports.org/changeset/42967 Author: portindex at macports.org Date: 2008-12-02 15:52:06 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5177 Ports successfully parsed: 5177 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-02 23:02:01 UTC (rev 42966) +++ trunk/dports/PortIndex 2008-12-02 23:52:06 UTC (rev 42967) @@ -10162,8 +10162,8 @@ portdir x11/xorg-resourceproto description {X.org resourceproto} platforms darwin name xorg-resourceproto version 1.0.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype header files for the Resource extension to X11} xorg-scrnsaverproto 288 portdir x11/xorg-scrnsaverproto description {X.org scrnsaverproto} platforms darwin name xorg-scrnsaverproto version 1.1.0 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XScreenSaver extension to X11.} -xorg-server 594 -variants universal portdir x11/xorg-server description {The X.org / Xquartz X server.} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-server depends_lib {port:pkgconfig port:xorg-xproto port:xorg-xextproto port:xorg-xtrans port:xorg-libpthread-stubs port:xorg-libXau port:xorg-xcb-proto port:xorg-libxcb port:xorg-xcmiscproto port:xorg-inputproto port:xorg-kbproto port:xorg-libX11 port:xinit} maintainers bbyer at macports.org long_description {The X.org X server allows you to run X11 applications on your computer.} version 1.4.0-apple4 categories {x11 devel} revision 0 +xorg-server 677 +variants universal depends_build {port:pkgconfig port:xorg-applewmproto port:xorg-fixesproto port:xorg-glproto port:xorg-inputproto port:xorg-randrproto port:xorg-renderproto port:xorg-xcmiscproto port:xorg-xproto port:xorg-xextproto port:xorg-xtrans} portdir x11/xorg-server description {The X.org / Xquartz X server.} homepage http://www.x.org depends_run port:xinit epoch 0 platforms {darwin macosx} depends_lib {port:libpixman port:xorg-libAppleWM port:xorg-libXdmcp port:xorg-libXfixes} name xorg-server maintainers jeremyhu long_description {The X.org X server allows you to run X11 applications on your computer.} categories {x11 devel} version 1.4.2-apple26 revision 0 xorg-trapproto 265 portdir x11/xorg-trapproto description {X.org trapproto} platforms darwin name xorg-trapproto version 3.4.3 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XTrap extension to X11} xorg-util-macros 301 -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Tue Dec 2 16:37:49 2008 From: blb at macports.org (blb at macports.org) Date: Tue, 2 Dec 2008 16:37:49 -0800 (PST) Subject: [42968] trunk/dports/audio/twolame Message-ID: <20081203003750.12E307F9013@beta.macosforge.org> Revision: 42968 http://trac.macports.org/changeset/42968 Author: blb at macports.org Date: 2008-12-02 16:37:49 -0800 (Tue, 02 Dec 2008) Log Message: ----------- audio/twolame - make sure that, when building, it picks up its current headers and not those from an older, still-active install (#17483) Modified Paths: -------------- trunk/dports/audio/twolame/Portfile Added Paths: ----------- trunk/dports/audio/twolame/files/ trunk/dports/audio/twolame/files/patch-frontend_Makefile.in.diff trunk/dports/audio/twolame/files/patch-simplefrontend_Makefile.in.diff Modified: trunk/dports/audio/twolame/Portfile =================================================================== --- trunk/dports/audio/twolame/Portfile 2008-12-02 23:52:06 UTC (rev 42967) +++ trunk/dports/audio/twolame/Portfile 2008-12-03 00:37:49 UTC (rev 42968) @@ -16,6 +16,9 @@ sha1 64d621c2967fe8a2fda20f75230a8220fb740090 \ rmd160 d5577b36380007ecc701e3afb5b98bc145790085 +patchfiles patch-frontend_Makefile.in.diff \ + patch-simplefrontend_Makefile.in.diff + configure.args --mandir=${prefix}/share/man depends_build port:pkgconfig Added: trunk/dports/audio/twolame/files/patch-frontend_Makefile.in.diff =================================================================== --- trunk/dports/audio/twolame/files/patch-frontend_Makefile.in.diff (rev 0) +++ trunk/dports/audio/twolame/files/patch-frontend_Makefile.in.diff 2008-12-03 00:37:49 UTC (rev 42968) @@ -0,0 +1,13 @@ +--- frontend/Makefile.in.orig 2008-01-09 07:56:52.000000000 -0700 ++++ frontend/Makefile.in 2008-12-02 17:31:04.000000000 -0700 +@@ -53,8 +53,8 @@ + DEFAULT_INCLUDES = -I. -I$(top_builddir)/build at am__isrc@ + depcomp = $(SHELL) $(top_srcdir)/build/depcomp + am__depfiles_maybe = depfiles +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++COMPILE = $(CC) $(DEFS) $(AM_CFLAGS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ++ $(AM_CPPFLAGS) $(CPPFLAGS) $(CFLAGS) + LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) Added: trunk/dports/audio/twolame/files/patch-simplefrontend_Makefile.in.diff =================================================================== --- trunk/dports/audio/twolame/files/patch-simplefrontend_Makefile.in.diff (rev 0) +++ trunk/dports/audio/twolame/files/patch-simplefrontend_Makefile.in.diff 2008-12-03 00:37:49 UTC (rev 42968) @@ -0,0 +1,13 @@ +--- simplefrontend/Makefile.in.orig 2008-01-09 07:56:52.000000000 -0700 ++++ simplefrontend/Makefile.in 2008-12-02 17:34:26.000000000 -0700 +@@ -50,8 +50,8 @@ + DEFAULT_INCLUDES = -I. -I$(top_builddir)/build at am__isrc@ + depcomp = $(SHELL) $(top_srcdir)/build/depcomp + am__depfiles_maybe = depfiles +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++COMPILE = $(CC) $(DEFS) $(AM_CFLAGS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ++ $(AM_CPPFLAGS) $(CPPFLAGS) $(CFLAGS) + LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Dec 2 16:50:23 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 16:50:23 -0800 (PST) Subject: [42969] trunk/dports/lang/swi-prolog-devel/Portfile Message-ID: <20081203005023.B598F7F923C@beta.macosforge.org> Revision: 42969 http://trac.macports.org/changeset/42969 Author: ryandesign at macports.org Date: 2008-12-02 16:50:22 -0800 (Tue, 02 Dec 2008) Log Message: ----------- swi-prolog-devel: +st and +mt variants conflict, and +mt should only be the default if the user has not already selected +st. Also added descriptions for these variants. See #16964. Modified Paths: -------------- trunk/dports/lang/swi-prolog-devel/Portfile Modified: trunk/dports/lang/swi-prolog-devel/Portfile =================================================================== --- trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 00:37:49 UTC (rev 42968) +++ trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 00:50:22 UTC (rev 42969) @@ -48,9 +48,15 @@ CPPFLAGS=-I${prefix}/include \ CIFLAGS=-I${prefix}/include -default_variants +mt +if {![variant_isset st]} { + default_variants +mt +} -variant st { configure.args-append --disable-mt} +variant st conflicts mt description {Single-threaded} { + configure.args-append --disable-mt +} -variant mt { configure.args-append --enable-mt} +variant mt conflicts st description {Multi-threaded (default)} { + configure.args-append --enable-mt +} -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Dec 2 16:59:22 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 16:59:22 -0800 (PST) Subject: [42970] trunk/dports/lang/swi-prolog-devel/Portfile Message-ID: <20081203005922.79FC37F9FCD@beta.macosforge.org> Revision: 42970 http://trac.macports.org/changeset/42970 Author: ryandesign at macports.org Date: 2008-12-02 16:59:21 -0800 (Tue, 02 Dec 2008) Log Message: ----------- swi-prolog-devel: fix livecheck; see #16964 Modified Paths: -------------- trunk/dports/lang/swi-prolog-devel/Portfile Modified: trunk/dports/lang/swi-prolog-devel/Portfile =================================================================== --- trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 00:50:22 UTC (rev 42969) +++ trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 00:59:21 UTC (rev 42970) @@ -60,3 +60,6 @@ configure.args-append --enable-mt } +livecheck.check regexm +livecheck.url ${homepage}dl-beta.html +livecheck.regex "Gzipped tar file holding the sources for BETA version (\\d+\\.\\d+\\.\\d+)" -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Dec 2 17:03:14 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 17:03:14 -0800 (PST) Subject: [42971] trunk/dports/lang/swi-prolog-devel/Portfile Message-ID: <20081203010314.6D0517FA21E@beta.macosforge.org> Revision: 42971 http://trac.macports.org/changeset/42971 Author: ryandesign at macports.org Date: 2008-12-02 17:03:14 -0800 (Tue, 02 Dec 2008) Log Message: ----------- swi-prolog-devel: use port:-style dependencies instead of lib:-style; see #16964 Modified Paths: -------------- trunk/dports/lang/swi-prolog-devel/Portfile Modified: trunk/dports/lang/swi-prolog-devel/Portfile =================================================================== --- trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 00:59:21 UTC (rev 42970) +++ trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 01:03:14 UTC (rev 42971) @@ -26,14 +26,16 @@ checksums md5 8bba7daab3d402a0d21d23e6cd15f045 depends_lib \ - lib:libreadline:readline \ - lib:libncursesw:ncurses \ - lib:libjpeg:jpeg \ - lib:libmcrypt:libmcrypt \ - lib:libX11.6:XFree86 \ - lib:libgmp:gmp + port:readline \ + port:ncurses \ + port:jpeg \ + port:libmcrypt \ + port:gmp \ + lib:libX11.6:XFree86 -platform darwin 6 { depends_lib-append lib:libdl:dlcompat } +platform darwin 6 { + depends_lib-append port:dlcompat +} distname pl-${version} -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Dec 2 17:05:51 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 17:05:51 -0800 (PST) Subject: [42972] trunk/dports/lang/swi-prolog-devel/Portfile Message-ID: <20081203010551.51BF17FA5E0@beta.macosforge.org> Revision: 42972 http://trac.macports.org/changeset/42972 Author: ryandesign at macports.org Date: 2008-12-02 17:05:50 -0800 (Tue, 02 Dec 2008) Log Message: ----------- swi-prolog-devel: whitespace changes only; see #16964 Modified Paths: -------------- trunk/dports/lang/swi-prolog-devel/Portfile Modified: trunk/dports/lang/swi-prolog-devel/Portfile =================================================================== --- trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 01:03:14 UTC (rev 42971) +++ trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 01:05:50 UTC (rev 42972) @@ -1,6 +1,7 @@ # $Id$ -PortSystem 1.0 +PortSystem 1.0 + name swi-prolog-devel version 5.5.36 epoch 20050503 @@ -11,14 +12,14 @@ description SWI-Prolog compiler plus extra packages (development version) long_description \ - ISO/Edinburgh-style Prolog compiler including modules, \ - autoload, libraries, Garbage-collector, stack-expandor, \ - C/C++-interface, Multiple threads, GNU-readline interface, \ - very fast compiler. Including packages clib (Unix process \ - control, sockets, MIME), cpp (C++ interface), sgml (reading \ - XML/SGML), sgml/RDF (reading RDF into triples), ODBC \ - interface and XPCE (Graphics UI toolkit, integrated editor \ - (Emacs-clone) and graphical debugger). + ISO/Edinburgh-style Prolog compiler including modules, \ + autoload, libraries, Garbage-collector, stack-expandor, \ + C/C++-interface, Multiple threads, GNU-readline interface, \ + very fast compiler. Including packages clib (Unix process \ + control, sockets, MIME), cpp (C++ interface), sgml (reading \ + XML/SGML), sgml/RDF (reading RDF into triples), ODBC \ + interface and XPCE (Graphics UI toolkit, integrated editor \ + (Emacs-clone) and graphical debugger). homepage http://www.swi-prolog.org/ master_sites http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/BETA/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From raimue at macports.org Tue Dec 2 17:09:02 2008 From: raimue at macports.org (raimue at macports.org) Date: Tue, 2 Dec 2008 17:09:02 -0800 (PST) Subject: [42973] trunk/dports/games/xmoto/Portfile Message-ID: <20081203010902.601827FA8BC@beta.macosforge.org> Revision: 42973 http://trac.macports.org/changeset/42973 Author: raimue at macports.org Date: 2008-12-02 17:09:02 -0800 (Tue, 02 Dec 2008) Log Message: ----------- games/xmoto: Update to version 0.5.0 Modified Paths: -------------- trunk/dports/games/xmoto/Portfile Modified: trunk/dports/games/xmoto/Portfile =================================================================== --- trunk/dports/games/xmoto/Portfile 2008-12-03 01:05:50 UTC (rev 42972) +++ trunk/dports/games/xmoto/Portfile 2008-12-03 01:09:02 UTC (rev 42973) @@ -3,7 +3,7 @@ PortSystem 1.0 name xmoto -version 0.4.2 +version 0.5.0 categories games platforms macosx maintainers raimue @@ -18,9 +18,9 @@ homepage http://xmoto.tuxfamily.org/ master_sites http://download.tuxfamily.org/xmoto/xmoto/${version}/xmoto-${version}-src.tar.gz -checksums md5 15368b282641a225b71c279fe4dc0dc4 \ - sha1 4d73c7db5b423faf4e88d2d26db3da8da07ab712 \ - rmd160 b87ac63714772b54d8b5fd45a8b7bdacf557f765 +checksums md5 e693ec0f949e44fb78187b8e82650869 \ + sha1 9d89c0c7fa7da23378577c8ed572cc381267dfae \ + rmd160 a9e2b9f077b17e17bb2ffab04542ee0f737c3e0f depends_lib port:libpng \ port:jpeg \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Dec 2 17:09:12 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 17:09:12 -0800 (PST) Subject: [42974] trunk/dports/lang/swi-prolog-devel/Portfile Message-ID: <20081203010913.09CD17FA93E@beta.macosforge.org> Revision: 42974 http://trac.macports.org/changeset/42974 Author: ryandesign at macports.org Date: 2008-12-02 17:09:12 -0800 (Tue, 02 Dec 2008) Log Message: ----------- swi-prolog-devel: update Paulo Moura's email address and add Jan Wielemaker as co-maintainer; see #16964 Modified Paths: -------------- trunk/dports/lang/swi-prolog-devel/Portfile Modified: trunk/dports/lang/swi-prolog-devel/Portfile =================================================================== --- trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 01:09:02 UTC (rev 42973) +++ trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 01:09:12 UTC (rev 42974) @@ -7,7 +7,7 @@ epoch 20050503 categories lang -maintainers pmoura at mac.com +maintainers wielemak at science.uva.nl pmoura at logtalk.org platforms darwin description SWI-Prolog compiler plus extra packages (development version) -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Dec 2 17:10:45 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 17:10:45 -0800 (PST) Subject: [42975] trunk/dports/lang/swi-prolog-devel/Portfile Message-ID: <20081203011045.80FFA7FAAE9@beta.macosforge.org> Revision: 42975 http://trac.macports.org/changeset/42975 Author: ryandesign at macports.org Date: 2008-12-02 17:10:45 -0800 (Tue, 02 Dec 2008) Log Message: ----------- swi-prolog-devel: whitespace changes only; see #16964 Modified Paths: -------------- trunk/dports/lang/swi-prolog-devel/Portfile Modified: trunk/dports/lang/swi-prolog-devel/Portfile =================================================================== --- trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 01:09:12 UTC (rev 42974) +++ trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 01:10:45 UTC (rev 42975) @@ -43,8 +43,9 @@ configure.cflags-append "-I${prefix}/include" configure.env CIFLAGS=-I${prefix}/include -configure.args --mandir=${prefix}/share/man \ - --with-world +configure.args \ + --mandir=${prefix}/share/man \ + --with-world build.env LDFLAGS=-L${prefix}/lib \ CFLAGS=-I${prefix}/include \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Dec 2 17:12:09 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 17:12:09 -0800 (PST) Subject: [42976] trunk/dports/lang/swi-prolog-devel/Portfile Message-ID: <20081203011209.B91A77FAC6A@beta.macosforge.org> Revision: 42976 http://trac.macports.org/changeset/42976 Author: ryandesign at macports.org Date: 2008-12-02 17:12:09 -0800 (Tue, 02 Dec 2008) Log Message: ----------- swi-prolog-devel: update to 5.7.3; see #16964 Modified Paths: -------------- trunk/dports/lang/swi-prolog-devel/Portfile Modified: trunk/dports/lang/swi-prolog-devel/Portfile =================================================================== --- trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 01:10:45 UTC (rev 42975) +++ trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 01:12:09 UTC (rev 42976) @@ -3,8 +3,8 @@ PortSystem 1.0 name swi-prolog-devel -version 5.5.36 -epoch 20050503 +version 5.7.3 +epoch 20051223 categories lang maintainers wielemak at science.uva.nl pmoura at logtalk.org @@ -15,6 +15,7 @@ ISO/Edinburgh-style Prolog compiler including modules, \ autoload, libraries, Garbage-collector, stack-expandor, \ C/C++-interface, Multiple threads, GNU-readline interface, \ + coroutining, constraint programming, global variables, \ very fast compiler. Including packages clib (Unix process \ control, sockets, MIME), cpp (C++ interface), sgml (reading \ XML/SGML), sgml/RDF (reading RDF into triples), ODBC \ @@ -24,34 +25,75 @@ homepage http://www.swi-prolog.org/ master_sites http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/BETA/ -checksums md5 8bba7daab3d402a0d21d23e6cd15f045 +checksums \ + md5 25d8f900ca65493c3eb69546c6fb458f \ + sha1 206284b645ab2cec66ebd01f2c0e93002c402578 \ + rmd160 9d29ec5137660458f50d00cc1a3ac96f61b0c127 +depends_build \ + port:gawk \ + port:junit + depends_lib \ port:readline \ port:ncurses \ port:jpeg \ port:libmcrypt \ port:gmp \ + port:zlib \ lib:libX11.6:XFree86 platform darwin 6 { depends_lib-append port:dlcompat } +platform darwin 9 { + depends_lib-append port:expat +} + distname pl-${version} -configure.cflags-append "-I${prefix}/include" -configure.env CIFLAGS=-I${prefix}/include +configure.env \ + LIBRARY_PATH=/usr/lib:${x11prefix}/lib:${prefix}/lib \ + CPATH=/usr/include:${x11prefix}/include:${prefix}/include \ + JUNIT=${prefix}/share/java/junit.jar +configure.ldflags + configure.args \ --mandir=${prefix}/share/man \ --with-world -build.env LDFLAGS=-L${prefix}/lib \ - CFLAGS=-I${prefix}/include \ - CPPFLAGS=-I${prefix}/include \ - CIFLAGS=-I${prefix}/include +build.env \ + LIBRARY_PATH=/usr/lib:${x11prefix}/lib:${prefix}/lib \ + CPATH=/usr/include:${x11prefix}/include:${prefix}/include \ + JUNIT=${prefix}/share/java/junit.jar +post-build { + file mkdir ${workpath}/macosx + file copy -force -- ${workpath}/pl-${version}/man/macosx/License.html ${workpath}/macosx/ + file copy -force -- ${workpath}/pl-${version}/man/macosx/macosx.html ${workpath}/macosx/ + file copy -force -- ${workpath}/pl-${version}/man/macosx/Welcome.html ${workpath}/macosx/ +} + +post-pkg { + set resources ${workpath}/${name}-${version}.pkg/Contents/Resources/ + file copy -force -- ${workpath}/macosx/License.html ${resources} + file copy -force -- ${workpath}/macosx/macosx.html ${resources} + file copy -force -- ${workpath}/macosx/Welcome.html ${resources} + file rename ${resources}/macosx.html ${resources}/ReadMe.html + file delete -force -- ${resources}/Welcome.rtf +} + +post-mpkg { + set resources ${workpath}/${name}-${version}.mpkg/Contents/Resources/ + file copy -force -- ${workpath}/macosx/License.html ${resources} + file copy -force -- ${workpath}/macosx/macosx.html ${resources} + file copy -force -- ${workpath}/macosx/Welcome.html ${resources} + file rename ${resources}/macosx.html ${resources}/ReadMe.html + file delete -force -- ${resources}/Welcome.rtf +} + if {![variant_isset st]} { default_variants +mt } -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Dec 2 17:28:30 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 17:28:30 -0800 (PST) Subject: [42977] trunk/dports/lang/swi-prolog/Portfile Message-ID: <20081203012830.86DF57FB626@beta.macosforge.org> Revision: 42977 http://trac.macports.org/changeset/42977 Author: ryandesign at macports.org Date: 2008-12-02 17:28:29 -0800 (Tue, 02 Dec 2008) Log Message: ----------- swi-prolog: update to 5.6.63; see #17487 Modified Paths: -------------- trunk/dports/lang/swi-prolog/Portfile Modified: trunk/dports/lang/swi-prolog/Portfile =================================================================== --- trunk/dports/lang/swi-prolog/Portfile 2008-12-03 01:12:09 UTC (rev 42976) +++ trunk/dports/lang/swi-prolog/Portfile 2008-12-03 01:28:29 UTC (rev 42977) @@ -3,7 +3,7 @@ PortSystem 1.0 name swi-prolog -version 5.6.62 +version 5.6.63 epoch 20051223 categories lang @@ -26,9 +26,9 @@ master_sites http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/ checksums \ - md5 0305ac720f6d1277bcaf33876570f0d2 \ - sha1 bd87c39f9b87c8f8981507de76b1e46a83380de4 \ - rmd160 7356d072091d363584fd8262a04c30509c018a0a + md5 4efffb1f7280080182fc5417bbce4010 \ + sha1 d2b94f1f90b76d42e78bfeb90c8285c3faf56d5c \ + rmd160 73577a7d224ce87b0d216a3eb7c576499f97ea71 depends_build \ port:gawk \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Tue Dec 2 17:29:51 2008 From: blb at macports.org (blb at macports.org) Date: Tue, 2 Dec 2008 17:29:51 -0800 (PST) Subject: [42978] trunk/base/Makefile.in Message-ID: <20081203012951.C8C9E7FB713@beta.macosforge.org> Revision: 42978 http://trac.macports.org/changeset/42978 Author: blb at macports.org Date: 2008-12-02 17:29:51 -0800 (Tue, 02 Dec 2008) Log Message: ----------- base/Makefile.in - make sure install of setupenv.bash respects DESTDIR; only run upgrade_sources_conf_default.tcl and dep_map_clean.tcl when not installing into some sort of destroot (as in, DESTDIR isn't set) Modified Paths: -------------- trunk/base/Makefile.in Modified: trunk/base/Makefile.in =================================================================== --- trunk/base/Makefile.in 2008-12-03 01:28:29 UTC (rev 42977) +++ trunk/base/Makefile.in 2008-12-03 01:29:51 UTC (rev 42978) @@ -37,11 +37,14 @@ include Mk/macports.subdir.mk install:: - $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 setupenv.bash ${datadir}/macports/ + $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 setupenv.bash $(DESTDIR)${datadir}/macports/ +# Only run these scripts when not building in a destroot +ifeq ($(DESTDIR),) # Add [default] tag to the central MacPorts repository, if it isn't already $(TCLSH) src/upgrade_sources_conf_default.tcl ${prefix} # Remove duplicate entries from the dependency map (could occur with 1.6 and earlier): $(TCLSH) src/dep_map_clean.tcl ${TCL_PACKAGE_DIR} +endif @echo ""; echo "Congratulations, you have successfully installed the MacPorts system. To get the Portfiles and update the system, run:"; echo "" @echo "sudo port -v selfupdate"; echo "" @echo "Please read \"man port\", the MacPorts guide at http://guide.macports.org/ and Wiki at http://trac.macports.org/ for full documentation."; echo "" -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Tue Dec 2 17:31:52 2008 From: blb at macports.org (blb at macports.org) Date: Tue, 2 Dec 2008 17:31:52 -0800 (PST) Subject: [42979] branches/release_1_7 Message-ID: <20081203013152.80B077FB8B8@beta.macosforge.org> Revision: 42979 http://trac.macports.org/changeset/42979 Author: blb at macports.org Date: 2008-12-02 17:31:52 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Merge r42978 from trunk: base/Makefile.in - make sure install of setupenv.bash respects DESTDIR; only run upgrade_sources_conf_default.tcl and dep_map_clean.tcl when not installing into some sort of destroot (as in, DESTDIR isn't set) Modified Paths: -------------- branches/release_1_7/base/Makefile.in Property Changed: ---------------- branches/release_1_7/ Property changes on: branches/release_1_7 ___________________________________________________________________ Modified: svn:mergeinfo - /trunk:42683,42697,42734,42747,42760,42845-42847,42865,42962 + /trunk:42683,42697,42734,42747,42760,42845-42847,42865,42962,42978 Modified: branches/release_1_7/base/Makefile.in =================================================================== --- branches/release_1_7/base/Makefile.in 2008-12-03 01:29:51 UTC (rev 42978) +++ branches/release_1_7/base/Makefile.in 2008-12-03 01:31:52 UTC (rev 42979) @@ -37,11 +37,14 @@ include Mk/macports.subdir.mk install:: - $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 setupenv.bash ${datadir}/macports/ + $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 setupenv.bash $(DESTDIR)${datadir}/macports/ +# Only run these scripts when not building in a destroot +ifeq ($(DESTDIR),) # Add [default] tag to the central MacPorts repository, if it isn't already $(TCLSH) src/upgrade_sources_conf_default.tcl ${prefix} # Remove duplicate entries from the dependency map (could occur with 1.6 and earlier): $(TCLSH) src/dep_map_clean.tcl ${TCL_PACKAGE_DIR} +endif @echo ""; echo "Congratulations, you have successfully installed the MacPorts system. To get the Portfiles and update the system, run:"; echo "" @echo "sudo port -v selfupdate"; echo "" @echo "Please read \"man port\", the MacPorts guide at http://guide.macports.org/ and Wiki at http://trac.macports.org/ for full documentation."; echo "" -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 17:51:48 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 17:51:48 -0800 (PST) Subject: [42980] trunk/dports/PortIndex Message-ID: <20081203015149.E26707FC77F@beta.macosforge.org> Revision: 42980 http://trac.macports.org/changeset/42980 Author: portindex at macports.org Date: 2008-12-02 17:51:48 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5177 Ports successfully parsed: 5177 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-03 01:31:52 UTC (rev 42979) +++ trunk/dports/PortIndex 2008-12-03 01:51:48 UTC (rev 42980) @@ -2247,7 +2247,7 @@ xmj 451 variants universal portdir games/xmj description {X graphical mahjong multi-player game} homepage http://mahjong.julianbradfield.org epoch 0 platforms darwin name xmj depends_lib {lib:libX11.6:XFree86 lib:libgtk:gtk1} maintainers mmoll long_description {xmj is a multi-player version of the Chinese game of Mah-Jong. One can play against computer players or against other human players over the network.} version 1.9 categories {games x11} revision 0 xmoto 583 -variants universal portdir games/xmoto description {X-Moto is a challenging 2D motocross platform game} homepage http://xmoto.tuxfamily.org/ epoch 0 platforms macosx name xmoto depends_lib {port:libpng port:jpeg port:libsdl port:libsdl_mixer port:libsdl_ttf port:lua port:ode} maintainers raimue long_description {X-Moto is a challenging 2D motocross platform game, where physics plays an all important role in the gameplay. You need to control your bike to its limits, if you want to have a chance to finish the most difficult challenges.} version 0.4.2 categories games revision 0 +variants universal portdir games/xmoto description {X-Moto is a challenging 2D motocross platform game} homepage http://xmoto.tuxfamily.org/ epoch 0 platforms macosx name xmoto depends_lib {port:libpng port:jpeg port:libsdl port:libsdl_mixer port:libsdl_ttf port:lua port:ode} maintainers raimue long_description {X-Moto is a challenging 2D motocross platform game, where physics plays an all important role in the gameplay. You need to control your bike to its limits, if you want to have a chance to finish the most difficult challenges.} version 0.5.0 categories games revision 0 xqf 515 variants {universal gtk2} portdir games/xqf description {GTK+ Front-end to Qstat} homepage http://www.linuxgames.com/xqf/ depends_run port:qstat epoch 0 platforms darwin name xqf depends_lib {lib:libgtk.1:gtk1 lib:libgdk-pixbuf:gdk-pixbuf port:p5-xml-parser lib:libreadline:readline} maintainers nomaintainer long_description {XQF is a game server browser and launcher for Unix/X11 for many popular games such as the Quake series, Unreal Tournament series, Half-Life etc.} version 1.0.5 categories games revision 0 xscorch 605 @@ -3983,9 +3983,9 @@ strategoxt 473 variants universal portdir lang/strategoxt description {Stratego language with the XT bundle.} homepage http://strategoxt.org/Stratego/StrategoXT epoch 0 platforms darwin name strategoxt depends_lib {port:libaterm port:sdf2-bundle} long_description {StrategoXT is the combination of the Stratego language for strategic programming with the XT bundle of transformation tools.} maintainers {pguyot at kallisys.net openmaintainer} version 0.17pre18253 categories lang revision 0 swi-prolog 1054 -variants {universal darwin_6 darwin_9 st mt} depends_build {port:gawk port:junit} variant_desc {st Single-threaded mt {Multi-threaded (default)}} portdir lang/swi-prolog description {SWI-Prolog compiler plus extra packages (stable version)} homepage http://www.swi-prolog.org/ epoch 20051223 platforms darwin depends_lib {port:readline port:ncurses port:jpeg port:libmcrypt port:gmp port:zlib lib:libX11.6:XFree86 port:expat} name swi-prolog maintainers {wielemak at science.uva.nl pmoura at logtalk.org} long_description {ISO/Edinburgh-style Prolog compiler including modules, autoload, libraries, Garbage-collector, stack-expandor, C/C++-interface, Multiple threads, GNU-readline interface, coroutining, constraint programming, global variables, very fast compiler. Including packages clib (Unix process control, sockets, MIME), cpp (C++ interface), sgml (reading XML/SGML), sgml/RDF (reading RDF into triples), ODBC interface and XPCE (Graphics UI toolkit, integrated editor (Emacs-clone) and graphical debugger).} categories lang version 5.6.62 revision 0 -swi-prolog-devel 899 -variants {universal darwin_6 st mt} portdir lang/swi-prolog-devel description {SWI-Prolog compiler plus extra packages (development version)} homepage http://www.swi-prolog.org/ epoch 20050503 platforms darwin name swi-prolog-devel depends_lib {lib:libreadline:readline lib:libncursesw:ncurses lib:libjpeg:jpeg lib:libmcrypt:libmcrypt lib:libX11.6:XFree86 lib:libgmp:gmp} maintainers pmoura at mac.com long_description {ISO/Edinburgh-style Prolog compiler including modules, autoload, libraries, Garbage-collector, stack-expandor, C/C++-interface, Multiple threads, GNU-readline interface, very fast compiler. Including packages clib (Unix process control, sockets, MIME), cpp (C++ interface), sgml (reading XML/SGML), sgml/RDF (reading RDF into triples), ODBC interface and XPCE (Graphics UI toolkit, integrated editor (Emacs-clone) and graphical debugger).} version 5.5.36 categories lang revision 0 +variants {universal darwin_6 darwin_9 st mt} depends_build {port:gawk port:junit} variant_desc {st Single-threaded mt {Multi-threaded (default)}} portdir lang/swi-prolog description {SWI-Prolog compiler plus extra packages (stable version)} homepage http://www.swi-prolog.org/ epoch 20051223 platforms darwin depends_lib {port:readline port:ncurses port:jpeg port:libmcrypt port:gmp port:zlib lib:libX11.6:XFree86 port:expat} name swi-prolog maintainers {wielemak at science.uva.nl pmoura at logtalk.org} long_description {ISO/Edinburgh-style Prolog compiler including modules, autoload, libraries, Garbage-collector, stack-expandor, C/C++-interface, Multiple threads, GNU-readline interface, coroutining, constraint programming, global variables, very fast compiler. Including packages clib (Unix process control, sockets, MIME), cpp (C++ interface), sgml (reading XML/SGML), sgml/RDF (reading RDF into triples), ODBC interface and XPCE (Graphics UI toolkit, integrated editor (Emacs-clone) and graphical debugger).} categories lang version 5.6.63 revision 0 +swi-prolog-devel 1070 +variants {universal darwin_6 darwin_9 st mt} depends_build {port:gawk port:junit} variant_desc {st Single-threaded mt {Multi-threaded (default)}} portdir lang/swi-prolog-devel description {SWI-Prolog compiler plus extra packages (development version)} homepage http://www.swi-prolog.org/ epoch 20051223 platforms darwin depends_lib {port:readline port:ncurses port:jpeg port:libmcrypt port:gmp port:zlib lib:libX11.6:XFree86 port:expat} name swi-prolog-devel maintainers {wielemak at science.uva.nl pmoura at logtalk.org} long_description {ISO/Edinburgh-style Prolog compiler including modules, autoload, libraries, Garbage-collector, stack-expandor, C/C++-interface, Multiple threads, GNU-readline interface, coroutining, constraint programming, global variables, very fast compiler. Including packages clib (Unix process control, sockets, MIME), cpp (C++ interface), sgml (reading XML/SGML), sgml/RDF (reading RDF into triples), ODBC interface and XPCE (Graphics UI toolkit, integrated editor (Emacs-clone) and graphical debugger).} categories lang version 5.7.3 revision 0 swi-prolog-lite 853 variants {universal darwin_6 st mt} variant_desc {st Single-threaded mt {Multi-threaded (default)}} portdir lang/swi-prolog-lite description {SWI-Prolog compiler (without extra packages)} homepage http://www.swi-prolog.org/ epoch 0 platforms darwin name swi-prolog-lite depends_lib port:readline maintainers {wielemak at science.uva.nl pmoura at logtalk.org} long_description {ISO/Edinburgh-style Prolog compiler including modules, autoload, libraries, Garbage-collector, stack-expandor, C/C++-interface, Multiple threads, GNU-readline interface, very fast compiler. Including packages clib (Unix process control, sockets, MIME), cpp (C++ interface), sgml (reading XML/SGML), sgml/RDF (reading RDF into triples), ODBC interface and XPCE (Graphics UI toolkit, integrated editor (Emacs-clone) and graphical debugger).} version 5.6.62 categories lang revision 0 tcl 719 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Dec 2 18:22:21 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 18:22:21 -0800 (PST) Subject: [42981] trunk/dports/lang Message-ID: <20081203022221.B55AE7FDB65@beta.macosforge.org> Revision: 42981 http://trac.macports.org/changeset/42981 Author: ryandesign at macports.org Date: 2008-12-02 18:22:20 -0800 (Tue, 02 Dec 2008) Log Message: ----------- swi-prolog, swi-prolog-devel, swi-prolog-lite: change Jan Wielemaker's email address as requested in #16964 Modified Paths: -------------- trunk/dports/lang/swi-prolog/Portfile trunk/dports/lang/swi-prolog-devel/Portfile trunk/dports/lang/swi-prolog-lite/Portfile Modified: trunk/dports/lang/swi-prolog/Portfile =================================================================== --- trunk/dports/lang/swi-prolog/Portfile 2008-12-03 01:51:48 UTC (rev 42980) +++ trunk/dports/lang/swi-prolog/Portfile 2008-12-03 02:22:20 UTC (rev 42981) @@ -7,7 +7,7 @@ epoch 20051223 categories lang -maintainers wielemak at science.uva.nl pmoura at logtalk.org +maintainers J.Wielemaker at uva.nl pmoura at logtalk.org platforms darwin description SWI-Prolog compiler plus extra packages (stable version) Modified: trunk/dports/lang/swi-prolog-devel/Portfile =================================================================== --- trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 01:51:48 UTC (rev 42980) +++ trunk/dports/lang/swi-prolog-devel/Portfile 2008-12-03 02:22:20 UTC (rev 42981) @@ -7,7 +7,7 @@ epoch 20051223 categories lang -maintainers wielemak at science.uva.nl pmoura at logtalk.org +maintainers J.Wielemaker at uva.nl pmoura at logtalk.org platforms darwin description SWI-Prolog compiler plus extra packages (development version) Modified: trunk/dports/lang/swi-prolog-lite/Portfile =================================================================== --- trunk/dports/lang/swi-prolog-lite/Portfile 2008-12-03 01:51:48 UTC (rev 42980) +++ trunk/dports/lang/swi-prolog-lite/Portfile 2008-12-03 02:22:20 UTC (rev 42981) @@ -6,7 +6,7 @@ version 5.6.62 categories lang -maintainers wielemak at science.uva.nl pmoura at logtalk.org +maintainers J.Wielemaker at uva.nl pmoura at logtalk.org platforms darwin description SWI-Prolog compiler (without extra packages) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 18:36:04 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 18:36:04 -0800 (PST) Subject: [42982] trunk/dports/x11/xorg-libX11/Portfile Message-ID: <20081203023604.32F577FE4E8@beta.macosforge.org> Revision: 42982 http://trac.macports.org/changeset/42982 Author: jeremyhu at macports.org Date: 2008-12-02 18:36:03 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xorg-libX11: Added missing dep on bigreqsproto - bug #17488 Modified Paths: -------------- trunk/dports/x11/xorg-libX11/Portfile Modified: trunk/dports/x11/xorg-libX11/Portfile =================================================================== --- trunk/dports/x11/xorg-libX11/Portfile 2008-12-03 02:22:20 UTC (rev 42981) +++ trunk/dports/x11/xorg-libX11/Portfile 2008-12-03 02:36:03 UTC (rev 42982) @@ -19,6 +19,7 @@ use_parallel_build yes depends_build port:pkgconfig \ + xorg-bigreqsproto \ port:xorg-xproto \ port:xorg-xtrans \ port:xorg-xextproto \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 18:37:03 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 18:37:03 -0800 (PST) Subject: [42983] trunk/dports/x11/xorg-libX11/Portfile Message-ID: <20081203023703.E02A67FE5E4@beta.macosforge.org> Revision: 42983 http://trac.macports.org/changeset/42983 Author: jeremyhu at macports.org Date: 2008-12-02 18:37:03 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xorg-libX11: Added missing dep on bigreqsproto - bug #17488 Modified Paths: -------------- trunk/dports/x11/xorg-libX11/Portfile Modified: trunk/dports/x11/xorg-libX11/Portfile =================================================================== --- trunk/dports/x11/xorg-libX11/Portfile 2008-12-03 02:36:03 UTC (rev 42982) +++ trunk/dports/x11/xorg-libX11/Portfile 2008-12-03 02:37:03 UTC (rev 42983) @@ -19,7 +19,7 @@ use_parallel_build yes depends_build port:pkgconfig \ - xorg-bigreqsproto \ + port:xorg-bigreqsproto \ port:xorg-xproto \ port:xorg-xtrans \ port:xorg-xextproto \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 18:41:21 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 18:41:21 -0800 (PST) Subject: [42984] trunk/dports/x11/xorg-libX11/Portfile Message-ID: <20081203024122.1DE287FEA54@beta.macosforge.org> Revision: 42984 http://trac.macports.org/changeset/42984 Author: jeremyhu at macports.org Date: 2008-12-02 18:41:21 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Added variant description to satisfy lint Modified Paths: -------------- trunk/dports/x11/xorg-libX11/Portfile Modified: trunk/dports/x11/xorg-libX11/Portfile =================================================================== --- trunk/dports/x11/xorg-libX11/Portfile 2008-12-03 02:37:03 UTC (rev 42983) +++ trunk/dports/x11/xorg-libX11/Portfile 2008-12-03 02:41:21 UTC (rev 42984) @@ -30,7 +30,7 @@ port:xorg-libXau configure.args --without-xcb -variant x11_xcb { +variant x11_xcb description "use XCB for low-level protocol implementation" { depends_lib-append port:xorg-libxcb configure.args-delete --without-xcb configure.args-append --with-xcb -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 18:44:56 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 18:44:56 -0800 (PST) Subject: [42985] trunk/dports/x11/xorg-xcb-proto/Portfile Message-ID: <20081203024456.888FD7FEDC3@beta.macosforge.org> Revision: 42985 http://trac.macports.org/changeset/42985 Author: jeremyhu at macports.org Date: 2008-12-02 18:44:56 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xorg-xcb-proto: Bump version to 1.2 Modified Paths: -------------- trunk/dports/x11/xorg-xcb-proto/Portfile Modified: trunk/dports/x11/xorg-xcb-proto/Portfile =================================================================== --- trunk/dports/x11/xorg-xcb-proto/Portfile 2008-12-03 02:41:21 UTC (rev 42984) +++ trunk/dports/x11/xorg-xcb-proto/Portfile 2008-12-03 02:44:56 UTC (rev 42985) @@ -3,7 +3,7 @@ PortSystem 1.0 name xorg-xcb-proto -version 1.0 +version 1.2 categories x11 devel maintainers jeremyhu description X.org xcb-proto @@ -13,7 +13,9 @@ master_sites ${homepage}/dist/ distname xcb-proto-${version} -checksums sha1 c7252cc74f75c997227b4dcdba2cb654d89cecda +checksums md5 09f912486d8a2353bb4b99ddc28ba3c7 \ + sha1 8af555f05bcd790352391a868edd0c0d4af82253 \ + rmd160 d28b79269e680e1ba61358980e9c90a5663b8256 use_bzip2 yes universal_variant no -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 18:51:46 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 18:51:46 -0800 (PST) Subject: [42986] trunk/dports/PortIndex Message-ID: <20081203025147.88D547FF31A@beta.macosforge.org> Revision: 42986 http://trac.macports.org/changeset/42986 Author: portindex at macports.org Date: 2008-12-02 18:51:45 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5177 Ports successfully parsed: 5177 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-03 02:44:56 UTC (rev 42985) +++ trunk/dports/PortIndex 2008-12-03 02:51:45 UTC (rev 42986) @@ -3982,12 +3982,12 @@ variants {universal darwin_9} portdir lang/stklos description {free Scheme system supporting most language features from R5RS} homepage http://www.stklos.org/ epoch 0 platforms darwin name stklos depends_lib {port:gmp port:pcre} maintainers mww long_description {STklos is a free Scheme system supporting most of the languages features defined in R5RS. The aim of this implementation is to be fast as well as light. The implementation is based on an ad-hoc Virtual Machine. STklos can also be compiled as a library and embedded in an application.} version 0.97 categories lang revision 0 strategoxt 473 variants universal portdir lang/strategoxt description {Stratego language with the XT bundle.} homepage http://strategoxt.org/Stratego/StrategoXT epoch 0 platforms darwin name strategoxt depends_lib {port:libaterm port:sdf2-bundle} long_description {StrategoXT is the combination of the Stratego language for strategic programming with the XT bundle of transformation tools.} maintainers {pguyot at kallisys.net openmaintainer} version 0.17pre18253 categories lang revision 0 -swi-prolog 1054 -variants {universal darwin_6 darwin_9 st mt} depends_build {port:gawk port:junit} variant_desc {st Single-threaded mt {Multi-threaded (default)}} portdir lang/swi-prolog description {SWI-Prolog compiler plus extra packages (stable version)} homepage http://www.swi-prolog.org/ epoch 20051223 platforms darwin depends_lib {port:readline port:ncurses port:jpeg port:libmcrypt port:gmp port:zlib lib:libX11.6:XFree86 port:expat} name swi-prolog maintainers {wielemak at science.uva.nl pmoura at logtalk.org} long_description {ISO/Edinburgh-style Prolog compiler including modules, autoload, libraries, Garbage-collector, stack-expandor, C/C++-interface, Multiple threads, GNU-readline interface, coroutining, constraint programming, global variables, very fast compiler. Including packages clib (Unix process control, sockets, MIME), cpp (C++ interface), sgml (reading XML/SGML), sgml/RDF (reading RDF into triples), ODBC interface and XPCE (Graphics UI toolkit, integrated editor (Emacs-clone) and graphical debugger).} categories lang version 5.6.63 revision 0 -swi-prolog-devel 1070 -variants {universal darwin_6 darwin_9 st mt} depends_build {port:gawk port:junit} variant_desc {st Single-threaded mt {Multi-threaded (default)}} portdir lang/swi-prolog-devel description {SWI-Prolog compiler plus extra packages (development version)} homepage http://www.swi-prolog.org/ epoch 20051223 platforms darwin depends_lib {port:readline port:ncurses port:jpeg port:libmcrypt port:gmp port:zlib lib:libX11.6:XFree86 port:expat} name swi-prolog-devel maintainers {wielemak at science.uva.nl pmoura at logtalk.org} long_description {ISO/Edinburgh-style Prolog compiler including modules, autoload, libraries, Garbage-collector, stack-expandor, C/C++-interface, Multiple threads, GNU-readline interface, coroutining, constraint programming, global variables, very fast compiler. Including packages clib (Unix process control, sockets, MIME), cpp (C++ interface), sgml (reading XML/SGML), sgml/RDF (reading RDF into triples), ODBC interface and XPCE (Graphics UI toolkit, integrated editor (Emacs-clone) and graphical debugger).} categories lang version 5.7.3 revision 0 -swi-prolog-lite 853 -variants {universal darwin_6 st mt} variant_desc {st Single-threaded mt {Multi-threaded (default)}} portdir lang/swi-prolog-lite description {SWI-Prolog compiler (without extra packages)} homepage http://www.swi-prolog.org/ epoch 0 platforms darwin name swi-prolog-lite depends_lib port:readline maintainers {wielemak at science.uva.nl pmoura at logtalk.org} long_description {ISO/Edinburgh-style Prolog compiler including modules, autoload, libraries, Garbage-collector, stack-expandor, C/C++-interface, Multiple threads, GNU-readline interface, very fast compiler. Including packages clib (Unix process control, sockets, MIME), cpp (C++ interface), sgml (reading XML/SGML), sgml/RDF (reading RDF into triples), ODBC interface and XPCE (Graphics UI toolkit, integrated editor (Emacs-clone) and graphical debugger).} version 5.6.62 categories lang revision 0 +swi-prolog 1050 +variants {universal darwin_6 darwin_9 st mt} depends_build {port:gawk port:junit} variant_desc {st Single-threaded mt {Multi-threaded (default)}} portdir lang/swi-prolog description {SWI-Prolog compiler plus extra packages (stable version)} homepage http://www.swi-prolog.org/ epoch 20051223 platforms darwin depends_lib {port:readline port:ncurses port:jpeg port:libmcrypt port:gmp port:zlib lib:libX11.6:XFree86 port:expat} name swi-prolog maintainers {J.Wielemaker at uva.nl pmoura at logtalk.org} long_description {ISO/Edinburgh-style Prolog compiler including modules, autoload, libraries, Garbage-collector, stack-expandor, C/C++-interface, Multiple threads, GNU-readline interface, coroutining, constraint programming, global variables, very fast compiler. Including packages clib (Unix process control, sockets, MIME), cpp (C++ interface), sgml (reading XML/SGML), sgml/RDF (reading RDF into triples), ODBC interface and XPCE (Graphics UI toolkit, integrated editor (Emacs-clone) and gra phical debugger).} categories lang version 5.6.63 revision 0 +swi-prolog-devel 1066 +variants {universal darwin_6 darwin_9 st mt} depends_build {port:gawk port:junit} variant_desc {st Single-threaded mt {Multi-threaded (default)}} portdir lang/swi-prolog-devel description {SWI-Prolog compiler plus extra packages (development version)} homepage http://www.swi-prolog.org/ epoch 20051223 platforms darwin depends_lib {port:readline port:ncurses port:jpeg port:libmcrypt port:gmp port:zlib lib:libX11.6:XFree86 port:expat} name swi-prolog-devel maintainers {J.Wielemaker at uva.nl pmoura at logtalk.org} long_description {ISO/Edinburgh-style Prolog compiler including modules, autoload, libraries, Garbage-collector, stack-expandor, C/C++-interface, Multiple threads, GNU-readline interface, coroutining, constraint programming, global variables, very fast compiler. Including packages clib (Unix process control, sockets, MIME), cpp (C++ interface), sgml (reading XML/SGML), sgml/RDF (reading RDF into triples), ODBC interface and XPCE (Graphics UI toolkit, integrated editor (Ema cs-clone) and graphical debugger).} categories lang version 5.7.3 revision 0 +swi-prolog-lite 849 +variants {universal darwin_6 st mt} variant_desc {st Single-threaded mt {Multi-threaded (default)}} portdir lang/swi-prolog-lite description {SWI-Prolog compiler (without extra packages)} homepage http://www.swi-prolog.org/ epoch 0 platforms darwin name swi-prolog-lite depends_lib port:readline maintainers {J.Wielemaker at uva.nl pmoura at logtalk.org} long_description {ISO/Edinburgh-style Prolog compiler including modules, autoload, libraries, Garbage-collector, stack-expandor, C/C++-interface, Multiple threads, GNU-readline interface, very fast compiler. Including packages clib (Unix process control, sockets, MIME), cpp (C++ interface), sgml (reading XML/SGML), sgml/RDF (reading RDF into triples), ODBC interface and XPCE (Graphics UI toolkit, integrated editor (Emacs-clone) and graphical debugger).} version 5.6.62 categories lang revision 0 tcl 719 variants {universal threads memdebug} variant_desc {threads {add multithreading support} memdebug {enable memory debugging support}} portdir lang/tcl description {Tool Command Language} homepage http://www.tcl.tk/ epoch 0 platforms {darwin freebsd} name tcl maintainers {mww openmaintainer} long_description {Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more. Open source and business-friendly, Tcl is a mature yet evolving language that is truly cross platform, easily deployed and highly extensible.} version 8.5.5 categories lang revision 0 tclcl 361 @@ -10124,8 +10124,8 @@ portdir x11/xorg-kbproto description {X.org kbproto} platforms darwin name xorg-kbproto version 1.0.3 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for Xkb extension to X11} xorg-libAppleWM 406 variants universal depends_build {port:pkgconfig port:xorg-applewmproto port:xorg-xproto port:xorg-xextproto} portdir x11/xorg-libAppleWM description {X.org libAppleWM} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libX11 port:xorg-libXext} name xorg-libAppleWM maintainers jeremyhu long_description {{X.org libAppleWM}} version 1.0.0 categories {x11 devel} revision 0 -xorg-libX11 544 -variants {universal x11_xcb} depends_build {port:pkgconfig port:xorg-xproto port:xorg-xtrans port:xorg-xextproto port:xorg-xf86bigfontproto port:xorg-inputproto port:xorg-kbproto} portdir x11/xorg-libX11 description {X.org libX11} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXdmcp port:xorg-libXau} name xorg-libX11 maintainers jeremyhu long_description {libX11 is the main library used by X Window System applications to communicate with the X server.} version 1.1.5 categories {x11 devel} revision 1 +xorg-libX11 638 +variants {universal x11_xcb} depends_build {port:pkgconfig port:xorg-bigreqsproto port:xorg-xproto port:xorg-xtrans port:xorg-xextproto port:xorg-xf86bigfontproto port:xorg-inputproto port:xorg-kbproto} variant_desc {x11_xcb {use XCB for low-level protocol implementation}} portdir x11/xorg-libX11 description {X.org libX11} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXdmcp port:xorg-libXau} name xorg-libX11 maintainers jeremyhu long_description {libX11 is the main library used by X Window System applications to communicate with the X server.} categories {x11 devel} version 1.1.5 revision 1 xorg-libXau 352 variants universal portdir x11/xorg-libXau description {X.org libXau} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXau depends_lib {port:xorg-util-macros port:xorg-libpthread-stubs port:xorg-xproto} maintainers bbyer at macports.org long_description {X Authorization Routines library} version 1.0.3 categories devel revision 0 xorg-libXdmcp 333 @@ -10171,7 +10171,7 @@ xorg-videoproto 269 portdir x11/xorg-videoproto description {X.org videoproto} platforms darwin name xorg-videoproto version 2.2.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XVideo extension to X11} xorg-xcb-proto 263 -portdir x11/xorg-xcb-proto description {X.org xcb-proto} platforms {darwin macosx} name xorg-xcb-proto version 1.0 categories {x11 devel} homepage http://xcb.freedesktop.org revision 0 epoch 0 maintainers jeremyhu long_description {XML-XCB protocol descriptions} +portdir x11/xorg-xcb-proto description {X.org xcb-proto} platforms {darwin macosx} name xorg-xcb-proto version 1.2 categories {x11 devel} homepage http://xcb.freedesktop.org revision 0 epoch 0 maintainers jeremyhu long_description {XML-XCB protocol descriptions} xorg-xcmiscproto 272 portdir x11/xorg-xcmiscproto description {X.org xcmiscproto} platforms darwin name xorg-xcmiscproto version 1.1.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XCMisc extension to X11} xorg-xextproto 243 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 20:00:05 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 20:00:05 -0800 (PST) Subject: [42987] trunk/dports/x11/xorg-libxcb/Portfile Message-ID: <20081203040005.3EC87802104@beta.macosforge.org> Revision: 42987 http://trac.macports.org/changeset/42987 Author: jeremyhu at macports.org Date: 2008-12-02 20:00:03 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xorg-libxcb: Bump version of libxcb and include patch for the Leopard launchd DISPLAY socket Modified Paths: -------------- trunk/dports/x11/xorg-libxcb/Portfile Modified: trunk/dports/x11/xorg-libxcb/Portfile =================================================================== --- trunk/dports/x11/xorg-libxcb/Portfile 2008-12-03 02:51:45 UTC (rev 42986) +++ trunk/dports/x11/xorg-libxcb/Portfile 2008-12-03 04:00:03 UTC (rev 42987) @@ -3,9 +3,9 @@ PortSystem 1.0 name xorg-libxcb -version 1.0 -categories devel x11 -maintainers bbyer at macports.org +version 1.1 +categories x11 devel +maintainers jeremyhu description X.org libxcb homepage http://xcb.freedesktop.org/ platforms darwin macosx @@ -13,7 +13,21 @@ master_sites ${homepage}/dist/ distname libxcb-${version} -checksums sha1 0a7e0b65e6f1e0ef4dcaecaa01c4b2854206e96e +checksums md5 9310b02433273d75d42f10da3c7455aa \ + sha1 b27c7eb86fd2ea43cea83cadcf20cc77abf5defe \ + rmd160 1c8c1d83ec71f7d1906373a679906615d9440f01 use_bzip2 yes +use_parallel_build yes -depends_lib port:xorg-util-macros port:xorg-xcb-proto port:xorg-libpthread-stubs port:xorg-libXau +depends_build port:pkgconfig \ + port:xorg-xcb-proto \ + port:libtool \ + port:xorg-util-macros +depends_lib port:xorg-libXau \ + port:xorg-libXdmcp + +patchfiles launchd.patch + +pre-configure { + system "cd ${worksrcpath} && autoreconf -fvi" +} -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 20:00:27 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 20:00:27 -0800 (PST) Subject: [42988] trunk/dports/x11/xorg-libxcb Message-ID: <20081203040027.9875E802179@beta.macosforge.org> Revision: 42988 http://trac.macports.org/changeset/42988 Author: jeremyhu at macports.org Date: 2008-12-02 20:00:26 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xorg-libxcb: Include patch for the leopard launchd DISPLAY socket Added Paths: ----------- trunk/dports/x11/xorg-libxcb/files/ trunk/dports/x11/xorg-libxcb/files/launchd.patch Added: trunk/dports/x11/xorg-libxcb/files/launchd.patch =================================================================== --- trunk/dports/x11/xorg-libxcb/files/launchd.patch (rev 0) +++ trunk/dports/x11/xorg-libxcb/files/launchd.patch 2008-12-03 04:00:26 UTC (rev 42988) @@ -0,0 +1,71 @@ +diff -Naurp libxcb-1.1.orig/configure.ac libxcb-1.1/configure.ac +--- configure.ac 2007-11-04 15:17:11.000000000 -0800 ++++ configure.ac 2008-11-23 17:28:05.000000000 -0800 +@@ -90,6 +90,15 @@ AC_CONFIG_FILES([Makefile src/Makefile t + AC_CONFIG_FILES([xcb.pc xcb-xlib.pc xcb-composite.pc xcb-damage.pc xcb-dpms.pc xcb-glx.pc xcb-randr.pc xcb-record.pc xcb-render.pc xcb-res.pc xcb-screensaver.pc xcb-shape.pc xcb-shm.pc xcb-sync.pc xcb-xevie.pc xcb-xf86dri.pc xcb-xfixes.pc xcb-xinerama.pc xcb-xprint.pc xcb-xtest.pc xcb-xv.pc xcb-xvmc.pc]) + AC_CONFIG_FILES([doc/xcb.doxygen]) + ++AC_ARG_WITH(launchd, AS_HELP_STRING([--with-launchd], [Build with support for Apple's launchd (default: auto)]), [LAUNCHD=$withval], [LAUNCHD=auto]) ++if test "x$LAUNCHD" = xauto; then ++ unset LAUNCHD ++ AC_CHECK_PROG(LAUNCHD, [launchd], [yes], [no]) ++fi ++if test "x$LAUNCHD" = xyes ; then ++ AC_DEFINE(HAVE_LAUNCHD, 1, [launchd support available]) ++fi ++ + AC_OUTPUT + + dnl Configuration output +diff -Naurp libxcb-1.1.orig/src/xcb_util.c libxcb-1.1/src/xcb_util.c +--- src/xcb_util.c 2007-10-23 09:44:59.000000000 -0700 ++++ src/xcb_util.c 2008-11-23 17:27:12.000000000 -0800 +@@ -266,11 +266,22 @@ xcb_connection_t *xcb_connect(const char + char *protocol; + xcb_connection_t *c; + xcb_auth_info_t auth; ++ ++ int parsed = _xcb_parse_display(displayname, &host, &protocol, &display, screenp); + +- if(!_xcb_parse_display(displayname, &host, &protocol, &display, screenp)) ++#ifdef HAVE_LAUNCHD ++ if(!displayname) ++ displayname = getenv("DISPLAY"); ++ if(displayname && strlen(displayname)>11 && !strncmp(displayname, "/tmp/launch", 11)) ++ fd = _xcb_open_unix(NULL, displayname); ++ else ++#endif ++ if(!parsed) + return (xcb_connection_t *) &error_connection; +- fd = _xcb_open(host, protocol, display); ++ else ++ fd = _xcb_open(host, protocol, display); + free(host); ++ + if(fd == -1) + return (xcb_connection_t *) &error_connection; + +@@ -291,10 +302,21 @@ xcb_connection_t *xcb_connect_to_display + char *host; + char *protocol; + +- if(!_xcb_parse_display(displayname, &host, &protocol, &display, screenp)) ++ int parsed = _xcb_parse_display(displayname, &host, &protocol, &display, screenp); ++ ++#ifdef HAVE_LAUNCHD ++ if(!displayname) ++ displayname = getenv("DISPLAY"); ++ if(displayname && strlen(displayname)>11 && !strncmp(displayname, "/tmp/launch", 11)) ++ fd = _xcb_open_unix(NULL, displayname); ++ else ++#endif ++ if(!parsed) + return (xcb_connection_t *) &error_connection; +- fd = _xcb_open(host, protocol, display); ++ else ++ fd = _xcb_open(host, protocol, display); + free(host); ++ + if(fd == -1) + return (xcb_connection_t *) &error_connection; + -------------- next part -------------- An HTML attachment was scrubbed... URL: From landonf at macports.org Tue Dec 2 20:03:57 2008 From: landonf at macports.org (landonf at macports.org) Date: Tue, 2 Dec 2008 20:03:57 -0800 (PST) Subject: [42989] trunk/dports/graphics Message-ID: <20081203040357.B064F8023F2@beta.macosforge.org> Revision: 42989 http://trac.macports.org/changeset/42989 Author: landonf at macports.org Date: 2008-12-02 20:03:57 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Add mscgen 0.13, primarily useful in combination with doxygen: Mscgen is a small program that parses Message Sequence Chart descriptions and produces PNG, SVG, EPS or server side image maps (ismaps) as the output. Added Paths: ----------- trunk/dports/graphics/mscgen/ trunk/dports/graphics/mscgen/Portfile Added: trunk/dports/graphics/mscgen/Portfile =================================================================== --- trunk/dports/graphics/mscgen/Portfile (rev 0) +++ trunk/dports/graphics/mscgen/Portfile 2008-12-03 04:03:57 UTC (rev 42989) @@ -0,0 +1,38 @@ +# $Id: Portfile 39459 2008-08-20 20:10:01Z ryandesign at macports.org $ + +PortSystem 1.0 + +name mscgen +version 0.13 +categories graphics +maintainers landonf +homepage http://www.mcternan.me.uk/mscgen/ +platforms darwin + +description Message Sequence Chart image generator + +long_description Mscgen is a small program that parses Message Sequence \ + Chart descriptions and produces PNG, SVG, EPS or \ + server side image maps (ismaps) as the output. Message \ + Sequence Charts (MSCs) are a way of representing \ + entities and interactions over some time period \ + and are often used in combination with SDL. + +master_sites ${homepage}/software/ +distname ${name}-src-${version} + +checksums md5 12fc1275458449b112d938109b91674a \ + sha1 aff63d3614c9a1af99ec3d5ef73523826415954e \ + rmd160 7c787821e80ce85c26816e314272342f61708ffb + +depends_lib port:gd2 + +worksrcdir ${name}/src + +use_configure no +build.target all-osx +build.args CFLAGS="-I. -I../parser -I${prefix}/include -DPACKAGE_VERSION=${version}" + +destroot { + file copy ${worksrcpath}/../bin/mscgen ${destroot}/${prefix}/bin +} -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 20:07:05 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 20:07:05 -0800 (PST) Subject: [42990] trunk/dports/x11 Message-ID: <20081203040706.0E8CF8026C4@beta.macosforge.org> Revision: 42990 http://trac.macports.org/changeset/42990 Author: jeremyhu at macports.org Date: 2008-12-02 20:07:05 -0800 (Tue, 02 Dec 2008) Log Message: ----------- New port: xorg-xcb-util Added Paths: ----------- trunk/dports/x11/xorg-xcb-util/ trunk/dports/x11/xorg-xcb-util/Portfile Added: trunk/dports/x11/xorg-xcb-util/Portfile =================================================================== --- trunk/dports/x11/xorg-xcb-util/Portfile (rev 0) +++ trunk/dports/x11/xorg-xcb-util/Portfile 2008-12-03 04:07:05 UTC (rev 42990) @@ -0,0 +1,24 @@ +# $Id$ + +PortSystem 1.0 + +name xorg-xcb-util +version 0.3.1 +categories x11 devel +maintainers jeremyhu +description X.org xcb-util +homepage http://xcb.freedesktop.org/ +platforms darwin macosx +long_description Utility libraries for XCB +master_sites ${homepage}/dist/ + +distname xcb-util-${version} +checksums md5 4b06006e438c3926d077439b31d290d6 \ + sha1 1a4e6fe7aec6e846e2440393e43a83c7fe4ff7bd \ + rmd160 7c6b33288b6eb1d159d832b626aedadcf3d4fabf +use_bzip2 yes +use_parallel_build yes + +depends_build port:pkgconfig \ + port:xorg-xproto +depends_lib port:xorg-libxcb Property changes on: trunk/dports/x11/xorg-xcb-util/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Tue Dec 2 20:27:01 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Tue, 2 Dec 2008 20:27:01 -0800 (PST) Subject: [42991] trunk/dports/graphics/jasper/Portfile Message-ID: <20081203042701.927E28036D2@beta.macosforge.org> Revision: 42991 http://trac.macports.org/changeset/42991 Author: mcalhoun at macports.org Date: 2008-12-02 20:27:01 -0800 (Tue, 02 Dec 2008) Log Message: ----------- jasper: Removed unnecessary backslashes and quotes. Ensure the documentation has correct permissions (g-r) by using xinstall. Chaned default X11 to xorg-libX11. Modified Paths: -------------- trunk/dports/graphics/jasper/Portfile Modified: trunk/dports/graphics/jasper/Portfile =================================================================== --- trunk/dports/graphics/jasper/Portfile 2008-12-03 04:07:05 UTC (rev 42990) +++ trunk/dports/graphics/jasper/Portfile 2008-12-03 04:27:01 UTC (rev 42991) @@ -29,10 +29,9 @@ patch-src_libjasper_jpc_jpc_dec.c.diff configure.args --enable-shared \ - --disable-static \ --disable-opengl \ - --mandir=\\\${prefix}/share/man \ - --infodir=\\\${prefix}/share/info + --mandir=${prefix}/share/man \ + --infodir=${prefix}/share/info use_parallel_build yes @@ -40,18 +39,20 @@ test.target check post-destroot { - xinstall -m 755 -d ${destroot}${prefix}/share/doc - copy ${worksrcpath}/doc ${destroot}${prefix}/share/doc/${name}-${version} - file attributes ${destroot}${prefix}/share/doc/${name}-${version} -permissions go-w + set docdir ${prefix}/share/doc/${name}-${version} + xinstall -m 755 -d ${destroot}${docdir} + eval xinstall -m 644 [glob ${worksrcpath}/doc/*] ${destroot}${docdir} } variant jiv description {build a basic viewer as well} { depends_lib-append port:glut \ - lib:libX11.6:xorg + lib:libX11:xorg-libX11 configure.args-delete --disable-opengl configure.args-append --enable-opengl - configure.cppflags-append "-I${x11prefix}/include" + + # glut needs to be able to find gl.h and glu.h + configure.cppflags-append -I${x11prefix}/include } platform darwin 9 { -------------- next part -------------- An HTML attachment was scrubbed... URL: From toby at macports.org Tue Dec 2 20:28:02 2008 From: toby at macports.org (toby at macports.org) Date: Tue, 2 Dec 2008 20:28:02 -0800 (PST) Subject: [42992] trunk/dports/devel/vxl Message-ID: <20081203042802.9123D803805@beta.macosforge.org> Revision: 42992 http://trac.macports.org/changeset/42992 Author: toby at macports.org Date: 2008-12-02 20:28:02 -0800 (Tue, 02 Dec 2008) Log Message: ----------- ppc build failure Modified Paths: -------------- trunk/dports/devel/vxl/Portfile Added Paths: ----------- trunk/dports/devel/vxl/files/patch-v3p?\226?\152?\131mpeg2?\226?\152?\131libmpeg2?\226?\152?\131idct_altivec.c trunk/dports/devel/vxl/files/patch-v3p?\226?\152?\131mpeg2?\226?\152?\131libmpeg2?\226?\152?\131motion_comp_altivec.c Modified: trunk/dports/devel/vxl/Portfile =================================================================== --- trunk/dports/devel/vxl/Portfile 2008-12-03 04:27:01 UTC (rev 42991) +++ trunk/dports/devel/vxl/Portfile 2008-12-03 04:28:02 UTC (rev 42992) @@ -23,7 +23,9 @@ rmd160 35812c0fcfdda27c77ee9044e65e9e8dcccfffc0 patchfiles patch-contrib?brl?bpro?bprb?Templates?bprb_parameters+unsigned_int-.cxx \ - patch-contrib?brl?bseg?bvxm?bvxm_memory_chunk.cxx + patch-contrib?brl?bseg?bvxm?bvxm_memory_chunk.cxx \ + patch-v3p?mpeg2?libmpeg2?idct_altivec.c \ + patch-v3p?mpeg2?libmpeg2?motion_comp_altivec.c depends_build port:cmake Added: trunk/dports/devel/vxl/files/patch-v3p?\226?\152?\131mpeg2?\226?\152?\131libmpeg2?\226?\152?\131idct_altivec.c =================================================================== -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Dec 2 20:32:39 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 20:32:39 -0800 Subject: propchange - r42991 svn:log Message-ID: <20081203043349.711072807E@relay11.apple.com> Author: ryandesign at macports.org (original author: mcalhoun at macports.org) Revision: 42991 Property Name: svn:log --- /Volumes/data/admin/var/tmp/revprops/pre-42991-ryandesign at macports.org 2008-12-02 20:32:37.000000000 -0800 +++ /Volumes/data/admin/var/tmp/revprops/post-42991-ryandesign at macports.org 2008-12-02 20:32:38.000000000 -0800 @@ -1,3 +1,4 @@ jasper: Removed unnecessary backslashes and quotes. Ensure the documentation has correct permissions (g-r) by using xinstall. Chaned default X11 to xorg-libX11. +Now also build the static library. From ryandesign at macports.org Tue Dec 2 20:32:54 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 2 Dec 2008 20:32:54 -0800 (PST) Subject: [42993] trunk/dports/graphics/jasper/Portfile Message-ID: <20081203043254.9D98A803B94@beta.macosforge.org> Revision: 42993 http://trac.macports.org/changeset/42993 Author: ryandesign at macports.org Date: 2008-12-02 20:32:54 -0800 (Tue, 02 Dec 2008) Log Message: ----------- jasper: increase revision so everyone gets the change from r42991 Modified Paths: -------------- trunk/dports/graphics/jasper/Portfile Modified: trunk/dports/graphics/jasper/Portfile =================================================================== --- trunk/dports/graphics/jasper/Portfile 2008-12-03 04:28:02 UTC (rev 42992) +++ trunk/dports/graphics/jasper/Portfile 2008-12-03 04:32:54 UTC (rev 42993) @@ -4,7 +4,7 @@ name jasper version 1.900.1 -revision 1 +revision 2 categories graphics platforms darwin maintainers nomaintainer -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 20:51:41 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 20:51:41 -0800 (PST) Subject: [42994] trunk/dports/PortIndex Message-ID: <20081203045142.BF4F480460B@beta.macosforge.org> Revision: 42994 http://trac.macports.org/changeset/42994 Author: portindex at macports.org Date: 2008-12-02 20:51:40 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5179 Ports successfully parsed: 5179 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-03 04:32:54 UTC (rev 42993) +++ trunk/dports/PortIndex 2008-12-03 04:51:40 UTC (rev 42994) @@ -2849,7 +2849,7 @@ ivtools 467 portdir graphics/ivtools variants universal description {X11 based drawing editors for PostScript, TeX, web graphics} name ivtools version 1.0.7 categories graphics homepage http://ivtools.sourceforge.net/ revision 0 epoch 0 maintainers fenner at macports.org long_description {ivtools (pronounced eye-vee-tools) is a suite of free X Windows drawing editors for PostScript, TeX, and web graphics production, as well as an embeddable and extendable vector graphic shell} jasper 550 -variants {universal jiv darwin_9} variant_desc {jiv {build a basic viewer as well}} portdir graphics/jasper description {Library for manipulating JPEG-2000 images} homepage http://www.ece.uvic.ca/~mdadams/jasper/ epoch 0 platforms darwin name jasper depends_lib port:jpeg maintainers nomaintainer long_description {The JasPer Project is an open-source initiative to provide a free software-based reference implementation of the codec specified in the JPEG-2000 Part-1 standard (i.e., ISO/IEC 15444-1).} version 1.900.1 categories graphics revision 1 +variants {universal jiv darwin_9} variant_desc {jiv {build a basic viewer as well}} portdir graphics/jasper description {Library for manipulating JPEG-2000 images} homepage http://www.ece.uvic.ca/~mdadams/jasper/ epoch 0 platforms darwin name jasper depends_lib port:jpeg maintainers nomaintainer long_description {The JasPer Project is an open-source initiative to provide a free software-based reference implementation of the codec specified in the JPEG-2000 Part-1 standard (i.e., ISO/IEC 15444-1).} version 1.900.1 categories graphics revision 2 jbigkit 651 variants {universal darwin} description {Data compression algorithm for bi-level high-res images} portdir graphics/jbigkit homepage http://www.cl.cam.ac.uk/~mgk25/jbigkit epoch 0 platforms darwin name jbigkit long_description {JBIG-KIT provides a portable library of compression and decompression functions with a documented interface that you can very easily include into your image or document processing software. In addition, JBIG-KIT provides ready-to-use compression and decompression programs with a simple command line interface (similar to the converters found in netpbm).} maintainers nomaintainer categories graphics version 1.6 revision 0 jgraph 614 @@ -2930,6 +2930,8 @@ variants {universal autotrace} portdir graphics/mftrace description {Trace TeX bitmap font to PFA, PFB, or TTF font} homepage http://lilypond.org/mftrace/ epoch 0 platforms darwin name mftrace depends_lib {port:python25 port:potrace port:texlive} maintainers nomaintainer long_description {A small Python program that lets you trace a TeX bitmap font into a PFA or PFB font (A PostScript Type1 Scalable Font) or TTF (TrueType) font. It is licensed under the GNU GPL.} version 1.2.14 categories graphics revision 1 mpg2ppm 340 variants universal description {mpg2ppm is a MPEG-VStream decoder based on mpeg2decode} portdir graphics/mpg2ppm homepage http://mpg2ppm.sourceforge.net/ epoch 0 platforms darwin name mpg2ppm long_description {{mpg2ppm is a MPEG-VStream decoder based on mpeg2decode}} maintainers mww categories {graphics multimedia} version 1.3 revision 0 +mscgen 580 +variants universal portdir graphics/mscgen description {Message Sequence Chart image generator} homepage http://www.mcternan.me.uk/mscgen/ epoch 0 platforms darwin name mscgen depends_lib port:gd2 maintainers landonf long_description {Mscgen is a small program that parses Message Sequence Chart descriptions and produces PNG, SVG, EPS or server side image maps (ismaps) as the output. Message Sequence Charts (MSCs) are a way of representing entities and interactions over some time period and are often used in combination with SDL.} version 0.13 categories graphics revision 0 mtpaint 507 variants gtk1 variant_desc {gtk1 {use GTK+1 instead of GTK+2}} portdir graphics/mtpaint description {Mark Tyler's Painting Program} homepage http://mtpaint.sourceforge.net/ epoch 0 platforms darwin name mtpaint depends_lib {port:libpng port:gtk2 port:freetype} maintainers {afb at macports.org openmaintainer} long_description {mtPaint is a painting program which Mark Tyler developed from scratch so he could easily create pixel art and manipulate digital photos.} version 3.20 categories graphics revision 0 netpbm 581 @@ -10146,8 +10148,8 @@ variants universal portdir x11/xorg-libpthread-stubs description {X.org/Xcb libpthread stubs} homepage http://xcb.freedesktop.org epoch 0 platforms {darwin macosx} name xorg-libpthread-stubs depends_lib port:xorg-util-macros maintainers bbyer at macports.org long_description {Library that provides pthread stubs that are missing from your platform libc. (used for libxcb)} version 0.1 categories {x11 devel} revision 0 xorg-libsm 334 variants universal portdir x11/xorg-libsm description {X.org libSM} homepage http://www.x.org/ epoch 0 platforms {darwin macosx} name xorg-libsm depends_lib {port:pkgconfig port:xorg-libice port:xorg-xproto} maintainers gmail.com:mvfranz long_description {X Session Management Library} version 1.0.3 categories {x11 devel} revision 0 -xorg-libxcb 384 -variants universal portdir x11/xorg-libxcb description {X.org libxcb} homepage http://xcb.freedesktop.org/ epoch 0 platforms {darwin macosx} name xorg-libxcb depends_lib {port:xorg-util-macros port:xorg-xcb-proto port:xorg-libpthread-stubs port:xorg-libXau} maintainers bbyer at macports.org long_description {The X C Binding (XCB) library} version 1.0 categories {devel x11} revision 0 +xorg-libxcb 410 +variants universal depends_build {port:pkgconfig port:xorg-xcb-proto port:libtool port:xorg-util-macros} portdir x11/xorg-libxcb description {X.org libxcb} homepage http://xcb.freedesktop.org/ epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXau port:xorg-libXdmcp} name xorg-libxcb maintainers jeremyhu long_description {The X C Binding (XCB) library} version 1.1 categories {x11 devel} revision 0 xorg-libxkbfile 338 variants universal portdir x11/xorg-libxkbfile description {X.org libxbfile} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libxkbfile depends_lib {port:xorg-util-macros port:xorg-libXdmcp} maintainers bbyer at macports.org long_description {XKB file handling routines} version 1.0.4 categories {x11 devel} revision 0 xorg-proto 874 @@ -10172,6 +10174,8 @@ portdir x11/xorg-videoproto description {X.org videoproto} platforms darwin name xorg-videoproto version 2.2.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XVideo extension to X11} xorg-xcb-proto 263 portdir x11/xorg-xcb-proto description {X.org xcb-proto} platforms {darwin macosx} name xorg-xcb-proto version 1.2 categories {x11 devel} homepage http://xcb.freedesktop.org revision 0 epoch 0 maintainers jeremyhu long_description {XML-XCB protocol descriptions} +xorg-xcb-util 355 +variants universal depends_build {port:pkgconfig port:xorg-xproto} portdir x11/xorg-xcb-util description {X.org xcb-util} homepage http://xcb.freedesktop.org/ epoch 0 platforms {darwin macosx} depends_lib port:xorg-libxcb name xorg-xcb-util maintainers jeremyhu long_description {Utility libraries for XCB} version 0.3.1 categories {x11 devel} revision 0 xorg-xcmiscproto 272 portdir x11/xorg-xcmiscproto description {X.org xcmiscproto} platforms darwin name xorg-xcmiscproto version 1.1.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XCMisc extension to X11} xorg-xextproto 243 -------------- next part -------------- An HTML attachment was scrubbed... URL: From devans at macports.org Tue Dec 2 20:52:51 2008 From: devans at macports.org (devans at macports.org) Date: Tue, 2 Dec 2008 20:52:51 -0800 (PST) Subject: [42995] trunk/dports/graphics/gimp2/Portfile Message-ID: <20081203045252.12FAE80472F@beta.macosforge.org> Revision: 42995 http://trac.macports.org/changeset/42995 Author: devans at macports.org Date: 2008-12-02 20:52:51 -0800 (Tue, 02 Dec 2008) Log Message: ----------- gimp2: update to version 2.6.3. Modified Paths: -------------- trunk/dports/graphics/gimp2/Portfile Modified: trunk/dports/graphics/gimp2/Portfile =================================================================== --- trunk/dports/graphics/gimp2/Portfile 2008-12-03 04:51:40 UTC (rev 42994) +++ trunk/dports/graphics/gimp2/Portfile 2008-12-03 04:52:51 UTC (rev 42995) @@ -4,7 +4,7 @@ PortSystem 1.0 name gimp2 -version 2.6.2 +version 2.6.3 categories graphics maintainers devans homepage http://www.gimp.org/ @@ -55,9 +55,9 @@ ftp://ftp.sunet.se/pub/gnu/gimp/v${branch}/ \ http://ftp.sunet.se/pub/gnu/gimp/v${branch}/ -checksums md5 3664d12f26447c0edc3f611987b9bf2d \ - sha1 b6ae56413263d8ea3d4a26af74960eb406ed86fa \ - rmd160 baba90572478200f9422d447437c6f669140fc03 +checksums md5 39c30867511b79391eb9177c86c8b79a \ + sha1 5e64c03d9d05fa28656c6041039c26cd7c09deab \ + rmd160 ac736b1e49918f4aa23215fce9ab56c359c586f0 distname gimp-${version} use_bzip2 yes -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 20:59:43 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 20:59:43 -0800 (PST) Subject: [42996] trunk/dports/x11/xinit Message-ID: <20081203045943.67D8C804DAD@beta.macosforge.org> Revision: 42996 http://trac.macports.org/changeset/42996 Author: jeremyhu at macports.org Date: 2008-12-02 20:59:42 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xinit: Version bump to 1.1.0 plus latest git updates for better Tiger support Modified Paths: -------------- trunk/dports/x11/xinit/Portfile Added Paths: ----------- trunk/dports/x11/xinit/files/ trunk/dports/x11/xinit/files/tiger_support.patch trunk/dports/x11/xinit/files/xinitrc.d/ trunk/dports/x11/xinit/files/xinitrc.d/10-fontdir.sh trunk/dports/x11/xinit/files/xinitrc.d/98-user.sh trunk/dports/x11/xinit/files/xinitrc.d/99-quartz-wm.sh Modified: trunk/dports/x11/xinit/Portfile =================================================================== --- trunk/dports/x11/xinit/Portfile 2008-12-03 04:52:51 UTC (rev 42995) +++ trunk/dports/x11/xinit/Portfile 2008-12-03 04:59:42 UTC (rev 42996) @@ -3,10 +3,10 @@ PortSystem 1.0 name xinit -version 1.0.8 +version 1.1.0 categories x11 platforms darwin -maintainers bbyer at macports.org +maintainers jeremyhu description X11 startup script processor long_description xinit is responsible for configuring the initial environment \ when X11 starts up. @@ -14,14 +14,35 @@ homepage http://www.x.org master_sites ${homepage}/pub/individual/app/ -checksums sha1 0102d2fdc0df3d24077ba826cf57640da46140af +checksums md5 9144097186c3d2454beffe8ac3b53c6e \ + sha1 c4d3d8314ddd94c4950349d23a3e387af65186da \ + rmd160 d2631bd7eea0ce702b2b4d380e28365dab4fef83 use_bzip2 yes +use_parallel_build yes -depends_lib lib:libX11:xorg-libX11 +depends_build port:pkgconfig \ + port:xorg-util-macros +depends_lib lib:libX11.6:xorg-libX11 + configure.pkg_config_path ${x11prefix}/lib/pkgconfig -configure.args --mandir=${prefix}/share/man -livecheck.check regex -livecheck.url ${master_sites} -#livecheck.regex "${name}\\.tar\\.gz -> ${name}-(\\d+)\\.tgz" +patchfiles tiger_support.patch + +pre-configure { + system "cd ${worksrcpath} && autoreconf -fvi" + reinplace "s|org.x|org.macports|" ${worksrcpath}/org.x.startx.plist.cpp + reinplace "s|org.x|org.macports|" ${worksrcpath}/privileged_startx/org.x.privileged_startx.plist.cpp + reinplace "s|org.x|org.macports|" ${worksrcpath}/privileged_startx/privileged_startx_types.h + reinplace "s|org.x|org.macports|" ${worksrcpath}/privileged_startx/server.c + reinplace "s|org.x|org.macports|" ${worksrcpath}/startx.cpp +} + +post-destroot { + system "mv ${destroot}/Library/LaunchAgents/org.x.startx.plist ${destroot}/Library/LaunchAgents/org.macports.startx.plist" + system "mv ${destroot}/Library/LaunchDaemons/org.x.privileged_startx.plist ${destroot}/Library/LaunchDaemons/org.macports.privileged_startx.plist" + + system "mkdir ${destroot}/${prefix}/lib/X11/xinit/xinitrc.d" + system "cp ${filespath}/xinitrc.d/*.sh ${destroot}/${prefix}/lib/X11/xinit/xinitrc.d" + system "chmod 755 ${destroot}/${prefix}/lib/X11/xinit/xinitrc.d/*.sh" +} Added: trunk/dports/x11/xinit/files/tiger_support.patch =================================================================== --- trunk/dports/x11/xinit/files/tiger_support.patch (rev 0) +++ trunk/dports/x11/xinit/files/tiger_support.patch 2008-12-03 04:59:42 UTC (rev 42996) @@ -0,0 +1,572 @@ +diff --git a/Makefile.am b/Makefile.am +index 78ae154..0d831f3 100644 +--- Makefile.am ++++ Makefile.am +@@ -67,9 +67,6 @@ endif + + DIST_SUBDIRS = privileged_startx + +-xinitrc: xinitrc.cpp Makefile +-startx: startx.cpp Makefile +- + xinitrc_DATA = xinitrc + + CLEANFILES = xinitrc startx $(appman_DATA) $(launchagents_DATA) +diff --git a/configure.ac b/configure.ac +index 2d09cad..86bd1f2 100644 +--- configure.ac ++++ configure.ac +@@ -102,18 +102,17 @@ AC_ARG_WITH(launchdaemons-dir, AS_HELP_STRING([--with-launchdaemons-dir=PATH], + + if test "x$LAUNCHD" = "xauto"; then + unset LAUNCHD +- case $host_os in +- darwin8*) +- LAUNCHD=no +- ;; +- *) +- AC_CHECK_PROG(LAUNCHD, [launchd], [yes], [no]) +- ;; +- esac ++ AC_CHECK_PROG(LAUNCHD, [launchd], [yes], [no]) + fi + ++TIGER_LAUNCHD=no + if test "x$LAUNCHD" = "xyes" ; then + AC_DEFINE(HAVE_LAUNCHD, 1, [launchd support available]) ++ case $host_os in ++ darwin8*) ++ TIGER_LAUNCHD=yes ++ ;; ++ esac + else + launchagentsdir="" + launchdaemonsdir="" +@@ -121,6 +120,7 @@ fi + AC_SUBST([launchagentsdir]) + AC_SUBST([launchdaemonsdir]) + AM_CONDITIONAL(LAUNCHD, [test "x$LAUNCHD" = "xyes"]) ++AM_CONDITIONAL(TIGER_LAUNCHD, [test "x$TIGER_LAUNCHD" = "xyes"]) + + # Checks for pkg-config packages + PKG_CHECK_MODULES(XINIT, x11) +diff --git a/org.x.startx.plist.cpp b/org.x.startx.plist.cpp +index 42c9f70..4bcedcf 100644 +--- org.x.startx.plist.cpp ++++ org.x.startx.plist.cpp +@@ -21,5 +21,7 @@ + + ServiceIPC + ++ EnableTransactions ++ + + +diff --git a/privileged_startx/Makefile.am b/privileged_startx/Makefile.am +index 6a143ca..2d68544 100644 +--- privileged_startx/Makefile.am ++++ privileged_startx/Makefile.am +@@ -34,9 +34,12 @@ xinitrc_PROGRAMS = privileged_startx + privstartx_SCRIPTS = 10-tmpdirs 20-font_cache + + AM_CPPFLAGS = -DXINITDIR=\"$(xinitrcdir)\" -DSCRIPTDIR=\"$(privstartxdir)\" -DBINDIR=\"$(bindir)\" +- + CPP_FILES_FLAGS = -DXINITDIR="$(xinitrcdir)" -DSCRIPTDIR="$(privstartxdir)" -DBINDIR="$(bindir)" + ++if TIGER_LAUNCHD ++CPP_FILES_FLAGS += -DTIGER_LAUNCHD ++endif ++ + dist_privileged_startx_SOURCES = \ + server.c \ + client.c \ +@@ -70,5 +73,5 @@ EXTRA_DIST = \ + privileged_startx.defs \ + privileged_startx_types.h + +-$(BUILT_SOURCES): privileged_startx.defs +- mig -sheader privileged_startxServer.h privileged_startx.defs ++$(BUILT_SOURCES): $(srcdir)/privileged_startx.defs ++ mig -sheader privileged_startxServer.h $(srcdir)/privileged_startx.defs +diff --git a/privileged_startx/client.c b/privileged_startx/client.c +index 2a24a70..a33dd02 100644 +--- privileged_startx/client.c ++++ privileged_startx/client.c +@@ -34,6 +34,8 @@ + #include + #include + ++#include ++ + #include "privileged_startx.h" + + int client_main(void) { +@@ -42,7 +44,11 @@ int client_main(void) { + + kr = bootstrap_look_up(bootstrap_port, BOOTSTRAP_NAME, &mp); + if (kr != KERN_SUCCESS) { ++#if MAC_OS_X_VERSION_MIN_REQUIRED >= 1050 + fprintf(stderr, "bootstrap_look_up(): %s\n", bootstrap_strerror(kr)); ++#else ++ fprintf(stderr, "bootstrap_look_up(): %ul\n", (unsigned long)kr); ++#endif + exit(EXIT_FAILURE); + } + +diff --git a/privileged_startx/org.x.privileged_startx.plist.cpp b/privileged_startx/org.x.privileged_startx.plist.cpp +index e878dc3..7400cc4 100644 +--- privileged_startx/org.x.privileged_startx.plist.cpp ++++ privileged_startx/org.x.privileged_startx.plist.cpp +@@ -4,18 +4,25 @@ + + Label + org.x.privileged_startx +- MachServices +- +- org.x.privileged_startx +- +- + ProgramArguments + + XINITDIR/privileged_startx + -d + SCRIPTDIR + ++#ifdef TIGER_LAUNCHD ++ KeepAlive ++ ++#else ++ MachServices ++ ++ org.x.privileged_startx ++ ++ + TimeOut +- 60 ++ 120 ++ EnableTransactions ++ ++#endif + + +diff --git a/privileged_startx/server.c b/privileged_startx/server.c +index 7afd424..6dd4f2b 100644 +--- privileged_startx/server.c ++++ privileged_startx/server.c +@@ -40,7 +40,6 @@ + #include + #include + #include +-#include + #include + + #include "privileged_startx.h" +@@ -51,6 +50,10 @@ union MaxMsgSize { + union __ReplyUnion__privileged_startx_subsystem rep; + }; + ++#ifdef LAUNCH_JOBKEY_MACHSERVICES ++#include ++static void* idle_thread(void* param __attribute__((unused))); ++ + /* globals to trigger idle exit */ + #define DEFAULT_IDLE_TIMEOUT 60 /* 60 second timeout, then the server exits */ + +@@ -61,6 +64,7 @@ struct idle_globals { + }; + + struct idle_globals idle_globals; ++#endif + + #ifndef SCRIPTDIR + #define SCRIPTDIR="/usr/X11/lib/X11/xinit/privileged_startx.d" +@@ -69,13 +73,46 @@ struct idle_globals idle_globals; + /* Default script dir */ + const char *script_dir = SCRIPTDIR; + +-static void* idle_thread(void* param __attribute__((unused))); ++#ifndef LAUNCH_JOBKEY_MACHSERVICES ++static mach_port_t checkin_or_register(char *bname) { ++ kern_return_t kr; ++ mach_port_t mp; ++ ++ /* If we're started by launchd or the old mach_init */ ++ kr = bootstrap_check_in(bootstrap_port, bname, &mp); ++ if (kr == KERN_SUCCESS) ++ return mp; ++ ++ /* We probably were not started by launchd or the old mach_init */ ++ kr = mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, &mp); ++ if (kr != KERN_SUCCESS) { ++ fprintf(stderr, "mach_port_allocate(): %s\n", mach_error_string(kr)); ++ exit(EXIT_FAILURE); ++ } ++ ++ kr = mach_port_insert_right(mach_task_self(), mp, mp, MACH_MSG_TYPE_MAKE_SEND); ++ if (kr != KERN_SUCCESS) { ++ fprintf(stderr, "mach_port_insert_right(): %s\n", mach_error_string(kr)); ++ exit(EXIT_FAILURE); ++ } ++ ++ kr = bootstrap_register(bootstrap_port, bname, mp); ++ if (kr != KERN_SUCCESS) { ++ fprintf(stderr, "bootstrap_register(): %s\n", mach_error_string(kr)); ++ exit(EXIT_FAILURE); ++ } ++ ++ return mp; ++} ++#endif + + int server_main(const char *dir) { + mach_msg_size_t mxmsgsz = sizeof(union MaxMsgSize) + MAX_TRAILER_SIZE; + mach_port_t mp; + kern_return_t kr; ++#ifdef LAUNCH_JOBKEY_MACHSERVICES + long idle_timeout = DEFAULT_IDLE_TIMEOUT; ++#endif + + launch_data_t config = NULL, checkin = NULL; + checkin = launch_data_new_string(LAUNCH_KEY_CHECKIN); +@@ -85,6 +122,13 @@ int server_main(const char *dir) { + exit(EXIT_FAILURE); + } + ++ if(dir) { ++ script_dir = dir; ++ asl_log(NULL, NULL, ASL_LEVEL_DEBUG, ++ "script directory set: %s", script_dir); ++ } ++ ++#ifdef LAUNCH_JOBKEY_MACHSERVICES + launch_data_t tmv; + tmv = launch_data_dict_lookup(config, LAUNCH_JOBKEY_TIMEOUT); + if (tmv) { +@@ -93,12 +137,6 @@ int server_main(const char *dir) { + "idle timeout set: %ld seconds", idle_timeout); + } + +- if(dir) { +- script_dir = dir; +- asl_log(NULL, NULL, ASL_LEVEL_DEBUG, +- "script directory set: %s", script_dir); +- } +- + launch_data_t svc; + svc = launch_data_dict_lookup(config, LAUNCH_JOBKEY_MACHSERVICES); + if (!svc) { +@@ -114,6 +152,10 @@ int server_main(const char *dir) { + } + + mp = launch_data_get_machport(svc); ++#else ++ mp = checkin_or_register("org.x.privileged_startx"); ++#endif ++ + if (mp == MACH_PORT_NULL) { + asl_log(NULL, NULL, ASL_LEVEL_ERR, "NULL mach service: %s", + BOOTSTRAP_NAME); +@@ -129,12 +171,14 @@ int server_main(const char *dir) { + exit(EXIT_FAILURE); + } + ++#ifdef LAUNCH_JOBKEY_MACHSERVICES + /* spawn a thread to monitor our idle timeout */ + pthread_t thread; + idle_globals.mp = mp; + idle_globals.timeout = idle_timeout; + gettimeofday(&idle_globals.lastmsg, NULL); + pthread_create(&thread, NULL, &idle_thread, NULL); ++#endif + + /* Main event loop */ + kr = mach_msg_server(privileged_startx_server, mxmsgsz, mp, 0); +@@ -161,8 +205,10 @@ kern_return_t do_privileged_startx(mach_port_t test_port __attribute__((unused)) + + const char * path_argv[2] = {script_dir, NULL}; + ++#ifdef LAUNCH_JOBKEY_MACHSERVICES + /* Store that we were called, so the idle timer will reset */ + gettimeofday(&idle_globals.lastmsg, NULL); ++#endif + + /* script_dir contains a set of files to run with root privs when X11 starts */ + ftsp = fts_open(path_argv, FTS_PHYSICAL, ftscmp); +@@ -222,6 +268,7 @@ kern_return_t do_privileged_startx(mach_port_t test_port __attribute__((unused)) + } + + kern_return_t do_idle_exit(mach_port_t test_port __attribute__((unused))) { ++#ifdef LAUNCH_JOBKEY_MACHSERVICES + struct timeval now; + gettimeofday(&now, NULL); + +@@ -231,8 +278,12 @@ kern_return_t do_idle_exit(mach_port_t test_port __attribute__((unused))) { + } + + return KERN_SUCCESS; ++#else ++ return KERN_FAILURE; ++#endif + } + ++#ifdef LAUNCH_JOBKEY_MACHSERVICES + static void *idle_thread(void* param __attribute__((unused))) { + for(;;) { + struct timeval now; +@@ -248,3 +299,4 @@ static void *idle_thread(void* param __attribute__((unused))) { + } + return NULL; + } ++#endif +diff --git a/startx.cpp b/startx.cpp +index 8ffdc70..fb23f18 100644 +--- startx.cpp ++++ startx.cpp +@@ -84,21 +84,25 @@ serverargs="" + + #ifdef __APPLE__ + ++if [ "x$X11_PREFS_DOMAIN" = x ] ; then ++ X11_PREFS_DOMAIN="org.x.X11" ++fi ++ + XCOMM Initialize defaults (this will cut down on "safe" error messages) +-if ! defaults read org.x.X11 cache_fonts >& /dev/null ; then +- defaults write org.x.X11 cache_fonts -bool true ++if ! defaults read $X11_PREFS_DOMAIN cache_fonts >& /dev/null ; then ++ defaults write $X11_PREFS_DOMAIN cache_fonts -bool true + fi + +-if ! defaults read org.x.X11 no_auth >& /dev/null ; then +- defaults write org.x.X11 no_auth -bool false ++if ! defaults read $X11_PREFS_DOMAIN no_auth >& /dev/null ; then ++ defaults write $X11_PREFS_DOMAIN no_auth -bool false + fi + +-if ! defaults read org.x.X11 nolisten_tcp >& /dev/null ; then +- defaults write org.x.X11 nolisten_tcp -bool true ++if ! defaults read $X11_PREFS_DOMAIN nolisten_tcp >& /dev/null ; then ++ defaults write $X11_PREFS_DOMAIN nolisten_tcp -bool true + fi + + XCOMM First, start caching fonts +-if [ x`defaults read org.x.X11 cache_fonts` = x1 ] ; then ++if [ x`defaults read $X11_PREFS_DOMAIN cache_fonts` = x1 ] ; then + if [ -x /usr/X11/bin/font_cache ] ; then + /usr/X11/bin/font_cache & + elif [ -x /usr/X11/bin/font_cache.sh ] ; then +@@ -114,13 +118,13 @@ if [ -x XINITDIR/privileged_startx ] ; then + XINITDIR/privileged_startx + fi + +-if [ x`defaults read org.x.X11 no_auth` = x0 ] ; then ++if [ x`defaults read $X11_PREFS_DOMAIN no_auth` = x0 ] ; then + enable_xauth=1 + else + enable_xauth=0 + fi + +-if [ x`defaults read org.x.X11 nolisten_tcp` = x1 ] ; then ++if [ x`defaults read $X11_PREFS_DOMAIN nolisten_tcp` = x1 ] ; then + defaultserverargs="$defaultserverargs -nolisten tcp" + fi + +@@ -133,19 +137,6 @@ defaultdisplay=":$d" + enable_xauth=1 + #endif + +- +-if [ -f $userclientrc ]; then +- defaultclientargs=$userclientrc +-elif [ -f $sysclientrc ]; then +- defaultclientargs=$sysclientrc +-#if defined(__SCO__) || defined(__UNIXWARE__) +-elif [ -f $scouserclientrc ]; then +- defaultclientargs=$scouserclientrc +-elif [ -f $scosysclientrc ]; then +- defaultclientargs=$scosysclientrc +-#endif +-fi +- + #if defined(__SCO__) || defined(__UNIXWARE__) + + XCOMM SCO -t option: do not start an X server +@@ -202,11 +193,23 @@ done + + XCOMM process client arguments + if [ x"$client" = x ]; then ++ client=$defaultclient ++ + XCOMM if no client arguments either, use rc file instead + if [ x"$clientargs" = x ]; then +- client="$defaultclientargs" +- else +- client=$defaultclient ++ if [ -f "$userclientrc" ]; then ++ client=$userclientrc ++ elif [ -f "$sysclientrc" ]; then ++ client=$sysclientrc ++#if defined(__SCO__) || defined(__UNIXWARE__) ++ elif [ -f "$scouserclientrc" ]; then ++ client=$scouserclientrc ++ elif [ -f "$scosysclientrc" ]; then ++ client=$scosysclientrc ++#endif ++ fi ++ ++ clientargs=$defaultclientargs + fi + fi + +@@ -217,9 +220,9 @@ if [ x"$server" = x ]; then + XCOMM if no server arguments or display either, use defaults + if [ x"$serverargs" = x -a x"$display" = x ]; then + XCOMM For compatibility reasons, only use xserverrc if there were no server command line arguments +- if [ -f $userserverrc ]; then ++ if [ -f "$userserverrc" ]; then + server=$userserverrc +- elif [ -f $sysserverrc ]; then ++ elif [ -f "$sysserverrc" ]; then + server=$sysserverrc + fi + +@@ -268,11 +271,15 @@ if [ x"$enable_xauth" = x1 ] ; then + + XCOMM create a file with auth information for the server. ':0' is a dummy. + xserverauthfile=$HOME/.serverauth.$$ +- trap "rm -f $xserverauthfile" HUP INT QUIT ILL TRAP KILL BUS TERM +- xauth -q -f $xserverauthfile << EOF ++ trap "rm -f '$xserverauthfile'" HUP INT QUIT ILL TRAP KILL BUS TERM ++ xauth -q -f "$xserverauthfile" << EOF + add :$dummy . $mcookie + EOF ++#ifdef __APPLE__ ++ serverargs=${serverargs}" -auth '"${xserverauthfile}"'" ++#else + serverargs=${serverargs}" -auth "${xserverauthfile} ++#endif + + XCOMM now add the same credentials to the client authority file + XCOMM if '$displayname' already exists do not overwrite it as another +@@ -287,7 +294,7 @@ EOF + removelist="$displayname $removelist" + else + dummy=$(($dummy+1)); +- XAUTH -q -f $xserverauthfile << EOF ++ XAUTH -q -f "$xserverauthfile" << EOF + add :$dummy . $authcookie + EOF + fi +@@ -298,10 +305,16 @@ fi + if [ "$REMOTE_SERVER" = "TRUE" ]; then + exec SHELL_CMD ${client} + else +- XINIT $client $clientargs -- $server $display $serverargs ++ XINIT "$client" $clientargs -- "$server" $display $serverargs + fi + #else +-XINIT $client $clientargs -- $server $display $serverargs ++ ++#ifdef __APPLE__ ++eval XINIT \"$client\" $clientargs -- \"$server\" $display $serverargs ++#else ++XINIT "$client" $clientargs -- "$server" $display $serverargs ++#endif ++ + #endif + + if [ x"$enable_xauth" = x1 ] ; then +@@ -309,7 +322,7 @@ if [ x"$enable_xauth" = x1 ] ; then + XAUTH remove $removelist + fi + if [ x"$xserverauthfile" != x ]; then +- rm -f $xserverauthfile ++ rm -f "$xserverauthfile" + fi + fi + +diff --git a/xinit.c b/xinit.c +index 523cfd5..d25de9d 100644 +--- xinit.c ++++ xinit.c +@@ -60,6 +60,13 @@ in this Software without prior written authorization from The Open Group. + #include + #include + ++#ifdef __APPLE__ ++#include ++#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 ++#include ++#endif ++#endif ++ + #if !defined(SIGCHLD) && defined(SIGCLD) + #define SIGCHLD SIGCLD + #endif +@@ -250,6 +257,11 @@ main(int argc, char *argv[], char *envp[]) + int client_args_given = 0, server_args_given = 0; + int start_of_client_args, start_of_server_args; + struct sigaction sa; ++#ifdef __APPLE__ ++#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 ++ vproc_transaction_t vt; ++#endif ++#endif + + #ifdef __UNIXOS2__ + envsave = envp; /* circumvent an EMX problem */ +@@ -426,6 +438,13 @@ main(int argc, char *argv[], char *envp[]) + + signal(SIGALRM, sigAlarm); + signal(SIGUSR1, sigUsr1); ++ ++#ifdef __APPLE__ ++#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 ++ vt = vproc_transaction_begin(NULL); ++#endif ++#endif ++ + if (startServer(server) > 0 + && startClient(client) > 0) { + pid = -1; +@@ -434,6 +453,13 @@ main(int argc, char *argv[], char *envp[]) + ) + pid = wait(NULL); + } ++ ++#ifdef __APPLE__ ++#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 ++ vproc_transaction_end(NULL, vt); ++#endif ++#endif ++ + signal(SIGTERM, SIG_IGN); + signal(SIGQUIT, SIG_IGN); + signal(SIGINT, SIG_IGN); +@@ -464,15 +490,23 @@ waitforserver(void) + int ncycles = 120; /* # of cycles to wait */ + int cycles; /* Wait cycle count */ + ++#ifdef __APPLE__ ++ /* For Apple, we don't get signaled by the server when it's ready, so we just ++ * want to sleep now since we're going to sleep later anyways and this allows us ++ * to avoid the awkard, "why is there an error message in the log" questions ++ * from users. ++ */ ++ ++ sleep(2); ++#endif ++ + for (cycles = 0; cycles < ncycles; cycles++) { + if ((xd = XOpenDisplay(displayNum))) { + return(TRUE); + } + else { +-#define MSG "X server to begin accepting connections" +- if (!processTimeout (1, MSG)) ++ if (!processTimeout (1, "X server to begin accepting connections")) + break; +-#undef MSG + } + } + Added: trunk/dports/x11/xinit/files/xinitrc.d/10-fontdir.sh =================================================================== --- trunk/dports/x11/xinit/files/xinitrc.d/10-fontdir.sh (rev 0) +++ trunk/dports/x11/xinit/files/xinitrc.d/10-fontdir.sh 2008-12-03 04:59:42 UTC (rev 42996) @@ -0,0 +1,11 @@ +if [ -x /usr/X11/bin/xset ] ; then + fontpath="/usr/X11/lib/X11/fonts/misc/,/usr/X11/lib/X11/fonts/TTF/,/usr/X11/lib/X11/fonts/OTF,/usr/X11/lib/X11/fonts/Type1/,/usr/X11/lib/X11/fonts/75dpi/:unscaled,/usr/X11/lib/X11/fonts/100dpi/:unscaled,/usr/X11/lib/X11/fonts/75dpi/,/usr/X11/lib/X11/fonts/100dpi/" + + [ -e "$HOME"/.fonts/fonts.dir ] && fontpath="$fontpath,$HOME/.fonts" + [ -e "$HOME"/Library/Fonts/fonts.dir ] && fontpath="$fontpath,$HOME/Library/Fonts" + [ -e /Library/Fonts/fonts.dir ] && fontpath="$fontpath,/Library/Fonts" + [ -e /System/Library/Fonts/fonts.dir ] && fontpath="$fontpath,/System/Library/Fonts" + + /usr/X11/bin/xset fp= "$fontpath" + unset fontpath +fi Property changes on: trunk/dports/x11/xinit/files/xinitrc.d/10-fontdir.sh ___________________________________________________________________ Added: svn:executable + * Added: trunk/dports/x11/xinit/files/xinitrc.d/98-user.sh =================================================================== --- trunk/dports/x11/xinit/files/xinitrc.d/98-user.sh (rev 0) +++ trunk/dports/x11/xinit/files/xinitrc.d/98-user.sh 2008-12-03 04:59:42 UTC (rev 42996) @@ -0,0 +1,7 @@ +if [ -d "${HOME}/.xinitrc.d" ] ; then + for f in "${HOME}"/.xinitrc.d/*.sh ; do + [ -x "$f" ] && . "$f" + done + unset f +fi + Property changes on: trunk/dports/x11/xinit/files/xinitrc.d/98-user.sh ___________________________________________________________________ Added: svn:executable + * Added: trunk/dports/x11/xinit/files/xinitrc.d/99-quartz-wm.sh =================================================================== --- trunk/dports/x11/xinit/files/xinitrc.d/99-quartz-wm.sh (rev 0) +++ trunk/dports/x11/xinit/files/xinitrc.d/99-quartz-wm.sh 2008-12-03 04:59:42 UTC (rev 42996) @@ -0,0 +1,4 @@ +[ -n "${USERWM}" -a -x "${USERWM}" ] && exec "${USERWM}" +[ -x /usr/bin/quartz-wm ] && exec /usr/bin/quartz-wm +[ -x /usr/X11/bin/quartz-wm ] && exec /usr/X11/bin/quartz-wm +[ -x /usr/X11R6/bin/quartz-wm ] && exec /usr/X11R6/bin/quartz-wm Property changes on: trunk/dports/x11/xinit/files/xinitrc.d/99-quartz-wm.sh ___________________________________________________________________ Added: svn:executable + * -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Tue Dec 2 21:13:59 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Tue, 2 Dec 2008 21:13:59 -0800 Subject: propchange - r42991 svn:log Message-ID: <20081203051509.77EFC28082@relay14.apple.com> Author: mcalhoun at macports.org (original author: mcalhoun at macports.org) Revision: 42991 Property Name: svn:log --- /Volumes/data/admin/var/tmp/revprops/pre-42991-mcalhoun at macports.org 2008-12-02 21:13:57.000000000 -0800 +++ /Volumes/data/admin/var/tmp/revprops/post-42991-mcalhoun at macports.org 2008-12-02 21:13:58.000000000 -0800 @@ -1,4 +1,4 @@ jasper: Removed unnecessary backslashes and quotes. Ensure the documentation has correct permissions (g-r) by using xinstall. -Chaned default X11 to xorg-libX11. +Changed default X11 to xorg-libX11. Now also build the static library. From blb at macports.org Tue Dec 2 21:16:31 2008 From: blb at macports.org (blb at macports.org) Date: Tue, 2 Dec 2008 21:16:31 -0800 (PST) Subject: [42997] trunk/dports/lang/python25 Message-ID: <20081203051631.9F59E806801@beta.macosforge.org> Revision: 42997 http://trac.macports.org/changeset/42997 Author: blb at macports.org Date: 2008-12-02 21:16:31 -0800 (Tue, 02 Dec 2008) Log Message: ----------- lang/python25 - add --no-user-cfg option to help avoid user config files while building, ticket #9831 (maintainer timeout) Modified Paths: -------------- trunk/dports/lang/python25/Portfile trunk/dports/lang/python25/files/patch-Makefile.pre.in.diff Added Paths: ----------- trunk/dports/lang/python25/files/patch-Lib-distutils-dist.py.diff Modified: trunk/dports/lang/python25/Portfile =================================================================== --- trunk/dports/lang/python25/Portfile 2008-12-03 04:59:42 UTC (rev 42996) +++ trunk/dports/lang/python25/Portfile 2008-12-03 05:16:31 UTC (rev 42997) @@ -4,7 +4,7 @@ name python25 version 2.5.2 -revision 5 +revision 6 set major 2 set branch 2.5 categories lang @@ -25,9 +25,12 @@ sha1 7a835c93a904ae4ecb2d23b5183e94d3b92f8305 \ rmd160 a6e2e81910639a362f265af2e3814e7b47e2110a +# patch-Lib-distutils-dist.py.diff comes from +# patchfiles patch-Makefile.pre.in.diff \ patch-setup.py.diff \ - patch-Lib-cgi.py.diff + patch-Lib-cgi.py.diff \ + patch-Lib-distutils-dist.py.diff depends_lib port:gettext Added: trunk/dports/lang/python25/files/patch-Lib-distutils-dist.py.diff =================================================================== --- trunk/dports/lang/python25/files/patch-Lib-distutils-dist.py.diff (rev 0) +++ trunk/dports/lang/python25/files/patch-Lib-distutils-dist.py.diff 2008-12-03 05:16:31 UTC (rev 42997) @@ -0,0 +1,51 @@ +--- Lib/distutils/dist.py.orig 2005-03-23 11:54:36.000000000 -0700 ++++ Lib/distutils/dist.py 2008-07-25 21:27:15.000000000 -0600 +@@ -57,6 +57,7 @@ + ('quiet', 'q', "run quietly (turns verbosity off)"), + ('dry-run', 'n', "don't actually do anything"), + ('help', 'h', "show detailed help message"), ++ ('no-user-cfg', None,'ignore pydistutils.cfg in your home directory'), + ] + + # 'common_usage' is a short (2-3 line) string describing the common +@@ -264,6 +265,12 @@ + else: + sys.stderr.write(msg + "\n") + ++ # no-user-cfg is handled before other command line args ++ # because other args override the config files, and this ++ # one is needed before we can load the config files. ++ # If attrs['script_args'] wasn't passed, assume false. ++ self.want_user_cfg = '--no-user-cfg' not in (self.script_args or []) ++ + self.finalize_options() + + # __init__ () +@@ -324,6 +331,9 @@ + Distutils __inst__.py file lives), a file in the user's home + directory named .pydistutils.cfg on Unix and pydistutils.cfg + on Windows/Mac, and setup.cfg in the current directory. ++ ++ The file in the user's home directory can be disabled with the ++ --no-user-cfg option. + """ + files = [] + check_environ() +@@ -343,7 +353,7 @@ + user_filename = "pydistutils.cfg" + + # And look for the user config file +- if os.environ.has_key('HOME'): ++ if self.want_user_cfg and os.environ.has_key('HOME'): + user_file = os.path.join(os.environ.get('HOME'), user_filename) + if os.path.isfile(user_file): + files.append(user_file) +@@ -353,6 +363,8 @@ + if os.path.isfile(local_file): + files.append(local_file) + ++ if DEBUG: ++ print "using config files: %s" % ', '.join(files) + return files + + # find_config_files () Modified: trunk/dports/lang/python25/files/patch-Makefile.pre.in.diff =================================================================== --- trunk/dports/lang/python25/files/patch-Makefile.pre.in.diff 2008-12-03 04:59:42 UTC (rev 42996) +++ trunk/dports/lang/python25/files/patch-Makefile.pre.in.diff 2008-12-03 05:16:31 UTC (rev 42997) @@ -1,6 +1,17 @@ ---- Makefile.pre.in.orig 2007-09-29 02:15:52.000000000 +0200 -+++ Makefile.pre.in 2007-09-29 02:18:57.000000000 +0200 -@@ -373,6 +373,13 @@ +--- Makefile.pre.in.orig 2007-12-05 13:43:57.000000000 -0700 ++++ Makefile.pre.in 2008-07-25 21:41:02.000000000 -0600 +@@ -348,8 +348,8 @@ + # Build the shared modules + sharedmods: $(BUILDPYTHON) + case $$MAKEFLAGS in \ +- *-s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \ +- *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \ ++ *-s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q --no-user-cfg build;; \ ++ *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py --no-user-cfg build;; \ + esac + + # Build static library +@@ -376,6 +376,13 @@ libpython$(VERSION).sl: $(LIBRARY_OBJS) $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) @@ -14,7 +25,7 @@ # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary # minimal framework (not including the Lib directory and such) in the current # directory. -@@ -675,6 +682,9 @@ +@@ -684,6 +691,9 @@ fi \ fi; \ else true; \ @@ -24,3 +35,21 @@ fi # Install the manual page +@@ -894,7 +904,7 @@ + # Install the dynamically loadable modules + # This goes into $(exec_prefix) + sharedinstall: +- $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \ ++ $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py --no-user-cfg install \ + --prefix=$(prefix) \ + --install-scripts=$(BINDIR) \ + --install-platlib=$(DESTSHARED) \ +@@ -968,7 +978,7 @@ + # This installs a few of the useful scripts in Tools/scripts + scriptsinstall: + SRCDIR=$(srcdir) $(RUNSHARED) \ +- ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \ ++ ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py --no-user-cfg install \ + --prefix=$(prefix) \ + --install-scripts=$(BINDIR) \ + --root=/$(DESTDIR) -------------- next part -------------- An HTML attachment was scrubbed... URL: From boeyms at macports.org Tue Dec 2 21:45:37 2008 From: boeyms at macports.org (boeyms at macports.org) Date: Tue, 2 Dec 2008 21:45:37 -0800 (PST) Subject: [42998] trunk/dports/www/webarchiver/Portfile Message-ID: <20081203054537.C318E8078CB@beta.macosforge.org> Revision: 42998 http://trac.macports.org/changeset/42998 Author: boeyms at macports.org Date: 2008-12-02 21:45:37 -0800 (Tue, 02 Dec 2008) Log Message: ----------- webarchiver: update to latest version (0.3) with new web site. Modified Paths: -------------- trunk/dports/www/webarchiver/Portfile Modified: trunk/dports/www/webarchiver/Portfile =================================================================== --- trunk/dports/www/webarchiver/Portfile 2008-12-03 05:16:31 UTC (rev 42997) +++ trunk/dports/www/webarchiver/Portfile 2008-12-03 05:45:37 UTC (rev 42998) @@ -3,7 +3,7 @@ PortSystem 1.0 name webarchiver -version 0.2 +version 0.3 categories www platforms darwin maintainers boeyms openmaintainer @@ -12,13 +12,14 @@ webarchiver is a simply utility that allows you to create Safari\ webarchives (.webarchive) from the command line.\ webarchiver is compatible with Mac OSX 10.4 (Safari 2.0). -homepage http://entropy.textdriven.com/articles/2007/02/25/webarchiver -master_sites http://entropy.textdriven.com/files/ -distname ${name}-source-${version} -use_zip yes -checksums md5 167102c4d87f8d58a1b8f35908592b31 \ - sha1 3f8a0810102e437e7d349989be663154429eb1b8 \ - rmd160 bad18bfdeca1049d6549923ee95c61938c4fd8de +homepage http://www.entropytheblog.com/blog/2008/11/webarchiver-create-safari-webarchives-from-the-command-line/ +master_sites http://github.com/paulwilliam/webarchiver/tarball/${version}/ +set author paulwilliam +set commit_sha1 14f7c37ff6016a2d200f40f1f67245be849cec35 +distname ${author}-${name}-${commit_sha1} +checksums md5 8fa12d143f6bbdfdb099ddab3b34451b \ + sha1 fcd25d13f247dfe9f3a2ff62deb811819ed6844c \ + rmd160 435278e36893d3710e35f9d2e6d253b7c7d87b69 use_configure no build.cmd xcodebuild build.target build @@ -27,6 +28,9 @@ destroot { xinstall -m 755 \ ${worksrcpath}/build/Release/webarchiver ${destroot}${prefix}/bin + xinstall -d -m 755 ${destroot}${prefix}/share/doc/webarchiver + xinstall -m 644 \ + ${worksrcpath}/README ${destroot}${prefix}/share/doc/webarchiver # The source doesn't currently have a man page; guess I'll have to write # one eventually. The following will be added once I've done so. # xinstall -m 644 ${filespath}/webarchiver.1 ${prefix}/share/man/man1 -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 21:51:47 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 21:51:47 -0800 (PST) Subject: [42999] trunk/dports/PortIndex Message-ID: <20081203055148.E086D807C79@beta.macosforge.org> Revision: 42999 http://trac.macports.org/changeset/42999 Author: portindex at macports.org Date: 2008-12-02 21:51:46 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5179 Ports successfully parsed: 5179 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-03 05:45:37 UTC (rev 42998) +++ trunk/dports/PortIndex 2008-12-03 05:51:46 UTC (rev 42999) @@ -2805,7 +2805,7 @@ gimp-user-manual 972 variants {universal without_gimp cs de en es fr hr it ko nl no ru sv zh_CN} depends_build {port:coreutils port:docbook-xsl port:docbook-xml-4.3 port:libxslt port:pkgconfig path:lib/pkgconfig/gimp-2.0.pc:gimp2} variant_desc {without_gimp {Build without GIMP installed} cs {Build cs locale} de {Build de locale} en {Build en locale} es {Build es locale} fr {Build fr locale} hr {Build hr locale} it {Build it locale} ko {Build ko locale} nl {Build nl locale} no {Build no locale} ru {Build ru locale} sv {Build sv locale} zh_CN {Build zh_CN locale}} portdir graphics/gimp-user-manual description {A multilingual user manual for the Gimp (broken).} homepage http://docs.gimp.org/ epoch 0 platforms darwin name gimp-user-manual maintainers devans long_description {The GIMP User Manual is a newly written User Manual for the GIMP. It is written for the GIMP Help Browser, but can produce the Help pages or other mediums as well.} version 2.4.2 categories graphics revision 0 gimp2 985 -variants {universal darwin_7 darwin_9 no_python dbus gvfs help_browser quartz x11 no_x11} variant_desc {no_python {Disable Python scripts and filters} dbus {Enable dbus support} gvfs {Enable gvfs support} help_browser {Enable Gimp help browser} quartz {Enable Quartz rendering} x11 {Enable rendering in X11 (default)} no_x11 {Build without X Windows support}} portdir graphics/gimp2 description {The GNU Image Manipulation Program} homepage http://www.gimp.org/ epoch 0 platforms darwin name gimp2 depends_lib {port:gegl port:aalib port:curl port:libart_lgpl port:libexif port:libgnomeui port:libmng port:librsvg port:libwmf port:p5-xml-parser port:poppler port:py25-gtk} maintainers devans long_description {The GNU Image Manipulation Program (GIMP) is a powerful tool for the preparation and manipulation of digital images. The GIMP provides the user with a wide variety of image manipulation, painting, processing, and rendering tools.} version 2.6.2 categories graphics revision 0 +variants {universal darwin_7 darwin_9 no_python dbus gvfs help_browser quartz x11 no_x11} variant_desc {no_python {Disable Python scripts and filters} dbus {Enable dbus support} gvfs {Enable gvfs support} help_browser {Enable Gimp help browser} quartz {Enable Quartz rendering} x11 {Enable rendering in X11 (default)} no_x11 {Build without X Windows support}} portdir graphics/gimp2 description {The GNU Image Manipulation Program} homepage http://www.gimp.org/ epoch 0 platforms darwin name gimp2 depends_lib {port:gegl port:aalib port:curl port:libart_lgpl port:libexif port:libgnomeui port:libmng port:librsvg port:libwmf port:p5-xml-parser port:poppler port:py25-gtk} maintainers devans long_description {The GNU Image Manipulation Program (GIMP) is a powerful tool for the preparation and manipulation of digital images. The GIMP provides the user with a wide variety of image manipulation, painting, processing, and rendering tools.} version 2.6.3 categories graphics revision 0 glew 582 variants {universal darwin_8 darwin_9} description {OpenGL Extension Wrangler Library} portdir graphics/glew homepage http://glew.sourceforge.net epoch 0 platforms darwin name glew long_description {The OpenGL Extension Wrangler Library (GLEW) is a cross-platform C/C++ extension loading library. GLEW provides efficient run-time mechanisms for determining which OpenGL extensions are supported on the target platform. OpenGL core and extension functionality is exposed in a single header file.} maintainers {jmr openmaintainer} categories {graphics devel} version 1.5.1 revision 0 glitz 533 @@ -3927,7 +3927,7 @@ python24-doc 464 variants {universal puredarwin darwin_8 darwin_9 freebsd linux} portdir lang/python24-doc description {HTML documentation for Python 2.4} homepage http://www.python.org/ epoch 0 platforms {darwin freebsd linux} name python24-doc depends_lib {port:gettext port:python24 port:latex2html} maintainers nomaintainer long_description {HTML documentation for Python 2.4. Use by running 'pydoc2.4 TOPIC', e.g. 'pydoc2.4 NUMBERS'.} version 2.4.4 categories lang revision 0 python25 396 -variants {universal darwin_7 darwin_8 darwin_9 darwin_10} portdir lang/python25 description {An interpreted, object-oriented programming language} homepage http://www.python.org/ epoch 0 platforms darwin name python25 depends_lib port:gettext maintainers mww long_description {Python is an interpreted, interactive, object-oriented programming language.} version 2.5.2 categories lang revision 5 +variants {universal darwin_7 darwin_8 darwin_9 darwin_10} portdir lang/python25 description {An interpreted, object-oriented programming language} homepage http://www.python.org/ epoch 0 platforms darwin name python25 depends_lib port:gettext maintainers mww long_description {Python is an interpreted, interactive, object-oriented programming language.} version 2.5.2 categories lang revision 6 python25-doc 443 variants {universal darwin_7 darwin_8 darwin_9 puredarwin} portdir lang/python25-doc description {HTML documentation for Python 2.5} homepage http://www.python.org/ epoch 0 platforms darwin name python25-doc depends_lib {port:gettext port:python25 port:latex2html} maintainers nomaintainer long_description {HTML documentation for Python 2.5. Use by running 'pydoc2.5 TOPIC', e.g. 'pydoc2.5 NUMBERS'.} version 2.5.2 categories lang revision 0 python26 551 @@ -10090,8 +10090,8 @@ variants {universal darwin_9} portdir x11/xforms description {GUI toolkit based on Xlib} homepage http://savannah.nongnu.org/projects/xforms/ epoch 0 platforms darwin name xforms depends_lib {port:jpeg lib:libX11.6:XFree86} maintainers raphael at ira.uka.de long_description {XForms is a GUI toolkit based on Xlib for X Window Systems. It features a rich set of objects, such as buttons, scrollbars, and menus etc. integrated into an easy and efficient object/event callback execution model that allows fast and easy construction of X-applications. In addition, the library is extensible and new objects can easily be created and added to the library.} version 1.0.90 categories x11 revision 0 xglobe 827 variants universal portdir x11/xglobe description {XGlobe displays the earth as seen from space on your X desktop.} homepage http://www.cs.unc.edu/~scheuerm/xglobe/ epoch 0 platforms darwin name xglobe depends_lib {lib:libqt-mt.3:qt3 lib:libX11.6:XFree86} maintainers nomaintainer long_description {XGlobe displays the earth as seen from space on your X desktop, similar to xearth by Kirk Lauritz Johnson. The image of the globe is updated at regular intervals. XGlobe uses a world map image which is mapped to the globe. With a good map this can look very nice. It is possible to mark locations on the globe. This port includes the work done by Mark Espie from OpenBSD, that has not yet be included upstream. Also there is a markerfile with the positions of the OpenDarwin developers.} version 0.5p2 categories x11 revision 0 -xinit 348 -variants universal portdir x11/xinit description {X11 startup script processor} homepage http://www.x.org epoch 0 platforms darwin name xinit depends_lib lib:libX11:xorg-libX11 maintainers bbyer at macports.org long_description {xinit is responsible for configuring the initial environment when X11 starts up.} version 1.0.8 categories x11 revision 0 +xinit 393 +variants universal depends_build {port:pkgconfig port:xorg-util-macros} portdir x11/xinit description {X11 startup script processor} homepage http://www.x.org epoch 0 platforms darwin depends_lib lib:libX11.6:xorg-libX11 name xinit maintainers jeremyhu long_description {xinit is responsible for configuring the initial environment when X11 starts up.} version 1.1.0 categories x11 revision 0 xmove 422 variants universal description {An X11 pseudoserver for moving windows between displays} portdir x11/xmove homepage ftp://ftp.cs.columbia.edu/pub/xmove/ epoch 0 platforms darwin name xmove long_description {xmove lets you change which display an X Window System program renders to - this could be a different monitor or even a different machine.} maintainers shadow at dementia.org categories x11 version 2.0beta2 revision 0 xnee 456 -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Tue Dec 2 22:04:12 2008 From: blb at macports.org (blb at macports.org) Date: Tue, 2 Dec 2008 22:04:12 -0800 (PST) Subject: [43000] trunk/dports/lang/python25 Message-ID: <20081203060412.6F7DB808207@beta.macosforge.org> Revision: 43000 http://trac.macports.org/changeset/43000 Author: blb at macports.org Date: 2008-12-02 22:04:11 -0800 (Tue, 02 Dec 2008) Log Message: ----------- lang/python25 - fix issue where the framework and library in ${prefix}/lib were considered different, causing some thing to crash; ticket #16111 (maintainer timeout) Modified Paths: -------------- trunk/dports/lang/python25/Portfile trunk/dports/lang/python25/files/patch-Makefile.pre.in.diff Modified: trunk/dports/lang/python25/Portfile =================================================================== --- trunk/dports/lang/python25/Portfile 2008-12-03 05:51:46 UTC (rev 42999) +++ trunk/dports/lang/python25/Portfile 2008-12-03 06:04:11 UTC (rev 43000) @@ -4,7 +4,7 @@ name python25 version 2.5.2 -revision 6 +revision 7 set major 2 set branch 2.5 categories lang @@ -58,7 +58,7 @@ Mac/PythonLauncher/Makefile.in } -build.target all libpython${branch}.dylib +build.target all # TODO: From python24, do we still need this? # Workaround for case-sensitive file systems @@ -82,8 +82,7 @@ ln -s ${prefix}/${dir}/python${branch} ${destroot}${framewdir}/${dir}/python${branch} } - file rename ${destroot}${framewdir}/lib/libpython${branch}.dylib ${destroot}${prefix}/lib - ln -s ${prefix}/lib/libpython${branch}.dylib ${destroot}${framewdir}/lib/libpython${branch}.dylib + ln -s ${framewdir}/Python ${destroot}${prefix}/lib/libpython${branch}.dylib file rename ${destroot}${prefix}/share/man/man1/python.1 ${destroot}${prefix}/share/man/man1/python${branch}.1 Modified: trunk/dports/lang/python25/files/patch-Makefile.pre.in.diff =================================================================== --- trunk/dports/lang/python25/files/patch-Makefile.pre.in.diff 2008-12-03 05:51:46 UTC (rev 42999) +++ trunk/dports/lang/python25/files/patch-Makefile.pre.in.diff 2008-12-03 06:04:11 UTC (rev 43000) @@ -11,30 +11,6 @@ esac # Build static library -@@ -376,6 +376,13 @@ - libpython$(VERSION).sl: $(LIBRARY_OBJS) - $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) - -+libpython$(VERSION).dylib: $(LIBRARY) -+ /usr/bin/libtool -o $@ -dynamic $(OTHER_LIBTOOL_OPT) \ -+ -all_load $(LIBRARY) -single_module \ -+ -install_name $(LIBDIR)/$@ \ -+ -compatibility_version $(VERSION) \ -+ -current_version $(VERSION) -lSystem -lSystemStubs $(LDFLAGS) -+ - # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary - # minimal framework (not including the Lib directory and such) in the current - # directory. -@@ -684,6 +691,9 @@ - fi \ - fi; \ - else true; \ -+ fi; \ -+ if test -f libpython$(VERSION).dylib; then \ -+ $(INSTALL_SHARED) libpython$(VERSION).dylib $(DESTDIR)$(LIBDIR); \ - fi - - # Install the manual page @@ -894,7 +904,7 @@ # Install the dynamically loadable modules # This goes into $(exec_prefix) -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Tue Dec 2 22:18:34 2008 From: blb at macports.org (blb at macports.org) Date: Tue, 2 Dec 2008 22:18:34 -0800 (PST) Subject: [43001] trunk/base/src/upgrade_sources_conf_default.tcl Message-ID: <20081203061834.AA3CF8091BD@beta.macosforge.org> Revision: 43001 http://trac.macports.org/changeset/43001 Author: blb at macports.org Date: 2008-12-02 22:18:34 -0800 (Tue, 02 Dec 2008) Log Message: ----------- upgrade_sources_conf_default.tcl - use '/usr/bin/env tclsh' for safety and to be consistent with other tcl scripts Modified Paths: -------------- trunk/base/src/upgrade_sources_conf_default.tcl Modified: trunk/base/src/upgrade_sources_conf_default.tcl =================================================================== --- trunk/base/src/upgrade_sources_conf_default.tcl 2008-12-03 06:04:11 UTC (rev 43000) +++ trunk/base/src/upgrade_sources_conf_default.tcl 2008-12-03 06:18:34 UTC (rev 43001) @@ -1,4 +1,4 @@ -#!/usr/bin/tclsh +#!/usr/bin/env tclsh # # $Id$ # -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Tue Dec 2 22:20:04 2008 From: blb at macports.org (blb at macports.org) Date: Tue, 2 Dec 2008 22:20:04 -0800 (PST) Subject: [43002] branches/release_1_7 Message-ID: <20081203062005.3B94F809350@beta.macosforge.org> Revision: 43002 http://trac.macports.org/changeset/43002 Author: blb at macports.org Date: 2008-12-02 22:20:03 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Merge r43001 from trunk: upgrade_sources_conf_default.tcl - use '/usr/bin/env tclsh' for safety and to be consistent with other tcl scripts Modified Paths: -------------- branches/release_1_7/base/src/upgrade_sources_conf_default.tcl Property Changed: ---------------- branches/release_1_7/ Property changes on: branches/release_1_7 ___________________________________________________________________ Modified: svn:mergeinfo - /trunk:42683,42697,42734,42747,42760,42845-42847,42865,42962,42978 + /trunk:42683,42697,42734,42747,42760,42845-42847,42865,42962,42978,43001 Modified: branches/release_1_7/base/src/upgrade_sources_conf_default.tcl =================================================================== --- branches/release_1_7/base/src/upgrade_sources_conf_default.tcl 2008-12-03 06:18:34 UTC (rev 43001) +++ branches/release_1_7/base/src/upgrade_sources_conf_default.tcl 2008-12-03 06:20:03 UTC (rev 43002) @@ -1,4 +1,4 @@ -#!/usr/bin/tclsh +#!/usr/bin/env tclsh # # $Id$ # -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 22:51:43 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 22:51:43 -0800 (PST) Subject: [43003] trunk/dports/PortIndex Message-ID: <20081203065145.7652C80A7A2@beta.macosforge.org> Revision: 43003 http://trac.macports.org/changeset/43003 Author: portindex at macports.org Date: 2008-12-02 22:51:43 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5179 Ports successfully parsed: 5179 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-03 06:20:03 UTC (rev 43002) +++ trunk/dports/PortIndex 2008-12-03 06:51:43 UTC (rev 43003) @@ -3927,7 +3927,7 @@ python24-doc 464 variants {universal puredarwin darwin_8 darwin_9 freebsd linux} portdir lang/python24-doc description {HTML documentation for Python 2.4} homepage http://www.python.org/ epoch 0 platforms {darwin freebsd linux} name python24-doc depends_lib {port:gettext port:python24 port:latex2html} maintainers nomaintainer long_description {HTML documentation for Python 2.4. Use by running 'pydoc2.4 TOPIC', e.g. 'pydoc2.4 NUMBERS'.} version 2.4.4 categories lang revision 0 python25 396 -variants {universal darwin_7 darwin_8 darwin_9 darwin_10} portdir lang/python25 description {An interpreted, object-oriented programming language} homepage http://www.python.org/ epoch 0 platforms darwin name python25 depends_lib port:gettext maintainers mww long_description {Python is an interpreted, interactive, object-oriented programming language.} version 2.5.2 categories lang revision 6 +variants {universal darwin_7 darwin_8 darwin_9 darwin_10} portdir lang/python25 description {An interpreted, object-oriented programming language} homepage http://www.python.org/ epoch 0 platforms darwin name python25 depends_lib port:gettext maintainers mww long_description {Python is an interpreted, interactive, object-oriented programming language.} version 2.5.2 categories lang revision 7 python25-doc 443 variants {universal darwin_7 darwin_8 darwin_9 puredarwin} portdir lang/python25-doc description {HTML documentation for Python 2.5} homepage http://www.python.org/ epoch 0 platforms darwin name python25-doc depends_lib {port:gettext port:python25 port:latex2html} maintainers nomaintainer long_description {HTML documentation for Python 2.5. Use by running 'pydoc2.5 TOPIC', e.g. 'pydoc2.5 NUMBERS'.} version 2.5.2 categories lang revision 0 python26 551 @@ -9750,8 +9750,8 @@ variants {universal inline_image_gtk2 inline_image_imlib2} variant_desc {inline_image_gtk2 {View inline images with GTK2} inline_image_imlib2 {View inline images with imlib2}} portdir www/w3m description {pager/text based browser} homepage http://w3m.sourceforge.net/ epoch 0 platforms darwin name w3m depends_lib {port:boehmgc port:zlib port:openssl port:ncurses port:gettext port:libiconv} maintainers nomaintainer long_description {w3m is a pager/text-based WWW browser. It is a similar application to Lynx, but it has several features Lynx doesn't have, like tables, frames and inline image rendering. Its 8-bit support is second to none.} version 0.5.2 categories www revision 1 webalizer 564 variants {universal static debug} portdir www/webalizer description {The Webalizer is a fast, free web server log file analysis program} homepage http://www.mrunix.net/webalizer/ epoch 0 platforms darwin name webalizer depends_lib {lib:libgd.2:gd2 lib:libz:zlib lib:libpng:libpng} maintainers mike.mclean at pobox.com long_description {The Webalizer is a fast, free web server log file analysis program. It produces highly detailed, easily configurable usage reports in HTML format, for viewing with a standard web browser.} version 2.01-10 categories www revision 1 -webarchiver 488 -variants universal description {Command-line tool to create Safari-style webarchives} portdir www/webarchiver homepage http://entropy.textdriven.com/articles/2007/02/25/webarchiver epoch 0 platforms darwin name webarchiver long_description {webarchiver is a simply utility that allows you to create Safari webarchives (.webarchive) from the command line. webarchiver is compatible with Mac OSX 10.4 (Safari 2.0).} maintainers {boeyms openmaintainer} categories www version 0.2 revision 0 +webarchiver 530 +variants universal description {Command-line tool to create Safari-style webarchives} portdir www/webarchiver homepage http://www.entropytheblog.com/blog/2008/11/webarchiver-create-safari-webarchives-from-the-command-line/ epoch 0 platforms darwin name webarchiver long_description {webarchiver is a simply utility that allows you to create Safari webarchives (.webarchive) from the command line. webarchiver is compatible with Mac OSX 10.4 (Safari 2.0).} maintainers {boeyms openmaintainer} categories www version 0.3 revision 0 webcleaner 385 variants universal depends_build port:spidermonkey portdir www/webcleaner description {webcleaner is a powerful filtering http proxy} homepage http://webcleaner.sourceforge.net/ epoch 0 platforms darwin depends_lib port:python24 name webcleaner maintainers nomaintainer long_description {{webcleaner is a powerful filtering http proxy}} categories {www python} version 2.31 revision 0 webcrawl 409 -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Tue Dec 2 23:05:05 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Tue, 2 Dec 2008 23:05:05 -0800 (PST) Subject: [43004] trunk/dports/graphics/netpbm Message-ID: <20081203070505.DE61880B55E@beta.macosforge.org> Revision: 43004 http://trac.macports.org/changeset/43004 Author: mcalhoun at macports.org Date: 2008-12-02 23:05:05 -0800 (Tue, 02 Dec 2008) Log Message: ----------- netpbm: Version update 10.26.57 -> 10.26.58. Changed configure mechanism to ensure correct compiler was used. Fixed lint errors. Modified Paths: -------------- trunk/dports/graphics/netpbm/Portfile Added Paths: ----------- trunk/dports/graphics/netpbm/files/patch-lib-Makefile.diff trunk/dports/graphics/netpbm/files/patch-libopt.c.diff Removed Paths: ------------- trunk/dports/graphics/netpbm/files/patch-lib-Makefile trunk/dports/graphics/netpbm/files/patch-libopt.c Modified: trunk/dports/graphics/netpbm/Portfile =================================================================== --- trunk/dports/graphics/netpbm/Portfile 2008-12-03 06:51:43 UTC (rev 43003) +++ trunk/dports/graphics/netpbm/Portfile 2008-12-03 07:05:05 UTC (rev 43004) @@ -3,7 +3,7 @@ PortSystem 1.0 name netpbm -version 10.26.57 +version 10.26.58 categories graphics maintainers mas openmaintainer description Image manipulation @@ -17,39 +17,91 @@ homepage http://netpbm.sourceforge.net/ master_sites sourceforge:netpbm platforms darwin freebsd linux -use_parallel_build no +use_parallel_build yes +depends_build path:bin/perl:perl5 + depends_lib port:zlib port:jpeg port:tiff \ port:libpng port:jasper extract.suffix .tgz -checksums md5 2975e9c4a90cd16eeff763c38c9aa73f \ - sha1 159d297902facbbae4621e194448b01a24baf365 \ - rmd160 69f5a44e57b21d8a45f93e8f982ef16c0d775e4e +checksums md5 9824116c1a7bb9c05fa63a26e6586c87 \ + sha1 663baa755e8336622cff48009435503119fbce00 \ + rmd160 29695ca9ef5cca1e147a3bbb5b0d60fe5a6fca5d -set gcc-suffix "" -patchfiles patch-lib-Makefile +patchfiles patch-lib-Makefile.diff -configure { - system "cd ${worksrcpath} && - cat Makefile.config.in ${filespath}/Makefile.config.${os.platform} | - sed -e '/@PREFIX@/s@@${prefix}@' -e '/@GCC_SUFFIX@/s@@${gcc-suffix}@' \ - > Makefile.config"; +use_configure no +configure.cflags-delete -O2 +configure.cflags-append -O3 + +post-configure { + file copy ${worksrcpath}/Makefile.config.in ${worksrcpath}/Makefile.config + reinplace "s|^CC =.*\$|CC = ${configure.cc}|" ${worksrcpath}/Makefile.config + reinplace "s|^#CFLAGS =.*\$|CFLAGS = ${configure.cppflags} ${configure.cflags}|" ${worksrcpath}/Makefile.config + reinplace "s|^#LDFLAGS +=.*\$|LDFLAGS = ${configure.ldflags}|g" ${worksrcpath}/Makefile.config + reinplace "s|^CFLAGS_SHLIB =.*\$|CFLAGS_SHLIB = -fno-common|" ${worksrcpath}/Makefile.config + reinplace "s|^TIFFLIB =.*\$|TIFFLIB = -ltiff|" ${worksrcpath}/Makefile.config + reinplace "s|^JPEGLIB =.*\$|JPEGLIB = -ljpeg|" ${worksrcpath}/Makefile.config + reinplace "s|^PNGLIB =.*\$|PNGLIB = -lpng|" ${worksrcpath}/Makefile.config + reinplace "s|^ZLIB =.*\$|ZLIB = -lz|" ${worksrcpath}/Makefile.config + reinplace "s|^JASPERHDR_DIR =.*\$|JASPERHDR_DIR = ${prefix}/include|" ${worksrcpath}/Makefile.config } +platform darwin { + post-configure { + set ldshlib "-dynamiclib -install_name ${prefix}/lib/libnetpbm.\$(MAJ).dylib -compatibility_version \$(MAJ) -current_version \$(MAJ).\$(MIN)" + reinplace "s|^NETPBMLIBTYPE =.*\$|NETPBMLIBTYPE = dylib|" ${worksrcpath}/Makefile.config + reinplace "s|^NETPBMLIBSUFFIX =.*\$|NETPBMLIBSUFFIX = dylib|" ${worksrcpath}/Makefile.config + reinplace "s|^LDSHLIB =.*\$|LDSHLIB = ${ldshlib}|" ${worksrcpath}/Makefile.config + reinplace "s|^JASPERLIB =.*\$|JASPERLIB = -ljasper|" ${worksrcpath}/Makefile.config + } +} + +platform linux { + post-configure { + set ldshlib {-shared -Wl,-soname,$(SONAME)} + reinplace "s|^NETPBMLIBTYPE =.*\$|NETPBMLIBTYPE = unixshared|" ${worksrcpath}/Makefile.config + reinplace "s|^NETPBMLIBSUFFIX =.*\$|NETPBMLIBSUFFIX = so|" ${worksrcpath}/Makefile.config + reinplace "s|^LDSHLIB =.*\$|LDSHLIB = ${ldshlib}|" ${worksrcpath}/Makefile.config + reinplace "s|^JASPERLIB =.*\$|JASPERLIB = -ljasper|" ${worksrcpath}/Makefile.config + reinplace "s|^LDRELOC =.*\$|LDRELOC = ld --reloc|" ${worksrcpath}/Makefile.config + reinplace "s|^LINKER_CAN_DO_EXPLICIT_LIBRARY =.*\$|LINKER_CAN_DO_EXPLICIT_LIBRARY = Y|" ${worksrcpath}/Makefile.config + } +} + +platform freebsd { + post-configure { + set ldshlib {glibtool --mode=link gcc} + reinplace "s|^NETPBMLIBTYPE =.*\$|NETPBMLIBTYPE = unixshared|" ${worksrcpath}/Makefile.config + reinplace "s|^NETPBMLIBSUFFIX =.*\$|NETPBMLIBSUFFIX = so|" ${worksrcpath}/Makefile.config + reinplace "s|^LDSHLIB =.*\$|LDSHLIB = ${ldshlib}|" ${worksrcpath}/Makefile.config + reinplace "s|^JASPERLIB =.*\$|JASPERLIB = ${prefix}/lib/libjasper.la|" ${worksrcpath}/Makefile.config + } + patchfiles-append patch-libopt.c.diff + depends_build port:libtool +} + build.args "messages=yes" build.target "" build.type gnu -destroot { +destroot.target package +destroot.destdir pkgdir=${destroot}${prefix} + +pre-destroot { file delete -force ${destroot}${prefix} - system "cd ${worksrcpath} && ${build.cmd} package pkgdir=${destroot}${prefix}" +} + +post-destroot { xinstall -m 755 -d ${destroot}${prefix}/share/netpbm - system "cd ${destroot}${prefix} && - mv bin/doc.url misc/* share/netpbm && - mv man share && - rm -rf README VERSION config_template link misc pkginfo share/man/web" + eval move ${destroot}${prefix}/bin/doc.url [glob ${destroot}${prefix}/misc/* ${destroot}${prefix}/share/netpbm] + move ${destroot}${prefix}/man ${destroot}${prefix}/share/ + move ${destroot}${prefix}/link/libnetpbm.a ${destroot}${prefix}/lib + + eval delete [glob -type f -directory ${destroot}${prefix} *] + foreach old_library {pbm pgm pnm ppm} { - ln -s libnetpbm.dylib ${destroot}${prefix}/lib/lib${old_library}.dylib + ln -s libnetpbm.dylib ${destroot}${prefix}/lib/lib${old_library}.dylib } } @@ -64,13 +116,6 @@ set data [read $fl] close $fl if {[regexp "build 4061" $data]} { - set gcc-suffix "-3.3" - } else { - set gcc-suffix "-4.0" + configure.compiler gcc-3.3 } } - -platform freebsd { - patchfiles-append patch-libopt.c - depends_build port:libtool -} Deleted: trunk/dports/graphics/netpbm/files/patch-lib-Makefile =================================================================== --- trunk/dports/graphics/netpbm/files/patch-lib-Makefile 2008-12-03 06:51:43 UTC (rev 43003) +++ trunk/dports/graphics/netpbm/files/patch-lib-Makefile 2008-12-03 07:05:05 UTC (rev 43004) @@ -1,14 +0,0 @@ ---- lib/Makefile.orig 2005-02-05 13:47:27.000000000 -0500 -+++ lib/Makefile 2005-05-15 21:47:58.000000000 -0400 -@@ -257,9 +257,9 @@ - $(INSTALL) -c -m $(INSTALL_PERM_LIBS) libnetpbm.dll.a $(PKGDIR)/link - endif - ifeq ($(NETPBMLIBTYPE),dylib) -- cd $(PKGDIR)/link/ ; \ -+ cd $(PKGDIR)/lib/ ; \ - rm -f libnetpbm.dylib; \ -- $(SYMLINK) ../lib/libnetpbm.$(MAJ).$(MIN).dylib libnetpbm.dylib -+ $(SYMLINK) libnetpbm.$(MAJ).$(MIN).dylib libnetpbm.dylib - endif - - clean: localclean Copied: trunk/dports/graphics/netpbm/files/patch-lib-Makefile.diff (from rev 42849, trunk/dports/graphics/netpbm/files/patch-lib-Makefile) =================================================================== --- trunk/dports/graphics/netpbm/files/patch-lib-Makefile.diff (rev 0) +++ trunk/dports/graphics/netpbm/files/patch-lib-Makefile.diff 2008-12-03 07:05:05 UTC (rev 43004) @@ -0,0 +1,14 @@ +--- lib/Makefile.orig 2005-02-05 13:47:27.000000000 -0500 ++++ lib/Makefile 2005-05-15 21:47:58.000000000 -0400 +@@ -248,9 +248,9 @@ + $(INSTALL) -c -m $(INSTALL_PERM_LIBS) libnetpbm.dll.a $(PKGDIR)/link + endif + ifeq ($(NETPBMLIBTYPE),dylib) +- cd $(PKGDIR)/link/ ; \ ++ cd $(PKGDIR)/lib/ ; \ + rm -f libnetpbm.dylib; \ +- $(SYMLINK) ../lib/libnetpbm.$(MAJ).$(MIN).dylib libnetpbm.dylib ++ $(SYMLINK) libnetpbm.$(MAJ).$(MIN).dylib libnetpbm.dylib + endif + + clean: localclean Deleted: trunk/dports/graphics/netpbm/files/patch-libopt.c =================================================================== --- trunk/dports/graphics/netpbm/files/patch-libopt.c 2008-12-03 06:51:43 UTC (rev 43003) +++ trunk/dports/graphics/netpbm/files/patch-libopt.c 2008-12-03 07:05:05 UTC (rev 43004) @@ -1,14 +0,0 @@ ---- buildtools/libopt.c.orig Wed Nov 8 20:00:24 2006 -+++ buildtools/libopt.c Wed Aug 15 22:10:53 2007 -@@ -306,6 +306,11 @@ - */ - *valid_library_p = FALSE; - *error_p = FALSE; -+ } else if (strcmp(lastdot, ".la") == 0) { -+ /* Skip conversion of GNU libtool library files. -+ */ -+ *valid_library_p = FALSE; -+ *error_p = FALSE; - } else { - unsigned int prefix_length; - bool prefix_good; Copied: trunk/dports/graphics/netpbm/files/patch-libopt.c.diff (from rev 42849, trunk/dports/graphics/netpbm/files/patch-libopt.c) =================================================================== --- trunk/dports/graphics/netpbm/files/patch-libopt.c.diff (rev 0) +++ trunk/dports/graphics/netpbm/files/patch-libopt.c.diff 2008-12-03 07:05:05 UTC (rev 43004) @@ -0,0 +1,14 @@ +--- buildtools/libopt.c.orig Wed Nov 8 20:00:24 2006 ++++ buildtools/libopt.c Wed Aug 15 22:10:53 2007 +@@ -306,6 +306,11 @@ + */ + *valid_library_p = FALSE; + *error_p = FALSE; ++ } else if (strcmp(lastdot, ".la") == 0) { ++ /* Skip conversion of GNU libtool library files. ++ */ ++ *valid_library_p = FALSE; ++ *error_p = FALSE; + } else { + unsigned int prefix_length; + bool prefix_good; -------------- next part -------------- An HTML attachment was scrubbed... URL: From erickt at macports.org Tue Dec 2 23:15:38 2008 From: erickt at macports.org (erickt at macports.org) Date: Tue, 2 Dec 2008 23:15:38 -0800 (PST) Subject: [43005] trunk/dports/lang/llvm Message-ID: <20081203071539.64E1280C02C@beta.macosforge.org> Revision: 43005 http://trac.macports.org/changeset/43005 Author: erickt at macports.org Date: 2008-12-02 23:15:38 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Add a variant for building ocaml bindings (from #17489). Thanks hircus! Modified Paths: -------------- trunk/dports/lang/llvm/Portfile Added Paths: ----------- trunk/dports/lang/llvm/files/patch-Makefile.ocaml.diff Modified: trunk/dports/lang/llvm/Portfile =================================================================== --- trunk/dports/lang/llvm/Portfile 2008-12-03 07:05:05 UTC (rev 43004) +++ trunk/dports/lang/llvm/Portfile 2008-12-03 07:15:38 UTC (rev 43005) @@ -4,7 +4,7 @@ name llvm version 2.4 -revision 1 +revision 2 categories lang platforms darwin use_parallel_build yes @@ -31,7 +31,8 @@ file mkdir ${configure.dir} } -patchfiles patch-Makefile.config.in.diff +patchfiles patch-Makefile.config.in.diff \ + patch-Makefile.ocaml.diff configure.cppflags configure.ldflags @@ -59,6 +60,16 @@ } } -variant pic description {Enable generation of position independent code} { - configure.args-append --enable-pic -} +variant ocaml description {Enable generation of OCaml binding} { + depends_build-append port:ocaml + depends_lib-append port:ocaml + + configure.args-delete --enable-bindings=none + configure.args-append --enable-bindings=ocaml + + destroot.args-append OVERRIDE_libdir=${prefix}/lib +} + +variant pic description {Enable generation of position independent code} { + configure.args-append --enable-pic +} Added: trunk/dports/lang/llvm/files/patch-Makefile.ocaml.diff =================================================================== --- trunk/dports/lang/llvm/files/patch-Makefile.ocaml.diff (rev 0) +++ trunk/dports/lang/llvm/files/patch-Makefile.ocaml.diff 2008-12-03 07:15:38 UTC (rev 43005) @@ -0,0 +1,11 @@ +--- bindings/ocaml/Makefile.ocaml.ocaml-symlinks 2008-03-10 12:15:32.000000000 -0400 ++++ bindings/ocaml/Makefile.ocaml 2008-12-02 16:29:01.000000000 -0500 +@@ -160,7 +160,7 @@ + + install-deplibs: + $(Verb) for i in $(DestLibs:$(PROJ_libocamldir)/%=%); do \ +- ln -sf "$(PROJ_libdir)/$$i" "$(PROJ_libocamldir)/$$i"; \ ++ ln -sf "${OVERRIDE_libdir}/$$i" "$(PROJ_libocamldir)/$$i"; \ + done + + uninstall-deplibs: -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 23:36:07 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 23:36:07 -0800 (PST) Subject: [43006] trunk/dports/x11/xinit/Portfile Message-ID: <20081203073607.7A0FB80CFBA@beta.macosforge.org> Revision: 43006 http://trac.macports.org/changeset/43006 Author: jeremyhu at macports.org Date: 2008-12-02 23:36:07 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xinit: Updated post-destroot to use builtins instead of system, thanks to Ryan Schmidt for keeping me honest ;) Modified Paths: -------------- trunk/dports/x11/xinit/Portfile Modified: trunk/dports/x11/xinit/Portfile =================================================================== --- trunk/dports/x11/xinit/Portfile 2008-12-03 07:15:38 UTC (rev 43005) +++ trunk/dports/x11/xinit/Portfile 2008-12-03 07:36:07 UTC (rev 43006) @@ -39,10 +39,9 @@ } post-destroot { - system "mv ${destroot}/Library/LaunchAgents/org.x.startx.plist ${destroot}/Library/LaunchAgents/org.macports.startx.plist" - system "mv ${destroot}/Library/LaunchDaemons/org.x.privileged_startx.plist ${destroot}/Library/LaunchDaemons/org.macports.privileged_startx.plist" + move ${destroot}/Library/LaunchAgents/org.x.startx.plist ${destroot}/Library/LaunchAgents/org.macports.startx.plist + move ${destroot}/Library/LaunchDaemons/org.x.privileged_startx.plist ${destroot}/Library/LaunchDaemons/org.macports.privileged_startx.plist - system "mkdir ${destroot}/${prefix}/lib/X11/xinit/xinitrc.d" - system "cp ${filespath}/xinitrc.d/*.sh ${destroot}/${prefix}/lib/X11/xinit/xinitrc.d" - system "chmod 755 ${destroot}/${prefix}/lib/X11/xinit/xinitrc.d/*.sh" + xinstall -d ${destroot}${prefix}/lib/X11/xinit/xinitrc.d + eval xinstall -m 755 [glob ${filespath}/xinitrc.d/*.sh] ${destroot}${prefix}/lib/X11/xinit/xinitrc.d } -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 23:45:42 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 23:45:42 -0800 (PST) Subject: [43007] trunk/dports/x11/xorg-util-macros/Portfile Message-ID: <20081203074542.865DE80D8D4@beta.macosforge.org> Revision: 43007 http://trac.macports.org/changeset/43007 Author: jeremyhu at macports.org Date: 2008-12-02 23:45:41 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xorg-util-macros: Version bump Modified Paths: -------------- trunk/dports/x11/xorg-util-macros/Portfile Modified: trunk/dports/x11/xorg-util-macros/Portfile =================================================================== --- trunk/dports/x11/xorg-util-macros/Portfile 2008-12-03 07:36:07 UTC (rev 43006) +++ trunk/dports/x11/xorg-util-macros/Portfile 2008-12-03 07:45:41 UTC (rev 43007) @@ -2,9 +2,9 @@ PortSystem 1.0 name xorg-util-macros -version 1.1.6 +version 1.2.0 categories x11 devel -maintainers bbyer at macports.org +maintainers jeremyhu description X.org util-macros homepage http://www.x.org platforms darwin @@ -12,9 +12,9 @@ master_sites ${homepage}/pub/individual/util/ distname util-macros-${version} -checksums md5 5b82bf7c25112f2ce7e2a3638a91a83c \ - sha1 9d0d08630a3549a02cd6cee181d7fbf1a1c8c05c \ - rmd160 b2cb26f05cb605c8dd9c364ea7fb93ac6458042f +checksums md5 f64bf1356ffaccfb5fd4f3d74905eeb0 \ + sha1 19ffcf706a5eef700766b7d62f693ffa0b06bb2a \ + rmd160 00c53b248affd737176144fb413708c1135e0f9a use_bzip2 yes universal_variant no -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 23:46:38 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 23:46:38 -0800 (PST) Subject: [43008] trunk/dports/x11/xorg-libxcb/Portfile Message-ID: <20081203074638.C5D8780DA73@beta.macosforge.org> Revision: 43008 http://trac.macports.org/changeset/43008 Author: jeremyhu at macports.org Date: 2008-12-02 23:46:38 -0800 (Tue, 02 Dec 2008) Log Message: ----------- libxcb: Added livecheck Modified Paths: -------------- trunk/dports/x11/xorg-libxcb/Portfile Modified: trunk/dports/x11/xorg-libxcb/Portfile =================================================================== --- trunk/dports/x11/xorg-libxcb/Portfile 2008-12-03 07:45:41 UTC (rev 43007) +++ trunk/dports/x11/xorg-libxcb/Portfile 2008-12-03 07:46:38 UTC (rev 43008) @@ -31,3 +31,7 @@ pre-configure { system "cd ${worksrcpath} && autoreconf -fvi" } + +livecheck.check regex +livecheck.url ${master_sites}?C=M&O=D +livecheck.regex libxcb-(\\d+(?:\\.\\d+)*) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Tue Dec 2 23:47:16 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Tue, 2 Dec 2008 23:47:16 -0800 (PST) Subject: [43009] trunk/dports/x11/xorg-xcb-util/Portfile Message-ID: <20081203074716.965E380DB43@beta.macosforge.org> Revision: 43009 http://trac.macports.org/changeset/43009 Author: jeremyhu at macports.org Date: 2008-12-02 23:47:16 -0800 (Tue, 02 Dec 2008) Log Message: ----------- xcb-util: Added livecheck Modified Paths: -------------- trunk/dports/x11/xorg-xcb-util/Portfile Modified: trunk/dports/x11/xorg-xcb-util/Portfile =================================================================== --- trunk/dports/x11/xorg-xcb-util/Portfile 2008-12-03 07:46:38 UTC (rev 43008) +++ trunk/dports/x11/xorg-xcb-util/Portfile 2008-12-03 07:47:16 UTC (rev 43009) @@ -22,3 +22,7 @@ depends_build port:pkgconfig \ port:xorg-xproto depends_lib port:xorg-libxcb + +livecheck.check regex +livecheck.url ${master_sites}?C=M&O=D +livecheck.regex xcb-util-(\\d+(?:\\.\\d+)*) -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Dec 2 23:51:40 2008 From: portindex at macports.org (portindex at macports.org) Date: Tue, 2 Dec 2008 23:51:40 -0800 (PST) Subject: [43010] trunk/dports/PortIndex Message-ID: <20081203075141.B5FE880DC28@beta.macosforge.org> Revision: 43010 http://trac.macports.org/changeset/43010 Author: portindex at macports.org Date: 2008-12-02 23:51:39 -0800 (Tue, 02 Dec 2008) Log Message: ----------- Total number of ports parsed: 5179 Ports successfully parsed: 5179 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-03 07:47:16 UTC (rev 43009) +++ trunk/dports/PortIndex 2008-12-03 07:51:39 UTC (rev 43010) @@ -2934,8 +2934,8 @@ variants universal portdir graphics/mscgen description {Message Sequence Chart image generator} homepage http://www.mcternan.me.uk/mscgen/ epoch 0 platforms darwin name mscgen depends_lib port:gd2 maintainers landonf long_description {Mscgen is a small program that parses Message Sequence Chart descriptions and produces PNG, SVG, EPS or server side image maps (ismaps) as the output. Message Sequence Charts (MSCs) are a way of representing entities and interactions over some time period and are often used in combination with SDL.} version 0.13 categories graphics revision 0 mtpaint 507 variants gtk1 variant_desc {gtk1 {use GTK+1 instead of GTK+2}} portdir graphics/mtpaint description {Mark Tyler's Painting Program} homepage http://mtpaint.sourceforge.net/ epoch 0 platforms darwin name mtpaint depends_lib {port:libpng port:gtk2 port:freetype} maintainers {afb at macports.org openmaintainer} long_description {mtPaint is a painting program which Mark Tyler developed from scratch so he could easily create pixel art and manipulate digital photos.} version 3.20 categories graphics revision 0 -netpbm 581 -variants {darwin_8 freebsd} portdir graphics/netpbm description {Image manipulation} homepage http://netpbm.sourceforge.net/ epoch 0 platforms {darwin freebsd linux} name netpbm depends_lib {port:zlib port:jpeg port:tiff port:libpng port:jasper} maintainers {mas openmaintainer} long_description {A whole bunch of utilities for primitive manipulation of graphic images. Wide array of converters from one graphics format to another. E.g. from g3 fax format to jpeg. Many basic graphics editing tools such as magnifying and cropping.} version 10.26.57 categories graphics revision 0 +netpbm 628 +variants {darwin linux freebsd darwin_8} depends_build path:bin/perl:perl5 portdir graphics/netpbm description {Image manipulation} homepage http://netpbm.sourceforge.net/ epoch 0 platforms {darwin freebsd linux} depends_lib {port:zlib port:jpeg port:tiff port:libpng port:jasper} name netpbm maintainers {mas openmaintainer} long_description {A whole bunch of utilities for primitive manipulation of graphic images. Wide array of converters from one graphics format to another. E.g. from g3 fax format to jpeg. Many basic graphics editing tools such as magnifying and cropping.} version 10.26.58 categories graphics revision 0 nip2 490 variants universal depends_build {port:swig bin:perl:perl5.8 port:p5-xml-parser} portdir graphics/nip2 description {nip2 is a user-interface to the VIPS image processing library.} homepage http://www.vips.ecs.soton.ac.uk epoch 0 platforms darwin depends_lib {port:fftw-3 port:vips port:gtk2 port:gsl} name nip2 long_description {nip2 is an image processing spreadsheet. It's good for large images and for colour.} maintainers gmail.com:jcupitt version 7.14.1 categories graphics revision 0 ocrad 502 @@ -3828,8 +3828,8 @@ variants {universal darwin_8_powerpc} description {A shared library implementing a Lisp dialect} portdir lang/librep homepage http://librep.sourceforge.net epoch 0 depends_lib {port:gdbm port:gmp} name librep long_description {librep is a shared library implementing a Lisp dialect that is lightweight, reasonably fast, and highly extensible. It contains an interpreter, byte-code compiler and virtual machine. Applications may use the interpreter as an extension language, or it may be used for standalone scripts.} maintainers lloyd at hilaiel.com categories lang version 0.17 revision 0 lisp-hyperspec 1236 variants universal description {The Common Lisp HyperSpec} portdir lang/lisp-hyperspec homepage http://www.lispworks.com/reference/HyperSpec/index.html epoch 0 platforms darwin name lisp-hyperspec long_description {This is an HTML document derived from the ANSI Common Lisp standard (X3.226-1994), with permission from ANSI and NCITS (previously known as X3). The Common Lisp HyperSpec was prepared by Kent Pitman at Harlequin, who as Project Editor of X3J13 managed the completion of the document which became the ANSI Common Lisp Standard. In hardcopy, the ANSI Common Lisp standard is nearly 1100 printed pages describing nearly a thousand functions and variables in sufficient detail to accommodate hosting of the language on a wide variety of hardware and operating system platforms. While the paper version remains the official standard, we think that in practice you'll find the Common Lisp HyperSpec much easier to navigate and use than its paper alternative. In addition to the Co mmon Lisp standard itself, the Common Lisp HyperSpec also incorporates interesting and useful cross references to other materials of the Common Lisp committee, J13 (formerly X3J13).} maintainers nomaintainer categories lang version 7.0 revision 0 -llvm 477 -variants {universal pic} depends_build {bin:flex:flex bin:bison:bison} variant_desc {pic {Enable generation of position independent code}} portdir lang/llvm description {llvm is a next generation compiler infrastructure} homepage http://llvm.org/ epoch 0 platforms darwin name llvm maintainers {erickt at macports.org openmaintainer} long_description {llvm brings tools to work on the llvm intermediate language incl. a C and C++ frontend.} version 2.4 categories lang revision 1 +llvm 526 +variants {universal ocaml pic} depends_build {bin:flex:flex bin:bison:bison} variant_desc {ocaml {Enable generation of OCaml binding} pic {Enable generation of position independent code}} portdir lang/llvm description {llvm is a next generation compiler infrastructure} homepage http://llvm.org/ epoch 0 platforms darwin name llvm maintainers {erickt at macports.org openmaintainer} long_description {llvm brings tools to work on the llvm intermediate language incl. a C and C++ frontend.} version 2.4 categories lang revision 2 llvm-devel 503 variants {universal clang} depends_build {bin:flex:flex bin:bison:bison} variant_desc {clang {Install clang (with checker tools)}} portdir lang/llvm-devel description {llvm is a next generation compiler infrastructure} homepage http://llvm.org/ epoch 0 platforms darwin name llvm-devel maintainers {erickt at macports.org pguyot at kallisys.net openmaintainer} long_description {llvm brings tools to work on the llvm intermediate language incl. a C and C++ frontend.} version 53722 categories lang revision 1 llvm-gcc42 427 -------------- next part -------------- An HTML attachment was scrubbed... URL: From devans at macports.org Wed Dec 3 00:05:28 2008 From: devans at macports.org (devans at macports.org) Date: Wed, 3 Dec 2008 00:05:28 -0800 (PST) Subject: [43011] trunk/dports/graphics/gimp-gap/Portfile Message-ID: <20081203080529.EA35D80E5C3@beta.macosforge.org> Revision: 43011 http://trac.macports.org/changeset/43011 Author: devans at macports.org Date: 2008-12-03 00:05:22 -0800 (Wed, 03 Dec 2008) Log Message: ----------- gimp-gap: disable internal ffmpeg code by default as it does not compile on all platforms/architectures. Add +libavformat variant to enable building of this code for those who can use it. See #17432. Modified Paths: -------------- trunk/dports/graphics/gimp-gap/Portfile Modified: trunk/dports/graphics/gimp-gap/Portfile =================================================================== --- trunk/dports/graphics/gimp-gap/Portfile 2008-12-03 07:51:39 UTC (rev 43010) +++ trunk/dports/graphics/gimp-gap/Portfile 2008-12-03 08:05:22 UTC (rev 43011) @@ -5,6 +5,7 @@ name gimp-gap version 2.4.0 +revision 1 set branch [join [lrange [split ${version} .] 0 1] .] categories graphics maintainers devans @@ -76,15 +77,19 @@ configure.args --disable-audio-support \ --disable-libmpeg3 \ + --disable-libavformat \ --enable-gdkpixbuf-pview -post-configure { - reinplace "s|-Wl,-d|-Wl|g" \ - ${worksrcpath}/extern_libs/ffmpeg/config.mak - reinplace "s|no-cpp-precomp|no-cpp-precomp -DHAVE_LRINTF -fno-common|g" \ - ${worksrcpath}/extern_libs/ffmpeg/config.mak - reinplace "s|APPLE|NOTHANKS|" \ - ${worksrcpath}/extern_libs/ffmpeg/libavformat/tcp.c +variant libavformat description {Build against included ffmpeg libavformat source} { + configure.args-delete --disable-libavformat + post-configure { + reinplace "s|-Wl,-d|-Wl|g" \ + ${worksrcpath}/extern_libs/ffmpeg/config.mak + reinplace "s|no-cpp-precomp|no-cpp-precomp -DHAVE_LRINTF -fno-common|g" \ + ${worksrcpath}/extern_libs/ffmpeg/config.mak + reinplace "s|APPLE|NOTHANKS|" \ + ${worksrcpath}/extern_libs/ffmpeg/libavformat/tcp.c + } } post-destroot { -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 00:14:06 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 00:14:06 -0800 (PST) Subject: [43012] trunk/dports/graphics/netpbm/Portfile Message-ID: <20081203081407.C22A080EAD5@beta.macosforge.org> Revision: 43012 http://trac.macports.org/changeset/43012 Author: mcalhoun at macports.org Date: 2008-12-03 00:14:01 -0800 (Wed, 03 Dec 2008) Log Message: ----------- netpbm: Fixed misplaced closing bracket. Modified Paths: -------------- trunk/dports/graphics/netpbm/Portfile Modified: trunk/dports/graphics/netpbm/Portfile =================================================================== --- trunk/dports/graphics/netpbm/Portfile 2008-12-03 08:05:22 UTC (rev 43011) +++ trunk/dports/graphics/netpbm/Portfile 2008-12-03 08:14:01 UTC (rev 43012) @@ -94,7 +94,7 @@ post-destroot { xinstall -m 755 -d ${destroot}${prefix}/share/netpbm - eval move ${destroot}${prefix}/bin/doc.url [glob ${destroot}${prefix}/misc/* ${destroot}${prefix}/share/netpbm] + eval move ${destroot}${prefix}/bin/doc.url [glob ${destroot}${prefix}/misc/*] ${destroot}${prefix}/share/netpbm move ${destroot}${prefix}/man ${destroot}${prefix}/share/ move ${destroot}${prefix}/link/libnetpbm.a ${destroot}${prefix}/lib -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Dec 3 00:51:53 2008 From: portindex at macports.org (portindex at macports.org) Date: Wed, 3 Dec 2008 00:51:53 -0800 (PST) Subject: [43013] trunk/dports/PortIndex Message-ID: <20081203085155.521C0810905@beta.macosforge.org> Revision: 43013 http://trac.macports.org/changeset/43013 Author: portindex at macports.org Date: 2008-12-03 00:51:53 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Total number of ports parsed: 5179 Ports successfully parsed: 5179 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-03 08:14:01 UTC (rev 43012) +++ trunk/dports/PortIndex 2008-12-03 08:51:53 UTC (rev 43013) @@ -2796,8 +2796,8 @@ portdir graphics/gifsicle variants universal description {GIF image/animation creator/editor.} name gifsicle version 1.42 categories graphics homepage http://www.lcdf.org/gifsicle/ revision 0 epoch 0 maintainers nigel at cofa.unsw.edu.au long_description {Gifsicle is a UNIX command-line tool for creating, editing, and getting information about GIF images and animations.} gimp 850 variants {universal macosx animation manual} variant_desc {animation {Include the Gimp Animation Package (gimp-gap).} manual {Include the help files.}} portdir graphics/gimp description {The Gimp - Batteries Included} homepage http://www.gimp.org/ epoch 0 platforms darwin name gimp depends_lib {port:icns-gimp port:gimp-jp2 port:gimp-lqr-plugin port:gtk-nodoka-engine port:gutenprint port:ufraw port:xsane port:gimp-app port:macclipboard-gimp port:macfile-gimp} maintainers devans long_description {{This is a META port for the gimp2 which includes help and documentation, support for icns, jp2000 and RAW formats, content-aware rescaling Gutenprint and scanner frontends and even a nice theme (Nodoka). Mac OS X users also get a Gimp.app bundle, a "Show in Finder" menu and clipboard integration.}} version 2.6.2 categories graphics revision 0 -gimp-gap 459 -variants universal portdir graphics/gimp-gap description {The Gimp Animation Package.} homepage http://www.gimp.org/ depends_run port:MPlayer epoch 0 platforms darwin name gimp-gap depends_lib {port:gimp2 port:XviD} maintainers devans long_description {GIMP-GAP, the GIMP Animation Package, is a collection of plug-ins to extend GIMP with capabilities to edit and create animations as sequences of single frames.} version 2.4.0 categories graphics revision 0 +gimp-gap 551 +variants {universal libavformat} variant_desc {libavformat {Build against included ffmpeg libavformat source}} portdir graphics/gimp-gap description {The Gimp Animation Package.} homepage http://www.gimp.org/ depends_run port:MPlayer epoch 0 platforms darwin name gimp-gap depends_lib {port:gimp2 port:XviD} maintainers devans long_description {GIMP-GAP, the GIMP Animation Package, is a collection of plug-ins to extend GIMP with capabilities to edit and create animations as sequences of single frames.} categories graphics version 2.4.0 revision 1 gimp-jp2 449 variants universal portdir graphics/gimp-jp2 description {GIMP Wavelet/JPEG 2000 plug-in.} homepage http://registry.gimp.org/node/9899 epoch 0 platforms darwin name gimp-jp2 depends_lib {lib:libgimp-2.0:gimp2 port:openjpeg} maintainers devans long_description {GIMP Wavelet/JPEG 2000 plug-in, written by Divyanshu Vats, from the 2006 GIMP Google Summer of Code wavelet project, mentored by Simon Budig.} version 2.2.0 categories graphics revision 2 gimp-lqr-plugin 416 @@ -10168,8 +10168,8 @@ variants universal depends_build {port:pkgconfig port:xorg-applewmproto port:xorg-fixesproto port:xorg-glproto port:xorg-inputproto port:xorg-randrproto port:xorg-renderproto port:xorg-xcmiscproto port:xorg-xproto port:xorg-xextproto port:xorg-xtrans} portdir x11/xorg-server description {The X.org / Xquartz X server.} homepage http://www.x.org depends_run port:xinit epoch 0 platforms {darwin macosx} depends_lib {port:libpixman port:xorg-libAppleWM port:xorg-libXdmcp port:xorg-libXfixes} name xorg-server maintainers jeremyhu long_description {The X.org X server allows you to run X11 applications on your computer.} categories {x11 devel} version 1.4.2-apple26 revision 0 xorg-trapproto 265 portdir x11/xorg-trapproto description {X.org trapproto} platforms darwin name xorg-trapproto version 3.4.3 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XTrap extension to X11} -xorg-util-macros 301 -portdir x11/xorg-util-macros description {X.org util-macros} platforms darwin name xorg-util-macros version 1.1.6 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers bbyer at macports.org long_description {Miscellaneous utility macros required by the Modular X.org codebase.} +xorg-util-macros 291 +portdir x11/xorg-util-macros description {X.org util-macros} platforms darwin name xorg-util-macros version 1.2.0 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Miscellaneous utility macros required by the Modular X.org codebase.} xorg-videoproto 269 portdir x11/xorg-videoproto description {X.org videoproto} platforms darwin name xorg-videoproto version 2.2.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XVideo extension to X11} xorg-xcb-proto 263 -------------- next part -------------- An HTML attachment was scrubbed... URL: From devans at macports.org Wed Dec 3 01:04:53 2008 From: devans at macports.org (devans at macports.org) Date: Wed, 3 Dec 2008 01:04:53 -0800 (PST) Subject: [43014] trunk/dports/graphics/gimp/Portfile Message-ID: <20081203090455.30DEE810EAA@beta.macosforge.org> Revision: 43014 http://trac.macports.org/changeset/43014 Author: devans at macports.org Date: 2008-12-03 01:04:49 -0800 (Wed, 03 Dec 2008) Log Message: ----------- gimp: update to version 2.6.3. Modified Paths: -------------- trunk/dports/graphics/gimp/Portfile Modified: trunk/dports/graphics/gimp/Portfile =================================================================== --- trunk/dports/graphics/gimp/Portfile 2008-12-03 08:51:53 UTC (rev 43013) +++ trunk/dports/graphics/gimp/Portfile 2008-12-03 09:04:49 UTC (rev 43014) @@ -4,7 +4,7 @@ PortSystem 1.0 name gimp -version 2.6.2 +version 2.6.3 categories graphics maintainers devans homepage http://www.gimp.org/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From toby at macports.org Wed Dec 3 01:25:26 2008 From: toby at macports.org (toby at macports.org) Date: Wed, 3 Dec 2008 01:25:26 -0800 (PST) Subject: [43015] trunk/dports/devel/vxl Message-ID: <20081203092527.976B5811B5F@beta.macosforge.org> Revision: 43015 http://trac.macports.org/changeset/43015 Author: toby at macports.org Date: 2008-12-03 01:25:23 -0800 (Wed, 03 Dec 2008) Log Message: ----------- fix build on leopard Modified Paths: -------------- trunk/dports/devel/vxl/Portfile Added Paths: ----------- trunk/dports/devel/vxl/files/patch-contrib?\226?\152?\131brl?\226?\152?\131bpro?\226?\152?\131bprb?\226?\152?\131bprb_process_manager.txx Modified: trunk/dports/devel/vxl/Portfile =================================================================== --- trunk/dports/devel/vxl/Portfile 2008-12-03 09:04:49 UTC (rev 43014) +++ trunk/dports/devel/vxl/Portfile 2008-12-03 09:25:23 UTC (rev 43015) @@ -23,6 +23,7 @@ rmd160 35812c0fcfdda27c77ee9044e65e9e8dcccfffc0 patchfiles patch-contrib?brl?bpro?bprb?Templates?bprb_parameters+unsigned_int-.cxx \ + patch-contrib?brl?bpro?bprb?bprb_process_manager.txx \ patch-contrib?brl?bseg?bvxm?bvxm_memory_chunk.cxx \ patch-v3p?mpeg2?libmpeg2?idct_altivec.c \ patch-v3p?mpeg2?libmpeg2?motion_comp_altivec.c Added: trunk/dports/devel/vxl/files/patch-contrib?\226?\152?\131brl?\226?\152?\131bpro?\226?\152?\131bprb?\226?\152?\131bprb_process_manager.txx =================================================================== -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Dec 3 01:52:04 2008 From: portindex at macports.org (portindex at macports.org) Date: Wed, 3 Dec 2008 01:52:04 -0800 (PST) Subject: [43016] trunk/dports/PortIndex Message-ID: <20081203095205.E78B4812B64@beta.macosforge.org> Revision: 43016 http://trac.macports.org/changeset/43016 Author: portindex at macports.org Date: 2008-12-03 01:52:04 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Total number of ports parsed: 5179 Ports successfully parsed: 5179 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-03 09:25:23 UTC (rev 43015) +++ trunk/dports/PortIndex 2008-12-03 09:52:04 UTC (rev 43016) @@ -2795,7 +2795,7 @@ gifsicle 371 portdir graphics/gifsicle variants universal description {GIF image/animation creator/editor.} name gifsicle version 1.42 categories graphics homepage http://www.lcdf.org/gifsicle/ revision 0 epoch 0 maintainers nigel at cofa.unsw.edu.au long_description {Gifsicle is a UNIX command-line tool for creating, editing, and getting information about GIF images and animations.} gimp 850 -variants {universal macosx animation manual} variant_desc {animation {Include the Gimp Animation Package (gimp-gap).} manual {Include the help files.}} portdir graphics/gimp description {The Gimp - Batteries Included} homepage http://www.gimp.org/ epoch 0 platforms darwin name gimp depends_lib {port:icns-gimp port:gimp-jp2 port:gimp-lqr-plugin port:gtk-nodoka-engine port:gutenprint port:ufraw port:xsane port:gimp-app port:macclipboard-gimp port:macfile-gimp} maintainers devans long_description {{This is a META port for the gimp2 which includes help and documentation, support for icns, jp2000 and RAW formats, content-aware rescaling Gutenprint and scanner frontends and even a nice theme (Nodoka). Mac OS X users also get a Gimp.app bundle, a "Show in Finder" menu and clipboard integration.}} version 2.6.2 categories graphics revision 0 +variants {universal macosx animation manual} variant_desc {animation {Include the Gimp Animation Package (gimp-gap).} manual {Include the help files.}} portdir graphics/gimp description {The Gimp - Batteries Included} homepage http://www.gimp.org/ epoch 0 platforms darwin name gimp depends_lib {port:icns-gimp port:gimp-jp2 port:gimp-lqr-plugin port:gtk-nodoka-engine port:gutenprint port:ufraw port:xsane port:gimp-app port:macclipboard-gimp port:macfile-gimp} maintainers devans long_description {{This is a META port for the gimp2 which includes help and documentation, support for icns, jp2000 and RAW formats, content-aware rescaling Gutenprint and scanner frontends and even a nice theme (Nodoka). Mac OS X users also get a Gimp.app bundle, a "Show in Finder" menu and clipboard integration.}} version 2.6.3 categories graphics revision 0 gimp-gap 551 variants {universal libavformat} variant_desc {libavformat {Build against included ffmpeg libavformat source}} portdir graphics/gimp-gap description {The Gimp Animation Package.} homepage http://www.gimp.org/ depends_run port:MPlayer epoch 0 platforms darwin name gimp-gap depends_lib {port:gimp2 port:XviD} maintainers devans long_description {GIMP-GAP, the GIMP Animation Package, is a collection of plug-ins to extend GIMP with capabilities to edit and create animations as sequences of single frames.} categories graphics version 2.4.0 revision 1 gimp-jp2 449 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Wed Dec 3 05:51:20 2008 From: jmr at macports.org (jmr at macports.org) Date: Wed, 3 Dec 2008 05:51:20 -0800 (PST) Subject: [43017] trunk/dports/python Message-ID: <20081203135120.C515F819756@beta.macosforge.org> Revision: 43017 http://trac.macports.org/changeset/43017 Author: jmr at macports.org Date: 2008-12-03 05:51:18 -0800 (Wed, 03 Dec 2008) Log Message: ----------- py-opengl, py25-opengl: update to 3.0.0b6 and synchronise formatting (#17490) Modified Paths: -------------- trunk/dports/python/py-opengl/Portfile trunk/dports/python/py25-opengl/Portfile Modified: trunk/dports/python/py-opengl/Portfile =================================================================== --- trunk/dports/python/py-opengl/Portfile 2008-12-03 09:52:04 UTC (rev 43016) +++ trunk/dports/python/py-opengl/Portfile 2008-12-03 13:51:18 UTC (rev 43017) @@ -3,29 +3,32 @@ PortSystem 1.0 PortGroup python24 1.0 -name py-opengl -version 3.0.0b3 -categories python graphics -platforms darwin -maintainers melix.net:alakazam openmaintainer -description PyOpenGL is a Python binding to OpenGL -long_description PyOpenGL is the cross platform Python binding to OpenGL \ - and related APIs. The binding is created using the \ - standard ctypes library, and is provided under an extremely \ - liberal BSD-style Open-Source license. +name py-opengl +version 3.0.0b6 +categories python graphics +platforms darwin +maintainers melix.net:alakazam -homepage http://pyopengl.sourceforge.net/ -master_sites sourceforge:pyopengl -distname PyOpenGL-${version} -checksums md5 a9ef90a2256df749b859dc04d221a6dc \ - sha1 4d436c1905542e7eafbbc915a4f97d1474b15ba0 \ - rmd160 f56d868253bfee380739997f67920f21f2ac76c5 +description PyOpenGL is a Python binding to OpenGL +long_description PyOpenGL is the cross platform Python binding to OpenGL \ + and related APIs. The binding is created using the \ + standard ctypes library, and is provided under an \ + extremely liberal BSD-style Open-Source license. +homepage http://pyopengl.sourceforge.net/ + +master_sites sourceforge:pyopengl +distname PyOpenGL-${version} + +checksums md5 6a70dd315767064ec78b84a92d2420a8 \ + sha1 d622df9be810f39cad96a4b72e3267b7e1b20d9b \ + rmd160 5eacede1d144c9d937729df3981daf56501beb42 + depends_build-append port:py-setuptools depends_lib-append port:py-ctypes port:py-numpy -test.run yes +test.run yes -livecheck.check sourceforge -livecheck.name pyopengl -livecheck.distname PyOpenGL +livecheck.check sourceforge +livecheck.name pyopengl +livecheck.distname PyOpenGL Modified: trunk/dports/python/py25-opengl/Portfile =================================================================== --- trunk/dports/python/py25-opengl/Portfile 2008-12-03 09:52:04 UTC (rev 43016) +++ trunk/dports/python/py25-opengl/Portfile 2008-12-03 13:51:18 UTC (rev 43017) @@ -4,15 +4,15 @@ PortGroup python25 1.0 name py25-opengl -version 3.0.0b5 +version 3.0.0b6 categories python graphics platforms darwin -maintainers melix.net:alakazam openmaintainer +maintainers melix.net:alakazam description Python binding to OpenGL -long_description PyOpenGL is the cross platform Python binding to \ - OpenGL and related APIs. The binding is created using \ - the standard ctypes library and is provided under an \ +long_description PyOpenGL is the cross platform Python binding to OpenGL \ + and related APIs. The binding is created using the \ + standard ctypes library and is provided under an \ extremely liberal BSD-style Open-Source licenses. homepage http://pyopengl.sourceforge.net/ @@ -20,13 +20,15 @@ master_sites sourceforge:pyopengl distname PyOpenGL-${version} -checksums md5 4e46b6ce318b82799109a4850dd37c50 \ - sha1 d2cc1c416f5035083edd4eb891fc2d2c80e88bdc \ - rmd160 8ebd342c1178255256062cbc6c321ba69f36cb4d +checksums md5 6a70dd315767064ec78b84a92d2420a8 \ + sha1 d622df9be810f39cad96a4b72e3267b7e1b20d9b \ + rmd160 5eacede1d144c9d937729df3981daf56501beb42 depends_build-append port:py25-setuptools depends_lib-append port:py25-tkinter port:py25-pil port:py25-numpy +test.run yes + livecheck.check sourceforge livecheck.name pyopengl livecheck.distname PyOpenGL -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Dec 3 06:52:22 2008 From: portindex at macports.org (portindex at macports.org) Date: Wed, 3 Dec 2008 06:52:22 -0800 (PST) Subject: [43018] trunk/dports/PortIndex Message-ID: <20081203145224.7F8ED81A03E@beta.macosforge.org> Revision: 43018 http://trac.macports.org/changeset/43018 Author: portindex at macports.org Date: 2008-12-03 06:52:19 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Total number of ports parsed: 5179 Ports successfully parsed: 5179 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-03 13:51:18 UTC (rev 43017) +++ trunk/dports/PortIndex 2008-12-03 14:52:19 UTC (rev 43018) @@ -7078,8 +7078,8 @@ variants universal portdir python/py-ogg description {Python module for the ogg multimedia interface} homepage http://ekyo.nerim.net/software/pyogg/ epoch 0 platforms darwin depends_lib {port:python24 lib:libogg:libogg} name py-ogg maintainers nomaintainer long_description {py-ogg is an interface to the ogg multimedia standard. You cant do much with this module on its own, you will also need specific Python modules for audio, etc.} categories {python audio multimedia} version 1.3 revision 1 py-omniORBpy 389 variants {universal ssl} description {Python binding for omniORB} portdir python/py-omniORBpy homepage http://omniorb.sourceforge.net/ epoch 0 depends_lib port:omniORB name py-omniORBpy long_description {omniORB is a robust high performance CORBA ORB for C++ and Python. omniORB is largely CORBA 2.6 compliant.} maintainers gr281 at cam.ac.uk categories {python devel} version 3.0 revision 0 -py-opengl 598 -variants universal depends_build port:py-setuptools portdir python/py-opengl description {PyOpenGL is a Python binding to OpenGL} homepage http://pyopengl.sourceforge.net/ epoch 0 platforms darwin depends_lib {port:python24 port:py-ctypes port:py-numpy} name py-opengl maintainers {melix.net:alakazam openmaintainer} long_description {PyOpenGL is the cross platform Python binding to OpenGL and related APIs. The binding is created using the standard ctypes library, and is provided under an extremely liberal BSD-style Open-Source license.} categories {python graphics} version 3.0.0b3 revision 0 +py-opengl 581 +variants universal depends_build port:py-setuptools portdir python/py-opengl description {PyOpenGL is a Python binding to OpenGL} homepage http://pyopengl.sourceforge.net/ epoch 0 platforms darwin depends_lib {port:python24 port:py-ctypes port:py-numpy} name py-opengl maintainers melix.net:alakazam long_description {PyOpenGL is the cross platform Python binding to OpenGL and related APIs. The binding is created using the standard ctypes library, and is provided under an extremely liberal BSD-style Open-Source license.} categories {python graphics} version 3.0.0b6 revision 0 py-openssl 559 variants universal portdir python/py-openssl description {python wrapper around the OpenSSL library} homepage http://pyopenssl.sourceforge.net/ epoch 0 platforms {darwin freebsd} depends_lib {port:python24 port:openssl} name py-openssl maintainers {raimue openmaintainer} long_description {This python module is a rather thin wrapper around (a subset of) the OpenSSL library. With thin wrapper a lot of the object methods do nothing more than calling a corresponding function in the OpenSSL library.} categories {python devel security} version 0.7 revision 0 py-optik 544 @@ -7658,8 +7658,8 @@ variants universal portdir python/py25-numpy description {The core utilities for the scientific library scipy for Python} homepage http://numpy.scipy.org/ epoch 0 platforms darwin depends_lib {port:python25 port:fftw-3 port:py25-hashlib port:py25-nose} name py25-numpy maintainers {ram openmaintainer} long_description {{The core utilities for the scientific library scipy for Python}} categories python version 1.2.1 revision 0 py25-ode 352 variants universal portdir python/py25-ode description {Python bindings for The Open Dynamics Engine} homepage http://pyode.sourceforge.net/ epoch 0 platforms darwin depends_lib {port:python25 port:ode} name py25-ode maintainers nomaintainer long_description {{Python bindings for The Open Dynamics Engine.}} categories python version 1.2.0 revision 0 -py25-opengl 609 -variants universal depends_build port:py25-setuptools portdir python/py25-opengl description {Python binding to OpenGL} homepage http://pyopengl.sourceforge.net/ epoch 0 platforms darwin depends_lib {port:python25 port:py25-tkinter port:py25-pil port:py25-numpy} name py25-opengl maintainers {melix.net:alakazam openmaintainer} long_description {PyOpenGL is the cross platform Python binding to OpenGL and related APIs. The binding is created using the standard ctypes library and is provided under an extremely liberal BSD-style Open-Source licenses.} categories {python graphics} version 3.0.0b5 revision 0 +py25-opengl 592 +variants universal depends_build port:py25-setuptools portdir python/py25-opengl description {Python binding to OpenGL} homepage http://pyopengl.sourceforge.net/ epoch 0 platforms darwin depends_lib {port:python25 port:py25-tkinter port:py25-pil port:py25-numpy} name py25-opengl maintainers melix.net:alakazam long_description {PyOpenGL is the cross platform Python binding to OpenGL and related APIs. The binding is created using the standard ctypes library and is provided under an extremely liberal BSD-style Open-Source licenses.} categories {python graphics} version 3.0.0b6 revision 0 py25-openssl 563 variants universal portdir python/py25-openssl description {python wrapper around the OpenSSL library} homepage http://pyopenssl.sourceforge.net/ epoch 0 platforms {darwin freebsd} depends_lib {port:python25 port:openssl} name py25-openssl maintainers {raimue openmaintainer} long_description {This python module is a rather thin wrapper around (a subset of) the OpenSSL library. With thin wrapper a lot of the object methods do nothing more than calling a corresponding function in the OpenSSL library.} categories {python devel security} version 0.7 revision 0 py25-orbit 737 -------------- next part -------------- An HTML attachment was scrubbed... URL: From devans at macports.org Wed Dec 3 10:20:15 2008 From: devans at macports.org (devans at macports.org) Date: Wed, 3 Dec 2008 10:20:15 -0800 (PST) Subject: [43019] trunk/dports/audio/ardour2/Portfile Message-ID: <20081203182015.ECE6E81F6C1@beta.macosforge.org> Revision: 43019 http://trac.macports.org/changeset/43019 Author: devans at macports.org Date: 2008-12-03 10:20:15 -0800 (Wed, 03 Dec 2008) Log Message: ----------- ardour2: fix livecheck. Modified Paths: -------------- trunk/dports/audio/ardour2/Portfile Modified: trunk/dports/audio/ardour2/Portfile =================================================================== --- trunk/dports/audio/ardour2/Portfile 2008-12-03 14:52:19 UTC (rev 43018) +++ trunk/dports/audio/ardour2/Portfile 2008-12-03 18:20:15 UTC (rev 43019) @@ -64,6 +64,5 @@ build.args PREFIX=${prefix} VST=0 AUBIO=1 FREESOUND=1 LV2=1 livecheck.check regex -livecheck.url ${master_sites} -livecheck.regex "ardour-(\[0-9.\]+)${extract.suffix}" - +livecheck.url ${homepage}/source_downloads +livecheck.regex "ardour-(\[0-9.\]+).*${extract.suffix}" -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 10:49:51 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 10:49:51 -0800 (PST) Subject: [43020] trunk/dports/x11/xorg-libX11/Portfile Message-ID: <20081203184951.EF64F81FB4A@beta.macosforge.org> Revision: 43020 http://trac.macports.org/changeset/43020 Author: jeremyhu at macports.org Date: 2008-12-03 10:49:50 -0800 (Wed, 03 Dec 2008) Log Message: ----------- libX11: Added missing dep on xorg-xcmiscproto Modified Paths: -------------- trunk/dports/x11/xorg-libX11/Portfile Modified: trunk/dports/x11/xorg-libX11/Portfile =================================================================== --- trunk/dports/x11/xorg-libX11/Portfile 2008-12-03 18:20:15 UTC (rev 43019) +++ trunk/dports/x11/xorg-libX11/Portfile 2008-12-03 18:49:50 UTC (rev 43020) @@ -20,6 +20,7 @@ depends_build port:pkgconfig \ port:xorg-bigreqsproto \ + port:xorg-xcmiscproto \ port:xorg-xproto \ port:xorg-xtrans \ port:xorg-xextproto \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From devans at macports.org Wed Dec 3 11:01:28 2008 From: devans at macports.org (devans at macports.org) Date: Wed, 3 Dec 2008 11:01:28 -0800 (PST) Subject: [43021] trunk/dports/devel/gtkimageview/Portfile Message-ID: <20081203190128.E42A681FF50@beta.macosforge.org> Revision: 43021 http://trac.macports.org/changeset/43021 Author: devans at macports.org Date: 2008-12-03 11:01:28 -0800 (Wed, 03 Dec 2008) Log Message: ----------- gtkimageview: update to version 1.6.3 Modified Paths: -------------- trunk/dports/devel/gtkimageview/Portfile Modified: trunk/dports/devel/gtkimageview/Portfile =================================================================== --- trunk/dports/devel/gtkimageview/Portfile 2008-12-03 18:49:50 UTC (rev 43020) +++ trunk/dports/devel/gtkimageview/Portfile 2008-12-03 19:01:28 UTC (rev 43021) @@ -4,8 +4,7 @@ PortSystem 1.0 name gtkimageview -version 1.6.2 -revision 1 +version 1.6.3 categories devel maintainers devans openmaintainer description GtkImageView is a simple image viewer widget for GTK. @@ -18,17 +17,17 @@ master_sites ${homepage}attachment/wiki/WikiStart/${distfiles}?format=raw&dummy= -checksums md5 e9c88245b854984934b25835e9c8174b \ - sha1 5a6f15ae31d1662dabe144c92f55089f7af8c5aa \ - rmd160 706519dcdd4ad427cae83b6b1700b800fa954be0 +checksums md5 9c241ecf36faeb750d42c5cbc1301bcf \ + sha1 ad19e7421279919935193c7f8a9e6793d77190e0 \ + rmd160 eec79ea967776fc8152a5dd4149959c3499b682f patchfiles patch-Makefile.in.diff -depends_build port:pkgconfig +depends_build port:pkgconfig \ + port:gtk-doc depends_lib port:gtk2 livecheck.check regex livecheck.url ${homepage} livecheck.regex "^.*${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}.*<\/li>\$" - -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 11:30:33 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 11:30:33 -0800 (PST) Subject: [43022] trunk/dports/x11/xinit Message-ID: <20081203193034.2FBDC820A11@beta.macosforge.org> Revision: 43022 http://trac.macports.org/changeset/43022 Author: jeremyhu at macports.org Date: 2008-12-03 11:30:33 -0800 (Wed, 03 Dec 2008) Log Message: ----------- xinit: Added font_cache script to generate fontconfig cache and fontdir caches when X11 starts Modified Paths: -------------- trunk/dports/x11/xinit/Portfile trunk/dports/x11/xinit/files/tiger_support.patch Added Paths: ----------- trunk/dports/x11/xinit/files/font_cache.sh Modified: trunk/dports/x11/xinit/Portfile =================================================================== --- trunk/dports/x11/xinit/Portfile 2008-12-03 19:01:28 UTC (rev 43021) +++ trunk/dports/x11/xinit/Portfile 2008-12-03 19:30:33 UTC (rev 43022) @@ -4,6 +4,7 @@ name xinit version 1.1.0 +revision 1 categories x11 platforms darwin maintainers jeremyhu @@ -44,4 +45,7 @@ xinstall -d ${destroot}${prefix}/lib/X11/xinit/xinitrc.d eval xinstall -m 755 [glob ${filespath}/xinitrc.d/*.sh] ${destroot}${prefix}/lib/X11/xinit/xinitrc.d + + xinstall -m 755 ${filespath}/font_cache.sh ${destroot}${prefix}/bin/font_cache + reinplace "s|^X11DIR=.*$|X11DIR=${prefix}|" ${destroot}${prefix}/bin/font_cache } Added: trunk/dports/x11/xinit/files/font_cache.sh =================================================================== --- trunk/dports/x11/xinit/files/font_cache.sh (rev 0) +++ trunk/dports/x11/xinit/files/font_cache.sh 2008-12-03 19:30:33 UTC (rev 43022) @@ -0,0 +1,224 @@ +#!/bin/bash +# Copyright (c) 2008 Apple Inc. +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation files +# (the "Software"), to deal in the Software without restriction, +# including without limitation the rights to use, copy, modify, merge, +# publish, distribute, sublicense, and/or sell copies of the Software, +# and to permit persons to whom the Software is furnished to do so, +# subject to the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT +# HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. +# +# Except as contained in this notice, the name(s) of the above +# copyright holders shall not be used in advertising or otherwise to +# promote the sale, use or other dealings in this Software without +# prior written authorization. + +X11DIR=/usr/X11 +X11FONTDIR=${X11DIR}/lib/X11/fonts + +# Are we caching system fonts or user fonts? +system=0 + +# Are we including OSX font dirs ({/,~/,/System/}Library/Fonts) +osxfonts=1 + +# Do we want to force a recache? +force=0 + +# How noisy are we? +verbose=0 + +# Check if the data in the given directory is newer than its cache +check_dirty() { + local dir=$1 + local fontfiles="" + local retval=1 + + # If the dir does not exist, we just exit + if [[ ! -d "${dir}" ]]; then + return 1 + fi + + # Create a list of all files in the dir + # Filter out config / cache files. Ugly... counting down the day until + # xfs finally goes away + fontfiles="$(find ${dir}/ -maxdepth 1 -type f | awk '$0 !~ /fonts\..*$|^.*\.dir$/ {print}')" + + # Fonts were deleted (or never there). Kill off the caches + if [[ -z "${fontfiles}" ]] ; then + local f + for f in "${dir}"/fonts.* "${dir}"/encodings.dir; do + if [[ -f ${f} ]] ; then + rm -f "${f}" + fi + done + return 1 + fi + + # Force a recache + if [[ ${force} == 1 ]] ; then + retval=0 + fi + + # If we don't have our caches, we are dirty + if [[ ! -f "${dir}/fonts.list" || ! -f "${dir}/fonts.dir" || ! -f "${dir}/encodings.dir" ]]; then + retval=0 + fi + + # Check that no files were added or removed.... + if [[ "${retval}" -ne 0 && "$(cat ${dir}/fonts.list)" != "${fontfiles}" ]] ; then + retval=0 + fi + + # Check that no files were updated.... + if [[ "${retval}" -ne 0 ]] ; then + local changed="$(find ${dir}/ -type f -cnewer ${dir}/fonts.dir | awk '$0 !~ /fonts\..*$|^.*\.dir$/ {print}')" + + if [[ -n "${changed}" ]] ; then + retval=0 + fi + fi + + # Recreate fonts.list since something changed + if [[ "${retval}" == 0 ]] ; then + echo "${fontfiles}" > "${dir}"/fonts.list + fi + + return ${retval} +} + +get_fontdirs() { + local d + if [[ $system == 1 ]] ; then + if [[ $osxfonts == 1 ]] ; then + find {/System/,/}Library/Fonts -type d + fi + + for d in "${X11FONTDIR}"/* ; do + case ${d#${X11FONTDIR}/} in + conf*|encodings*) ;; + *) find "$d" -type d ;; + esac + done + else + if [[ $osxfonts == 1 && -d "${HOME}/Library/Fonts" ]] ; then + find "${HOME}/Library/Fonts" -type d + fi + + if [[ -d "${HOME}/.fonts" ]] ; then + find "${HOME}/.fonts" -type d + fi + fi +} + +setup_fontdirs() { + local x="" + local fontdirs="" + local changed="no" + + umask 022 + + if [[ $system == 1 ]] ; then + echo "font_cache: Scanning system font directories to generate X11 font caches" + else + echo "font_cache: Scanning user font directories to generate X11 font caches" + fi + + # Generate the encodings.dir ... + if [[ $system == 1 ]] ; then + ${X11DIR}/bin/mkfontdir -n \ + -e ${X11FONTDIR}/encodings \ + -e ${X11FONTDIR}/encodings/large \ + -- ${X11FONTDIR}/encodings + fi + + OIFS=$IFS + IFS=' +' + for x in $(get_fontdirs) ; do + if [[ -d "${x}" ]] && check_dirty "${x}" ; then + if [[ -z "${fontdirs}" ]] ; then + fontdirs="${x}" + else + fontdirs="${fontdirs}${IFS}${x}" + fi + fi + done + + if [[ -n "${fontdirs}" ]] ; then + echo "font_cache: Making fonts.dir for updated directories." + for x in ${fontdirs} ; do + if [[ $verbose == 1 ]] ; then + echo "font_cache: ${x}" + fi + + # First, generate fonts.scale for scaleable fonts that might be there + ${X11DIR}/bin/mkfontscale \ + -a ${X11FONTDIR}/encodings/encodings.dir \ + -- ${x} + + # Next, generate fonts.dir + if [[ $verbose == 1 ]] ; then + ${X11DIR}/bin/mkfontdir \ + -e ${X11FONTDIR}/encodings \ + -e ${X11FONTDIR}/encodings/large \ + -- ${x} + else + ${X11DIR}/bin/mkfontdir \ + -e ${X11FONTDIR}/encodings \ + -e ${X11FONTDIR}/encodings/large \ + -- ${x} > /dev/null + fi + done + fi + IFS=$OIFS + + # Finally, update fontconfig's cache + echo "font_cache: Updating FC cache" + if [[ $system == 1 ]] ; then + HOME="$(echo ~root)" ${X11DIR}/bin/fc-cache \ + $([[ $force == 1 ]] && echo "-f -r") \ + $([[ $verbose == 1 ]] && echo "-v") + else + ${X11DIR}/bin/fc-cache \ + $([[ $force == 1 ]] && echo "-f -r") \ + $([[ $verbose == 1 ]] && echo "-v") + fi + echo "font_cache: Done" +} + +do_usage() { + echo "font_cache [options]" + echo " -f, --force : Force cache recreation" + echo " -n, --no-osxfonts : Just cache X11 font directories" + echo " (-n just pertains to XFont cache, not fontconfig)" + echo " -s, --system : Cache system font dirs instead of user dirs" + echo " -v, --verbose : Verbose Output" +} + +while [[ $# -gt 0 ]] ; do + case $1 in + -s|--system) system=1 ;; + -f|--force) force=1 ;; + -v|--verbose) verbose=1 ;; + -n|--no-osxfonts) osxfonts=0 ;; + --help) do_usage ; exit 0 ;; + *) do_usage ; exit 1 ;; + esac + shift +done + +setup_fontdirs Property changes on: trunk/dports/x11/xinit/files/font_cache.sh ___________________________________________________________________ Added: svn:executable + * Modified: trunk/dports/x11/xinit/files/tiger_support.patch =================================================================== --- trunk/dports/x11/xinit/files/tiger_support.patch 2008-12-03 19:01:28 UTC (rev 43021) +++ trunk/dports/x11/xinit/files/tiger_support.patch 2008-12-03 19:30:33 UTC (rev 43022) @@ -1,4 +1,4 @@ -diff --git a/Makefile.am b/Makefile.am +diff --git Makefile.am Makefile.am index 78ae154..0d831f3 100644 --- Makefile.am +++ Makefile.am @@ -12,7 +12,7 @@ xinitrc_DATA = xinitrc CLEANFILES = xinitrc startx $(appman_DATA) $(launchagents_DATA) -diff --git a/configure.ac b/configure.ac +diff --git configure.ac configure.ac index 2d09cad..86bd1f2 100644 --- configure.ac +++ configure.ac @@ -50,7 +50,7 @@ # Checks for pkg-config packages PKG_CHECK_MODULES(XINIT, x11) -diff --git a/org.x.startx.plist.cpp b/org.x.startx.plist.cpp +diff --git org.x.startx.plist.cpp org.x.startx.plist.cpp index 42c9f70..4bcedcf 100644 --- org.x.startx.plist.cpp +++ org.x.startx.plist.cpp @@ -62,7 +62,23 @@ + -diff --git a/privileged_startx/Makefile.am b/privileged_startx/Makefile.am +diff --git privileged_startx/20-font_cache.cpp privileged_startx/20-font_cache.cpp +index c13384b..6d43e10 100755 +--- privileged_startx/20-font_cache.cpp ++++ privileged_startx/20-font_cache.cpp +@@ -27,9 +27,9 @@ XCOMM promote the sale, use or other dealings in this Software without + XCOMM prior written authorization. + + if [ -x BINDIR/font_cache ] ; then +- BINDIR/font_cache & ++ BINDIR/font_cache -s & + elif [ -x BINDIR/font_cache.sh ] ; then + BINDIR/font_cache.sh -s & +-elif [ -x /usr/X11/bin/fc-cache ] ; then ++elif [ -x BINDIR/fc-cache ] ; then + BINDIR/fc-cache & + fi +diff --git privileged_startx/Makefile.am privileged_startx/Makefile.am index 6a143ca..2d68544 100644 --- privileged_startx/Makefile.am +++ privileged_startx/Makefile.am @@ -88,7 +104,7 @@ - mig -sheader privileged_startxServer.h privileged_startx.defs +$(BUILT_SOURCES): $(srcdir)/privileged_startx.defs + mig -sheader privileged_startxServer.h $(srcdir)/privileged_startx.defs -diff --git a/privileged_startx/client.c b/privileged_startx/client.c +diff --git privileged_startx/client.c privileged_startx/client.c index 2a24a70..a33dd02 100644 --- privileged_startx/client.c +++ privileged_startx/client.c @@ -113,7 +129,7 @@ exit(EXIT_FAILURE); } -diff --git a/privileged_startx/org.x.privileged_startx.plist.cpp b/privileged_startx/org.x.privileged_startx.plist.cpp +diff --git privileged_startx/org.x.privileged_startx.plist.cpp privileged_startx/org.x.privileged_startx.plist.cpp index e878dc3..7400cc4 100644 --- privileged_startx/org.x.privileged_startx.plist.cpp +++ privileged_startx/org.x.privileged_startx.plist.cpp @@ -149,7 +165,7 @@ +#endif -diff --git a/privileged_startx/server.c b/privileged_startx/server.c +diff --git privileged_startx/server.c privileged_startx/server.c index 7afd424..6dd4f2b 100644 --- privileged_startx/server.c +++ privileged_startx/server.c @@ -318,7 +334,7 @@ return NULL; } +#endif -diff --git a/startx.cpp b/startx.cpp +diff --git startx.cpp startx.cpp index 8ffdc70..fb23f18 100644 --- startx.cpp +++ startx.cpp @@ -485,7 +501,7 @@ fi fi -diff --git a/xinit.c b/xinit.c +diff --git xinit.c xinit.c index 523cfd5..d25de9d 100644 --- xinit.c +++ xinit.c -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Dec 3 11:52:06 2008 From: portindex at macports.org (portindex at macports.org) Date: Wed, 3 Dec 2008 11:52:06 -0800 (PST) Subject: [43023] trunk/dports/PortIndex Message-ID: <20081203195208.1DE1A8211CE@beta.macosforge.org> Revision: 43023 http://trac.macports.org/changeset/43023 Author: portindex at macports.org Date: 2008-12-03 11:52:06 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Total number of ports parsed: 5179 Ports successfully parsed: 5179 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-03 19:30:33 UTC (rev 43022) +++ trunk/dports/PortIndex 2008-12-03 19:52:06 UTC (rev 43023) @@ -1170,8 +1170,8 @@ variants universal portdir devel/gtk2hs description {Portable and native GUI library for Haskell} homepage http://www.haskell.org/gtk2hs epoch 0 platforms darwin name gtk2hs depends_lib {port:ghc port:gtk2 port:cairo port:librsvg port:libglade2 port:gtkglext port:gtksourceview} maintainers gwright at macports.org long_description {gtk2hs is a Haskell binding to GTK, a comprehensive C GUI library that is portable across many platforms.} version 0.9.13 categories {devel graphics} revision 0 gtkglext 324 variants {universal darwin_9} description {OpenGL Extension to GTK} portdir devel/gtkglext homepage http://sourceforge.net/projects/gtkglext/ epoch 0 depends_lib {port:gtk2 lib:libGL.1:XFree86} name gtkglext long_description {{OpenGL Extension to GTK}} maintainers jd at lifehertz.com categories devel version 1.2.0 revision 0 -gtkimageview 408 -variants universal depends_build port:pkgconfig portdir devel/gtkimageview description {GtkImageView is a simple image viewer widget for GTK.} homepage http://trac.bjourne.webfactional.com/ epoch 0 platforms darwin depends_lib port:gtk2 name gtkimageview maintainers {devans openmaintainer} long_description {{GtkImageView is a simple image viewer widget for GTK.}} version 1.6.2 categories devel revision 1 +gtkimageview 423 +variants universal depends_build {port:pkgconfig port:gtk-doc} portdir devel/gtkimageview description {GtkImageView is a simple image viewer widget for GTK.} homepage http://trac.bjourne.webfactional.com/ epoch 0 platforms darwin depends_lib port:gtk2 name gtkimageview maintainers {devans openmaintainer} long_description {{GtkImageView is a simple image viewer widget for GTK.}} version 1.6.3 categories devel revision 0 gvfs 1116 variants universal depends_build {port:pkgconfig port:intltool} portdir devel/gvfs description {The Gnome Virtual File System.} homepage http://www.gnome.org/ epoch 0 platforms darwin depends_lib {path:lib/pkgconfig/glib-2.0.pc:glib2 port:dbus port:gconf port:libsoup port:gettext port:libxml2} name gvfs maintainers nomaintainer long_description {gvfs is a userspace virtual filesystem designed to work with the i/o abstractions of gio (a new library available with glib). It installs several modules that are automatically used by applications using the APIs of libgio. The gvfs model differs from e.g. gnome-vfs in that filesystems must be mounted before they are used. There is a central daemon (gvfsd) that handles coordinting mounts, and then each mount is (typically) in its own daemon process (although mounts can share daemon process). gvfs comes with a set of backends, including trash support, sftp, smb, http, dav and others. There is a set of command line programs starting wi th gvfs- that lets you run commands (like cat, ls, stat, etc) on files in the gvfs.} version 1.0.2 categories devel revision 1 gwenhywfar 490 @@ -10091,7 +10091,7 @@ xglobe 827 variants universal portdir x11/xglobe description {XGlobe displays the earth as seen from space on your X desktop.} homepage http://www.cs.unc.edu/~scheuerm/xglobe/ epoch 0 platforms darwin name xglobe depends_lib {lib:libqt-mt.3:qt3 lib:libX11.6:XFree86} maintainers nomaintainer long_description {XGlobe displays the earth as seen from space on your X desktop, similar to xearth by Kirk Lauritz Johnson. The image of the globe is updated at regular intervals. XGlobe uses a world map image which is mapped to the globe. With a good map this can look very nice. It is possible to mark locations on the globe. This port includes the work done by Mark Espie from OpenBSD, that has not yet be included upstream. Also there is a markerfile with the positions of the OpenDarwin developers.} version 0.5p2 categories x11 revision 0 xinit 393 -variants universal depends_build {port:pkgconfig port:xorg-util-macros} portdir x11/xinit description {X11 startup script processor} homepage http://www.x.org epoch 0 platforms darwin depends_lib lib:libX11.6:xorg-libX11 name xinit maintainers jeremyhu long_description {xinit is responsible for configuring the initial environment when X11 starts up.} version 1.1.0 categories x11 revision 0 +variants universal depends_build {port:pkgconfig port:xorg-util-macros} portdir x11/xinit description {X11 startup script processor} homepage http://www.x.org epoch 0 platforms darwin depends_lib lib:libX11.6:xorg-libX11 name xinit maintainers jeremyhu long_description {xinit is responsible for configuring the initial environment when X11 starts up.} version 1.1.0 categories x11 revision 1 xmove 422 variants universal description {An X11 pseudoserver for moving windows between displays} portdir x11/xmove homepage ftp://ftp.cs.columbia.edu/pub/xmove/ epoch 0 platforms darwin name xmove long_description {xmove lets you change which display an X Window System program renders to - this could be a different monitor or even a different machine.} maintainers shadow at dementia.org categories x11 version 2.0beta2 revision 0 xnee 456 @@ -10126,8 +10126,8 @@ portdir x11/xorg-kbproto description {X.org kbproto} platforms darwin name xorg-kbproto version 1.0.3 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for Xkb extension to X11} xorg-libAppleWM 406 variants universal depends_build {port:pkgconfig port:xorg-applewmproto port:xorg-xproto port:xorg-xextproto} portdir x11/xorg-libAppleWM description {X.org libAppleWM} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libX11 port:xorg-libXext} name xorg-libAppleWM maintainers jeremyhu long_description {{X.org libAppleWM}} version 1.0.0 categories {x11 devel} revision 0 -xorg-libX11 638 -variants {universal x11_xcb} depends_build {port:pkgconfig port:xorg-bigreqsproto port:xorg-xproto port:xorg-xtrans port:xorg-xextproto port:xorg-xf86bigfontproto port:xorg-inputproto port:xorg-kbproto} variant_desc {x11_xcb {use XCB for low-level protocol implementation}} portdir x11/xorg-libX11 description {X.org libX11} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXdmcp port:xorg-libXau} name xorg-libX11 maintainers jeremyhu long_description {libX11 is the main library used by X Window System applications to communicate with the X server.} categories {x11 devel} version 1.1.5 revision 1 +xorg-libX11 660 +variants {universal x11_xcb} depends_build {port:pkgconfig port:xorg-bigreqsproto port:xorg-xcmiscproto port:xorg-xproto port:xorg-xtrans port:xorg-xextproto port:xorg-xf86bigfontproto port:xorg-inputproto port:xorg-kbproto} variant_desc {x11_xcb {use XCB for low-level protocol implementation}} portdir x11/xorg-libX11 description {X.org libX11} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXdmcp port:xorg-libXau} name xorg-libX11 maintainers jeremyhu long_description {libX11 is the main library used by X Window System applications to communicate with the X server.} categories {x11 devel} version 1.1.5 revision 1 xorg-libXau 352 variants universal portdir x11/xorg-libXau description {X.org libXau} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXau depends_lib {port:xorg-util-macros port:xorg-libpthread-stubs port:xorg-xproto} maintainers bbyer at macports.org long_description {X Authorization Routines library} version 1.0.3 categories devel revision 0 xorg-libXdmcp 333 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 12:58:44 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 12:58:44 -0800 (PST) Subject: [43024] trunk/dports/x11/xorg-xcb-proto/Portfile Message-ID: <20081203205844.958AC821E00@beta.macosforge.org> Revision: 43024 http://trac.macports.org/changeset/43024 Author: jeremyhu at macports.org Date: 2008-12-03 12:58:44 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Added missing dependencies on python and libxml2 - bug #17499 Modified Paths: -------------- trunk/dports/x11/xorg-xcb-proto/Portfile Modified: trunk/dports/x11/xorg-xcb-proto/Portfile =================================================================== --- trunk/dports/x11/xorg-xcb-proto/Portfile 2008-12-03 19:52:06 UTC (rev 43023) +++ trunk/dports/x11/xorg-xcb-proto/Portfile 2008-12-03 20:58:44 UTC (rev 43024) @@ -19,3 +19,32 @@ use_bzip2 yes universal_variant no + +set pyversion 2.6 +depends_run port:libxml2 \ + port:python[strsed ${pyversion} {g/[.]//}] +configure.env PYTHON=${prefix}/bin/python${pyversion} + +variant python25 description {Use python 2.5 for xcbgen} { + depends_run-delete port:python[strsed ${pyversion} {g/[.]//}] + configure.env-delete PYTHON=${prefix}/bin/python${pyversion} + + set pyversion 2.5 + + depends_lib-append port:python[strsed ${pyversion} {g/[.]//}] + configure.env-append PYTHON=${prefix}/bin/python${pyversion} +} + +variant python30 description {Use python 3.0 for xcbgen} { + depends_run-delete port:python[strsed ${pyversion} {g/[.]//}] + configure.env-delete PYTHON=${prefix}/bin/python${pyversion} + + set pyversion 3.0 + + depends_lib-append port:python[strsed ${pyversion} {g/[.]//}] + configure.env-append PYTHON=${prefix}/bin/python${pyversion} +} + +livecheck.check regex +livecheck.url ${master_sites}?C=M&O=D +livecheck.regex xcb-proto-(\\d+(?:\\.\\d+)*) -------------- next part -------------- An HTML attachment was scrubbed... URL: From simon at macports.org Wed Dec 3 13:02:50 2008 From: simon at macports.org (simon at macports.org) Date: Wed, 3 Dec 2008 13:02:50 -0800 (PST) Subject: [43025] trunk/dports/shells Message-ID: <20081203210250.5CF2F821F14@beta.macosforge.org> Revision: 43025 http://trac.macports.org/changeset/43025 Author: simon at macports.org Date: 2008-12-03 13:02:50 -0800 (Wed, 03 Dec 2008) Log Message: ----------- shells/zsh & shells/zsh-devel: Add gdbm dependancy as it's used when available. Modified Paths: -------------- trunk/dports/shells/zsh/Portfile trunk/dports/shells/zsh-devel/Portfile Modified: trunk/dports/shells/zsh/Portfile =================================================================== --- trunk/dports/shells/zsh/Portfile 2008-12-03 20:58:44 UTC (rev 43024) +++ trunk/dports/shells/zsh/Portfile 2008-12-03 21:02:50 UTC (rev 43025) @@ -30,7 +30,7 @@ md5 a9d8678c5acf20d78e8c300f107b708b \ sha1 64c598cd48b78dff9d29341ea0cd904e7aa49541 \ rmd160 454339205c78393cbb9460aa10f37fa341a40b59 -depends_lib port:libiconv port:ncurses +depends_lib port:libiconv port:ncurses port:gdbm configure.args --enable-libs="-lncurses" platform darwin 8 { Modified: trunk/dports/shells/zsh-devel/Portfile =================================================================== --- trunk/dports/shells/zsh-devel/Portfile 2008-12-03 20:58:44 UTC (rev 43024) +++ trunk/dports/shells/zsh-devel/Portfile 2008-12-03 21:02:50 UTC (rev 43025) @@ -54,7 +54,8 @@ rmd160 76e4ca78fa41af3c779c553298413334c0a6a7c5 depends_lib port:libiconv \ - port:ncursesw + port:ncursesw \ + port:gdbm configure.args --mandir=${prefix}/share/man \ --infodir=${prefix}/share/info \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From simon at macports.org Wed Dec 3 13:03:10 2008 From: simon at macports.org (simon at macports.org) Date: Wed, 3 Dec 2008 13:03:10 -0800 (PST) Subject: [43026] trunk/dports/devel/git-core/Portfile Message-ID: <20081203210310.8EBC7821FDC@beta.macosforge.org> Revision: 43026 http://trac.macports.org/changeset/43026 Author: simon at macports.org Date: 2008-12-03 13:03:10 -0800 (Wed, 03 Dec 2008) Log Message: ----------- devel/git-core: Add missing dependency to variant svn. Modified Paths: -------------- trunk/dports/devel/git-core/Portfile Modified: trunk/dports/devel/git-core/Portfile =================================================================== --- trunk/dports/devel/git-core/Portfile 2008-12-03 21:02:50 UTC (rev 43025) +++ trunk/dports/devel/git-core/Portfile 2008-12-03 21:03:10 UTC (rev 43026) @@ -100,7 +100,7 @@ } variant svn description {Bi-directional subversion repository support} { - depends_run-append port:subversion port:p5-libwww-perl port:p5-svn-simple port:p5-term-readkey + depends_run-append port:subversion port:p5-libwww-perl port:p5-svn-simple port:p5-term-readkey port:unixODBC } variant bash_completion description {Bash completion support} { -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 13:06:43 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 13:06:43 -0800 (PST) Subject: [43027] trunk/dports/graphics/tgif/Portfile Message-ID: <20081203210643.9EAA88220BE@beta.macosforge.org> Revision: 43027 http://trac.macports.org/changeset/43027 Author: jeremyhu at macports.org Date: 2008-12-03 13:06:43 -0800 (Wed, 03 Dec 2008) Log Message: ----------- tgif: Fixed dependencies. Maintainer timeout. Bug #17345 Modified Paths: -------------- trunk/dports/graphics/tgif/Portfile Modified: trunk/dports/graphics/tgif/Portfile =================================================================== --- trunk/dports/graphics/tgif/Portfile 2008-12-03 21:03:10 UTC (rev 43026) +++ trunk/dports/graphics/tgif/Portfile 2008-12-03 21:06:43 UTC (rev 43027) @@ -5,7 +5,7 @@ version 4.1.42 revision 1 description Basic vector drawing package -categories x11 graphics +categories graphics x11 maintainers mdales at mac.com homepage http://bourbon.usc.edu:8001/tgif/ platforms darwin @@ -17,7 +17,13 @@ post-patch { reinplace "s|PREFIX|${prefix}|g" "${worksrcpath}/Tgif.tmpl" } +depends_build bin:xmkmf:imake + +depends_lib lib:libXext.6:xorg-libXext \ + lib:libX11.6:xorg-libX11 + destroot.args INSTALLFLAGS=-c destroot.target install install.man +destroot.destdir DESTDIR=${destroot} BINDIR=${prefix}/bin # vim: ts=8 sw=8 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 13:14:49 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 13:14:49 -0800 (PST) Subject: [43028] trunk/dports/x11/vtwm/Portfile Message-ID: <20081203211449.ABCCE822353@beta.macosforge.org> Revision: 43028 http://trac.macports.org/changeset/43028 Author: jeremyhu at macports.org Date: 2008-12-03 13:14:48 -0800 (Wed, 03 Dec 2008) Log Message: ----------- vtwm: Fixed dependencies, bumped to a version that had an upstream tarball, install to correct prefix. Maintainer timeout. Bug #17345 Modified Paths: -------------- trunk/dports/x11/vtwm/Portfile Modified: trunk/dports/x11/vtwm/Portfile =================================================================== --- trunk/dports/x11/vtwm/Portfile 2008-12-03 21:06:43 UTC (rev 43027) +++ trunk/dports/x11/vtwm/Portfile 2008-12-03 21:14:48 UTC (rev 43028) @@ -2,14 +2,30 @@ PortSystem 1.0 name vtwm -version 5.4.6a +version 5.4.6b categories x11 maintainers mdales at mac.com description Twm with a virtual desktop and optional Motif-like features platforms darwin master_sites ftp://ftp.visi.com/users/hawkeyd/X/ -checksums md5 92ffb32732a8736409b40b261ce94414 -prefix ${x11prefix} +checksums md5 e6116c0d7ca973488b39e8964e4153f0 \ + sha1 5d983007a5b4b0be6796232efe97527b3af16429 \ + rmd160 a72c51ad3a4e80b1d9ba9bdaa7ea3ea8a89aa3d0 use_xmkmf yes patchfiles patch-gram.y +depends_build bin:xmkmf:imake + +depends_lib lib:libX11.6:xorg-libX11 + +build.target-append DESTDIR=${destroot} \ + BINDIR=${prefix}/bin \ + LIBDIR=${prefix}/lib \ + MANDIR=${prefix}/share/man + +destroot.destdir DESTDIR=${destroot} \ + BINDIR=${prefix}/bin \ + LIBDIR=${prefix}/lib \ + MANDIR=${prefix}/share/man + + -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Wed Dec 3 13:29:16 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Wed, 3 Dec 2008 13:29:16 -0800 Subject: propchange - r43025 svn:log Message-ID: <20081203213026.BFAC2420002@relay12.apple.com> Author: ryandesign at macports.org (original author: simon at macports.org) Revision: 43025 Property Name: svn:log --- /Volumes/data/admin/var/tmp/revprops/pre-43025-ryandesign at macports.org 2008-12-03 13:29:14.000000000 -0800 +++ /Volumes/data/admin/var/tmp/revprops/post-43025-ryandesign at macports.org 2008-12-03 13:29:15.000000000 -0800 @@ -1 +1 @@ -shells/zsh & shells/zsh-devel: Add gdbm dependancy as it's used when available. +shells/zsh & shells/zsh-devel: Add gdbm dependency as it's used when available. From jeremyhu at macports.org Wed Dec 3 13:30:44 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 13:30:44 -0800 (PST) Subject: [43029] trunk/dports/x11/xpm/Portfile Message-ID: <20081203213044.7B8F08228A2@beta.macosforge.org> Revision: 43029 http://trac.macports.org/changeset/43029 Author: jeremyhu at macports.org Date: 2008-12-03 13:30:44 -0800 (Wed, 03 Dec 2008) Log Message: ----------- xpm: Version bump and build universal Modified Paths: -------------- trunk/dports/x11/xpm/Portfile Modified: trunk/dports/x11/xpm/Portfile =================================================================== --- trunk/dports/x11/xpm/Portfile 2008-12-03 21:14:48 UTC (rev 43028) +++ trunk/dports/x11/xpm/Portfile 2008-12-03 21:30:44 UTC (rev 43029) @@ -3,23 +3,42 @@ PortSystem 1.0 name xpm -version 3.4k +version 3.5.7 +categories x11 devel graphics +maintainers jeremyhu description The X Pixmap Library - +homepage http://www.x.org +platforms darwin macosx long_description XPM (X PixMap) is a format for storing/retrieving X pixmaps to/from files. It is used by a large number of common X applications and has become something of a de-facto standard. +master_sites ${homepage}/pub/individual/lib/ -maintainers nomaintainer -categories x11 graphics -platforms darwin -master_sites freebsd \ - xcontrib:libraries -checksums md5 dd7c6df259912646671ab8cbd3fcafd7 -depends_build bin:xmkmf:imake -use_xmkmf yes +distname libXpm-${version} +checksums md5 cd15ee542d9f515538b4462a6f79d977 \ + sha1 215208091051530867efae0a4c1cedb7385d5f0e \ + rmd160 6bd355cb5f011b271b177d86db7f9a4e9d885ed3 +use_bzip2 yes +use_parallel_build yes -destroot.target-append install.man +depends_build port:pkgconfig \ + port:xorg-xproto -destroot.destdir-append \ - BINDIR=${prefix}/bin \ - MANDIR=${prefix}/share/man +depends_lib lib:libX11:xorg-libX11 +# Panther and Tiger actually require the newer libX11 to build, so +# force them to pull it in. We should revert this to ALWAYS force +# this to pull in port:xorg-libX11 once we convert other ports to use +# lib:libXrender:xrender instead of port:xrender + +platform darwin 7 { + depends_lib-delete lib:libX11:xorg-libX11 + depends_lib-append port:xorg-libX11 +} + +platform darwin 8 { + depends_lib-delete lib:libX11:xorg-libX11 + depends_lib-append port:xorg-libX11 +} + +livecheck.check regex +livecheck.url [lindex ${master_sites} 0]?C=M&O=D +livecheck.regex libXpm-(\\d+(?:\\.\\d+)*) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 13:35:18 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 13:35:18 -0800 (PST) Subject: [43030] trunk/dports/x11 Message-ID: <20081203213518.806058229D0@beta.macosforge.org> Revision: 43030 http://trac.macports.org/changeset/43030 Author: jeremyhu at macports.org Date: 2008-12-03 13:35:18 -0800 (Wed, 03 Dec 2008) Log Message: ----------- New port: xorg-libXmu Added Paths: ----------- trunk/dports/x11/xorg-libXmu/ trunk/dports/x11/xorg-libXmu/Portfile Added: trunk/dports/x11/xorg-libXmu/Portfile =================================================================== --- trunk/dports/x11/xorg-libXmu/Portfile (rev 0) +++ trunk/dports/x11/xorg-libXmu/Portfile 2008-12-03 21:35:18 UTC (rev 43030) @@ -0,0 +1,34 @@ +# $Id$ + +PortSystem 1.0 + +name xorg-libXmu +version 1.0.4 +categories x11 devel +maintainers jeremyhu +description X.org libXmu +homepage http://www.x.org +platforms darwin macosx +long_description X.org Xmu library +master_sites ${homepage}/pub/individual/lib/ + +distname libXmu-${version} +checksums md5 fb372a5f3ab42b5ba16d7af4d833a0cb \ + sha1 e2ecbce02184efd8899a34554575e1f3b6815295 \ + rmd160 d1c1b185842456f65766df89f6a370f0d679ad29 +use_bzip2 yes +use_parallel_build yes + +depends_build port:pkgconfig \ + port:xorg-xproto \ + port:xorg-xextproto + +depends_lib lib:libX11:xorg-libX11 \ + lib:libX11:xorg-libXext \ + lib:libX11:xorg-libXt + +livecheck.check regex +livecheck.url [lindex ${master_sites} 0]?C=M&O=D +livecheck.regex libXpm-(\\d+(?:\\.\\d+)*) + + Property changes on: trunk/dports/x11/xorg-libXmu/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 13:36:26 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 13:36:26 -0800 (PST) Subject: [43031] trunk/dports/x11/vtwm/Portfile Message-ID: <20081203213626.6D980822ABC@beta.macosforge.org> Revision: 43031 http://trac.macports.org/changeset/43031 Author: jeremyhu at macports.org Date: 2008-12-03 13:36:26 -0800 (Wed, 03 Dec 2008) Log Message: ----------- vtwm: Added missing dependencies and make lint happy. Modified Paths: -------------- trunk/dports/x11/vtwm/Portfile Modified: trunk/dports/x11/vtwm/Portfile =================================================================== --- trunk/dports/x11/vtwm/Portfile 2008-12-03 21:35:18 UTC (rev 43030) +++ trunk/dports/x11/vtwm/Portfile 2008-12-03 21:36:26 UTC (rev 43031) @@ -6,8 +6,10 @@ categories x11 maintainers mdales at mac.com description Twm with a virtual desktop and optional Motif-like features +long_description ${description} platforms darwin -master_sites ftp://ftp.visi.com/users/hawkeyd/X/ +homepage ftp://ftp.visi.com/users/hawkeyd/X/ +master_sites ${homepage} checksums md5 e6116c0d7ca973488b39e8964e4153f0 \ sha1 5d983007a5b4b0be6796232efe97527b3af16429 \ rmd160 a72c51ad3a4e80b1d9ba9bdaa7ea3ea8a89aa3d0 @@ -16,7 +18,13 @@ depends_build bin:xmkmf:imake -depends_lib lib:libX11.6:xorg-libX11 +depends_lib lib:libX11.6:xorg-libX11 \ + lib:libXt.6:xorg-libXt \ + lib:libSM.6:xorg-libsm \ + lib:libICE.6:xorg-libice \ + lib:libXext.6:xorg-libXext \ + lib:libXpm.4:xpm \ + lib:libXmu.6:xorg-libXmu build.target-append DESTDIR=${destroot} \ BINDIR=${prefix}/bin \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Wed Dec 3 13:44:57 2008 From: blb at macports.org (blb at macports.org) Date: Wed, 3 Dec 2008 13:44:57 -0800 (PST) Subject: [43032] trunk/dports/x11/gobby/Portfile Message-ID: <20081203214457.6DF5B822C47@beta.macosforge.org> Revision: 43032 http://trac.macports.org/changeset/43032 Author: blb at macports.org Date: 2008-12-03 13:44:57 -0800 (Wed, 03 Dec 2008) Log Message: ----------- x11/gobby - needs v2 of gtksourceview Modified Paths: -------------- trunk/dports/x11/gobby/Portfile Modified: trunk/dports/x11/gobby/Portfile =================================================================== --- trunk/dports/x11/gobby/Portfile 2008-12-03 21:36:26 UTC (rev 43031) +++ trunk/dports/x11/gobby/Portfile 2008-12-03 21:44:57 UTC (rev 43032) @@ -27,7 +27,7 @@ port:glibmm \ port:libxmlxx2 \ port:gtkmm \ - port:gtksourceview \ + port:gtksourceview2 \ port:libgnomecups \ port:net6 \ port:obby -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Wed Dec 3 13:49:23 2008 From: blb at macports.org (blb at macports.org) Date: Wed, 3 Dec 2008 13:49:23 -0800 (PST) Subject: [43033] trunk/dports/sysutils/MacPorts/Portfile Message-ID: <20081203214923.23393822D3A@beta.macosforge.org> Revision: 43033 http://trac.macports.org/changeset/43033 Author: blb at macports.org Date: 2008-12-03 13:49:22 -0800 (Wed, 03 Dec 2008) Log Message: ----------- sysutils/MacPorts - whitespace changes Modified Paths: -------------- trunk/dports/sysutils/MacPorts/Portfile Modified: trunk/dports/sysutils/MacPorts/Portfile =================================================================== --- trunk/dports/sysutils/MacPorts/Portfile 2008-12-03 21:44:57 UTC (rev 43032) +++ trunk/dports/sysutils/MacPorts/Portfile 2008-12-03 21:49:22 UTC (rev 43033) @@ -1,35 +1,36 @@ # $Id$ -PortSystem 1.0 +PortSystem 1.0 -name MacPorts -version 1.6.0 +name MacPorts +version 1.6.0 -categories sysutils -platforms darwin freebsd -maintainers macports-mgr at lists.macosforge.org +categories sysutils +platforms darwin freebsd +maintainers macports-mgr at lists.macosforge.org -description The MacPorts Infrastructure -long_description MacPorts provides the infrastructure that allows easy installation and management \ - of freely available software on Mac OS X 10.3 or newer systems. +description The MacPorts Infrastructure +long_description \ + MacPorts provides the infrastructure that allows easy installation and \ + management of freely available software on Mac OS X 10.3 or newer systems. -homepage http://www.macports.org -master_sites macports:${distname} +homepage http://www.macports.org +master_sites macports:${distname} -checksums md5 67e61ebf25389ccee8ab09b859397c83 \ - sha1 e47667954c265ff6dc73a3330085cbe14246b011 \ - rmd160 3cdc362a8f7c9ec9ba2e14c57d4ad45e16d35c04 +checksums md5 67e61ebf25389ccee8ab09b859397c83 \ + sha1 e47667954c265ff6dc73a3330085cbe14246b011 \ + rmd160 3cdc362a8f7c9ec9ba2e14c57d4ad45e16d35c04 -# Readline is disabled by default to avoid support issues with people who have a readline in -# /usr/local. Since this portfile is presumably used in a clean environment, enable it here. -configure.args --enable-readline +# Readline is disabled by default to avoid support issues with people who +# have a readline in /usr/local. Since this portfile is presumably used in a +# clean environment, enable it here. +configure.args --enable-readline # Some of MacPort's default flags don't play well when we're building # MacPorts itself: nuke them configure.cppflags configure.ldflags - post-pkg { if {[file exists ${workpath}/${name}-${version}.pkg/Contents/Resources/English.lproj]} { set resources ${workpath}/${name}-${version}.pkg/Contents/Resources/English.lproj @@ -240,3 +241,4 @@ ${destroot}${prefix}/share/nls/zh_TW.Big5 \ ${destroot}${prefix}/var/macports/distfiles \ ${destroot}${prefix}/var/macports/receipts + -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Dec 3 13:52:08 2008 From: portindex at macports.org (portindex at macports.org) Date: Wed, 3 Dec 2008 13:52:08 -0800 (PST) Subject: [43034] trunk/dports/PortIndex Message-ID: <20081203215210.48EA3822E47@beta.macosforge.org> Revision: 43034 http://trac.macports.org/changeset/43034 Author: portindex at macports.org Date: 2008-12-03 13:52:07 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Total number of ports parsed: 5180 Ports successfully parsed: 5180 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-03 21:49:22 UTC (rev 43033) +++ trunk/dports/PortIndex 2008-12-03 21:52:07 UTC (rev 43034) @@ -3004,8 +3004,8 @@ variants universal portdir graphics/swftools description {SWF manipulation and generation tools} homepage http://www.swftools.org epoch 0 platforms darwin name swftools depends_lib {port:jpeg port:openjpeg port:freetype port:lame path:include/gif_lib.h:giflib port:python25} long_description {{SWF manipulation and generation tools}} maintainers nomaintainer version 0.8.1 categories graphics revision 0 t1utils 691 variants universal description {Command line tools for dealing with Type 1 fonts} portdir graphics/t1utils homepage http://www.lcdf.org/~eddietwo/type/ epoch 0 platforms darwin name t1utils long_description {t1utils is a collection of simple type-1 font manipulation programs. Together, they allow you to convert between PFA (ASCII) and PFB (binary) formats, disassemble PFA or PFB files into human-readable form, reassemble them into PFA or PFB format. Additionally you can extract font resources from a Macintosh font file (ATM/Laserwriter), or create a Macintosh Type 1 font file from a PFA or PFB font.} maintainers nomaintainer categories {graphics print fonts} version 1.32 revision 0 -tgif 241 -portdir graphics/tgif variants universal description {Basic vector drawing package} platforms darwin name tgif version 4.1.42 categories {x11 graphics} homepage http://bourbon.usc.edu:8001/tgif/ revision 1 epoch 0 maintainers mdales at mac.com +tgif 337 +variants universal depends_build bin:xmkmf:imake portdir graphics/tgif description {Basic vector drawing package} homepage http://bourbon.usc.edu:8001/tgif/ epoch 0 platforms darwin name tgif depends_lib {lib:libXext.6:xorg-libXext lib:libX11.6:xorg-libX11} maintainers mdales at mac.com version 4.1.42 categories {graphics x11} revision 1 tiff 979 variants {universal macosx darwin_9} portdir graphics/tiff description {Library and tools for dealing with Tag Image File Format} homepage http://www.remotesensing.org/libtiff epoch 0 platforms darwin name tiff depends_lib {port:jpeg port:zlib} maintainers waqar at macports.org long_description {This software provides support for the Tag Image File Format (TIFF), a widely used format for storing image data. Included in this software distribution is a library, libtiff, for reading and writing TIFF, a small collection of tools for doing simple manipulations of TIFF images on UNIX systems, documentation on the library and tools. A small assortment of TIFF-related software for UNIX that has been contributed by others is also included. The library is capable of dealing with images that are written to follow the 5.0 or 6.0 TIFF spec. There is also considerable support for some of the more esoteric portions of the 6.0 TIFF spec.} version 3.8.2 categories graphics revision 2 twain-sane 958 @@ -8572,10 +8572,10 @@ variants universal description {sudo shell} portdir shells/sudosh homepage http://sourceforge.net/projects/sudosh/ epoch 0 platforms darwin name sudosh long_description {Sudosh provides a logged root shell that can be used for auditing. It works just like a VCR, records the root shell session and offers real-time playback. Sudosh is designed to be used with sudo in an enterprise environment.} maintainers nomaintainer categories shells version 1.6.3 revision 0 tcsh 505 variants universal portdir shells/tcsh description {C shell with file name completion and command line editing} homepage http://www.tcsh.org/Home epoch 0 platforms darwin name tcsh depends_lib {port:libiconv port:ncurses} maintainers waqar at macports.org long_description {Tcsh is a version of the Berkeley C-Shell, with the addition of: a command line editor, command and file name completion, listing, etc. and a bunch of small additions to the shell itself.} version 6.15.00 categories shells revision 0 -zsh 830 -variants {universal darwin_8 dp_completion doc} variant_desc {dp_completion {Include automatic completion of MacPorts commands} doc {Install documentation}} portdir shells/zsh description {Zsh is a UNIX command interpreter (shell)} homepage http://www.zsh.org epoch 0 platforms darwin name zsh depends_lib {port:libiconv port:ncurses} maintainers {nox openmaintainer} long_description {Zsh is a UNIX command interpreter (shell) which of the standard shells most resembles the Korn shell (ksh), although it is not completely compatible. It includes enhancements of many types, notably in the command-line editor, options for customising its behaviour, filename globbing, features to make C-shell (csh) users feel more at home and extra features drawn from tcsh (another `custom' shell).} version 4.2.7 categories shells revision 0 -zsh-devel 961 -variants {universal darwin_8 mp_completion pcre doc examples} variant_desc {mp_completion {Install port(1) completion file} pcre {Add regular expressions support in builtin functions through PCRE} doc {Install extra documentation} examples {Install configuration examples}} portdir shells/zsh-devel description {Zsh is a UNIX command interpreter (shell)} homepage http://www.zsh.org/ epoch 0 platforms darwin name zsh-devel depends_lib {port:libiconv port:ncursesw} maintainers {nox openmaintainer} long_description {Zsh is a UNIX command interpreter (shell) which of the standard shells most resembles the Korn shell (ksh), although it is not completely compatible. It includes enhancements of many types, notably in the command-line editor, options for customising its behaviour, filename globbing, features to make C-shell (csh) users feel more at home and extra features drawn from tcsh (another `custom' shell).} version 4.3.9 categories shells revision 0 +zsh 840 +variants {universal darwin_8 dp_completion doc} variant_desc {dp_completion {Include automatic completion of MacPorts commands} doc {Install documentation}} portdir shells/zsh description {Zsh is a UNIX command interpreter (shell)} homepage http://www.zsh.org epoch 0 platforms darwin name zsh depends_lib {port:libiconv port:ncurses port:gdbm} maintainers {nox openmaintainer} long_description {Zsh is a UNIX command interpreter (shell) which of the standard shells most resembles the Korn shell (ksh), although it is not completely compatible. It includes enhancements of many types, notably in the command-line editor, options for customising its behaviour, filename globbing, features to make C-shell (csh) users feel more at home and extra features drawn from tcsh (another `custom' shell).} version 4.2.7 categories shells revision 0 +zsh-devel 971 +variants {universal darwin_8 mp_completion pcre doc examples} variant_desc {mp_completion {Install port(1) completion file} pcre {Add regular expressions support in builtin functions through PCRE} doc {Install extra documentation} examples {Install configuration examples}} portdir shells/zsh-devel description {Zsh is a UNIX command interpreter (shell)} homepage http://www.zsh.org/ epoch 0 platforms darwin name zsh-devel depends_lib {port:libiconv port:ncursesw port:gdbm} maintainers {nox openmaintainer} long_description {Zsh is a UNIX command interpreter (shell) which of the standard shells most resembles the Korn shell (ksh), although it is not completely compatible. It includes enhancements of many types, notably in the command-line editor, options for customising its behaviour, filename globbing, features to make C-shell (csh) users feel more at home and extra features drawn from tcsh (another `custom' shell).} version 4.3.9 categories shells revision 0 FDclone 685 variants {universal nojpnmes emacs vim lv less jless autosort} variant_desc {nojpnmes {Do not show Japanese message} emacs {Use emacs as default editor} vim {Use vim as default editor} lv {Use lv as default pager} less {Use less as default pager} jless {Use jless as default pager} autosort {Sort files alphabetically automatically}} portdir sysutils/FDclone description {File & Directory Maintenance Tool} homepage http://hp.vector.co.jp/authors/VA012337/soft/fd/index.html epoch 0 platforms darwin name FDclone depends_lib port:ncurses maintainers {takanori openmaintainer} long_description {{File & Directory Maintenance Tool}} version 3.00d categories {sysutils shells} revision 0 MacPorts 516 @@ -9854,8 +9854,8 @@ variants {universal docs} depends_build port:pkgconfig portdir x11/gksu description {Graphical frontend to su and sudo} homepage http://www.nongnu.org/gksu/ epoch 0 platforms darwin name gksu depends_lib {port:gtk2 port:gnome-keyring port:gconf port:libgksu12 port:libgksuui10} maintainers nomaintainer long_description {Gtk+ frontend to su and sudo. It supports login shells and preserving environment when acting as a su frontend. It is useful to menu items or other graphical programs that need to ask a user's password to run another program as another user.} version 1.3.7 categories {x11 sysutils} revision 0 glui 396 variants universal description {A GLUT-based C++ user interface library.} portdir x11/glui homepage http://glui.sourceforge.net/ epoch 0 platforms darwin name glui long_description {GLUI is a GLUT-based C++ user interface library which provides controls such as buttons, checkboxes, radio buttons, and spinners to OpenGL applications.} maintainers mcalhoun categories x11 version 2.36 revision 1 -gobby 650 -variants universal depends_build port:pkgconfig portdir x11/gobby description {Realtime collaborative editor} homepage http://gobby.0x539.de/ epoch 0 platforms {darwin freebsd} depends_lib {path:lib/pkgconfig/glib-2.0.pc:glib2 port:gtk2 port:glibmm port:libxmlxx2 port:gtkmm port:gtksourceview port:libgnomecups port:net6 port:obby} name gobby maintainers nomaintainer long_description {Gobby is a free collaborative editor which enables you to edit files simultaneously with other users over a network. It supports multiple documents in one session and is portable to both Windows and POSIX platforms.} version 0.4.8 categories {x11 net} revision 0 +gobby 651 +variants universal depends_build port:pkgconfig portdir x11/gobby description {Realtime collaborative editor} homepage http://gobby.0x539.de/ epoch 0 platforms {darwin freebsd} depends_lib {path:lib/pkgconfig/glib-2.0.pc:glib2 port:gtk2 port:glibmm port:libxmlxx2 port:gtkmm port:gtksourceview2 port:libgnomecups port:net6 port:obby} name gobby maintainers nomaintainer long_description {Gobby is a free collaborative editor which enables you to edit files simultaneously with other users over a network. It supports multiple documents in one session and is portable to both Windows and POSIX platforms.} version 0.4.8 categories {x11 net} revision 0 grace 524 variants {universal netcdf} variant_desc {netcdf {Support for NetCDF data files}} portdir x11/grace description {WYSIWYG tool to make two-dimensional plots of numerical data} homepage http://plasma-gate.weizmann.ac.il/Grace/ epoch 0 platforms darwin name grace depends_lib {lib:libX11.6:XFree86 port:openmotif port:libpng port:pdflib port:jpeg port:zlib} maintainers nomaintainer long_description {{WYSIWYG tool to make two-dimensional plots of numerical data}} version 5.1.22 categories {x11 math science print} revision 1 gtimelog 445 @@ -10040,8 +10040,8 @@ description {Cyrillized free URW fonts} portdir x11/urw-fonts homepage ftp://ftp.gnome.ru/fonts/urw/release/ epoch 0 depends_run port:fontconfig platforms darwin name urw-fonts maintainers {takanori openmaintainer} long_description {These fonts were made from the free URW fonts distributed with ghostcript. There are NO changes in the latin part of them (I hope). Cyrillic glyphs were added by copying suitable latin ones and painting oulines of unique cyrillic glyphs in same style as the others.} version 1.0.7pre44 categories {x11 fonts} revision 0 vnc 538 variants {universal no_server beta} portdir x11/vnc description {Remote display system for X11 applications} homepage http://www.realvnc.com/ depends_run bin:perl:perl5.8 epoch 0 platforms darwin name vnc depends_lib {lib:libX11.6:XFree86 lib:libz.1:zlib} maintainers nomaintainer long_description {Creates a virtual X11 windowing environment that can be viewed not only on the machine where it is running, but from anywhere on the Internet and from a wide variety of machine architectures.} version 3.3.7 categories {x11 vnc} revision 2 -vtwm 213 -portdir x11/vtwm variants universal description {Twm with a virtual desktop and optional Motif-like features} platforms darwin name vtwm version 5.4.6a categories x11 revision 0 epoch 0 maintainers mdales at mac.com +vtwm 548 +variants universal depends_build bin:xmkmf:imake portdir x11/vtwm description {Twm with a virtual desktop and optional Motif-like features} homepage ftp://ftp.visi.com/users/hawkeyd/X/ epoch 0 platforms darwin depends_lib {lib:libX11.6:xorg-libX11 lib:libXt.6:xorg-libXt lib:libSM.6:xorg-libsm lib:libICE.6:xorg-libice lib:libXext.6:xorg-libXext lib:libXpm.4:xpm lib:libXmu.6:xorg-libXmu} name vtwm maintainers mdales at mac.com long_description {{Twm with a virtual desktop and optional Motif-like features}} version 5.4.6b categories x11 revision 0 windowmaker 857 variants {universal candy darwin_i386} variant_desc {candy {Enable various eye-candy options}} portdir x11/windowmaker description {Window Maker is a X11 window manager supporting GNUstep} homepage http://www.windowmaker.info/ epoch 0 platforms {darwin freebsd} name windowmaker depends_lib {lib:libX11.6:XFree86 port:Xft2 port:gettext port:libpng path:include/gif_lib.h:giflib port:tiff} maintainers nomaintainer long_description {Window Maker is an X11 window manager originally designed to provide integration support for the GNUstep Desktop Environment. In every way possible, it reproduces the elegant look and feel of the {NEXTSTEP[tm]} user interface. It is fast, feature rich, easy to configure, and easy to use. It is also free software, with contributions being made by programmers from around the world.} version 0.92.0 categories x11 revision 2 wine 505 @@ -10138,6 +10138,8 @@ variants universal depends_build {port:pkgconfig port:xorg-fixesproto port:xorg-xproto port:xorg-xextproto} portdir x11/xorg-libXfixes description {X.org libXfixes} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib port:xorg-libX11 name xorg-libXfixes maintainers jeremyhu long_description {{X.org libXfixes}} version 4.0.3 categories {x11 devel} revision 0 xorg-libXfont 558 variants universal portdir x11/xorg-libXfont description {X.org libXfont} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXfont depends_lib {port:pkgconfig port:freetype port:xorg-xproto port:xorg-xextproto port:xorg-xtrans port:xorg-libpthread-stubs port:xorg-libXau port:xorg-xcb-proto port:xorg-libfontenc port:xorg-libxcb port:xorg-xcmiscproto port:xorg-inputproto port:xorg-kbproto} maintainers bbyer at macports.org long_description {X font handling library for server & utilities} version 1.3.1 categories {x11 devel} revision 0 +xorg-libXmu 404 +variants universal depends_build {port:pkgconfig port:xorg-xproto port:xorg-xextproto} portdir x11/xorg-libXmu description {X.org libXmu} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {lib:libX11:xorg-libX11 lib:libX11:xorg-libXext lib:libX11:xorg-libXt} name xorg-libXmu maintainers jeremyhu long_description {X.org Xmu library} version 1.0.4 categories {x11 devel} revision 0 xorg-libXt 559 variants universal depends_build {port:pkgconfig port:xorg-kbproto port:xorg-xproto} portdir x11/xorg-libXt description {X.org libXt} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXdmcp port:xorg-libsm port:xorg-libX11} name xorg-libXt maintainers jeremyhu long_description {X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif (a Motif implementation).} version 1.0.5 categories {x11 devel} revision 0 xorg-libfontenc 504 @@ -10172,8 +10174,8 @@ portdir x11/xorg-util-macros description {X.org util-macros} platforms darwin name xorg-util-macros version 1.2.0 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Miscellaneous utility macros required by the Modular X.org codebase.} xorg-videoproto 269 portdir x11/xorg-videoproto description {X.org videoproto} platforms darwin name xorg-videoproto version 2.2.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XVideo extension to X11} -xorg-xcb-proto 263 -portdir x11/xorg-xcb-proto description {X.org xcb-proto} platforms {darwin macosx} name xorg-xcb-proto version 1.2 categories {x11 devel} homepage http://xcb.freedesktop.org revision 0 epoch 0 maintainers jeremyhu long_description {XML-XCB protocol descriptions} +xorg-xcb-proto 422 +variants {python25 python30} variant_desc {python25 {Use python 2.5 for xcbgen} python30 {Use python 3.0 for xcbgen}} portdir x11/xorg-xcb-proto description {X.org xcb-proto} homepage http://xcb.freedesktop.org epoch 0 depends_run {port:libxml2 port:python26} platforms {darwin macosx} name xorg-xcb-proto maintainers jeremyhu long_description {XML-XCB protocol descriptions} version 1.2 categories {x11 devel} revision 0 xorg-xcb-util 355 variants universal depends_build {port:pkgconfig port:xorg-xproto} portdir x11/xorg-xcb-util description {X.org xcb-util} homepage http://xcb.freedesktop.org/ epoch 0 platforms {darwin macosx} depends_lib port:xorg-libxcb name xorg-xcb-util maintainers jeremyhu long_description {Utility libraries for XCB} version 0.3.1 categories {x11 devel} revision 0 xorg-xcmiscproto 272 @@ -10198,8 +10200,8 @@ portdir x11/xping variants universal description {'ping' an Xserver} name xping depends_lib lib:libX11.6:XFree86 version 1.9 categories x11 revision 0 epoch 0 maintainers jdputsch at comcast.net long_description {A simple tool to determine if an X11 server is running.} xplanet 844 variants {universal freetype gif pango aqua pnm} variant_desc {freetype {Enable Freetype support for TrueType fonts} gif {Enable GIF support} pango {Enable Pango} aqua {Use aqua instead of X11} pnm {Enable PNM support}} portdir x11/xplanet description {Render an image of a planet into an X window or file} homepage http://xplanet.sourceforge.net/ epoch 0 platforms darwin name xplanet depends_lib {lib:libX11:XFree86 lib:libjpeg:jpeg lib:libpng:libpng lib:libtiff:tiff} maintainers nomaintainer long_description {Xplanet is similar to Xearth, where an image of the earth is rendered into an X window. All of the major planets and most satellites can be drawn. A number of different map projections are also supported, including azimuthal, Mercator, Mollweide, orthographic, and rectangular.} version 1.2.0 categories {x11 graphics} revision 1 -xpm 406 -variants universal depends_build bin:xmkmf:imake description {The X Pixmap Library} portdir x11/xpm epoch 0 platforms darwin name xpm maintainers nomaintainer long_description {XPM (X PixMap) is a format for storing/retrieving X pixmaps to/from files. It is used by a large number of common X applications and has become something of a de-facto standard.} categories {x11 graphics} version 3.4k revision 0 +xpm 517 +variants {universal darwin_7 darwin_8} depends_build {port:pkgconfig port:xorg-xproto} portdir x11/xpm description {The X Pixmap Library} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib lib:libX11:xorg-libX11 name xpm maintainers jeremyhu long_description {XPM (X PixMap) is a format for storing/retrieving X pixmaps to/from files. It is used by a large number of common X applications and has become something of a de-facto standard.} version 3.5.7 categories {x11 devel graphics} revision 0 xrender 386 variants {universal darwin_7 darwin_8 macosx} depends_build port:pkgconfig portdir x11/xrender description {X Render Extension library} homepage http://www.x.org/ epoch 0 platforms darwin depends_lib {lib:libX11:xorg-libX11 port:xorg-renderproto} name xrender maintainers {jeremyhu openmaintainer} long_description {{X Render Extension library}} version 0.9.4 categories x11 revision 1 xrmap 450 -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Wed Dec 3 13:58:54 2008 From: blb at macports.org (blb at macports.org) Date: Wed, 3 Dec 2008 13:58:54 -0800 (PST) Subject: [43035] trunk/base/doc/portfile.7 Message-ID: <20081203215854.7B8BF822F8F@beta.macosforge.org> Revision: 43035 http://trac.macports.org/changeset/43035 Author: blb at macports.org Date: 2008-12-03 13:58:53 -0800 (Wed, 03 Dec 2008) Log Message: ----------- doc/portfile.7 - add description of use_parallel_build option Modified Paths: -------------- trunk/base/doc/portfile.7 Modified: trunk/base/doc/portfile.7 =================================================================== --- trunk/base/doc/portfile.7 2008-12-03 21:52:07 UTC (rev 43034) +++ trunk/base/doc/portfile.7 2008-12-03 21:58:53 UTC (rev 43035) @@ -250,6 +250,18 @@ sha1 a633a9a811a138eac5ed440d583473b644135ef5 \e\ rmd160 941cf8f2ef8459ec4f9ce65772e134505d46566 .Ed +.It Ic use_parallel_build +If set to yes (and the user has enabled buildmakejobs in +.Pa macports.conf +), the port can be built using more than one job. +.Sy Type: +.Em optional +.br +.Sy Default: +.Em no +.br +.Sy Example: +.Dl use_parallel_build yes .It Ic use_automake If set to yes, run the .Cm automake -------------- next part -------------- An HTML attachment was scrubbed... URL: From raimue at macports.org Wed Dec 3 14:41:51 2008 From: raimue at macports.org (raimue at macports.org) Date: Wed, 3 Dec 2008 14:41:51 -0800 (PST) Subject: [43036] trunk/dports/sysutils/MacPorts/Portfile Message-ID: <20081203224151.5C86E823AE6@beta.macosforge.org> Revision: 43036 http://trac.macports.org/changeset/43036 Author: raimue at macports.org Date: 2008-12-03 14:41:50 -0800 (Wed, 03 Dec 2008) Log Message: ----------- sysutils/MacPorts: Do not use ccache Modified Paths: -------------- trunk/dports/sysutils/MacPorts/Portfile Modified: trunk/dports/sysutils/MacPorts/Portfile =================================================================== --- trunk/dports/sysutils/MacPorts/Portfile 2008-12-03 21:58:53 UTC (rev 43035) +++ trunk/dports/sysutils/MacPorts/Portfile 2008-12-03 22:41:50 UTC (rev 43036) @@ -31,6 +31,10 @@ configure.cppflags configure.ldflags +# MacPorts' configure removes ${prefix}/bin from $PATH, +# so better do not use ccache to avoid problems +configure.ccache no + post-pkg { if {[file exists ${workpath}/${name}-${version}.pkg/Contents/Resources/English.lproj]} { set resources ${workpath}/${name}-${version}.pkg/Contents/Resources/English.lproj -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 15:07:17 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 15:07:17 -0800 (PST) Subject: [43037] trunk/dports/textproc/canna/Portfile Message-ID: <20081203230717.85988823E4C@beta.macosforge.org> Revision: 43037 http://trac.macports.org/changeset/43037 Author: jeremyhu at macports.org Date: 2008-12-03 15:07:15 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Add dependency on imake if xmkmf isn't present. Dev timeout bug #17345. Modified Paths: -------------- trunk/dports/textproc/canna/Portfile Modified: trunk/dports/textproc/canna/Portfile =================================================================== --- trunk/dports/textproc/canna/Portfile 2008-12-03 22:41:50 UTC (rev 43036) +++ trunk/dports/textproc/canna/Portfile 2008-12-03 23:07:15 UTC (rev 43037) @@ -46,6 +46,7 @@ } use_xmkmf yes +depends_build bin:xmkmf:imake pre-build { build.target canna @@ -102,7 +103,7 @@ } variant pdfdoc description {Create PDF documents using pTeX.} { - depends_build port:pTeX port:ghostscript port:ghostscript-fonts-hiragino + depends_build-append port:pTeX port:ghostscript port:ghostscript-fonts-hiragino post-build { system "cd ${worksrcpath}/doc/man/guide/tex && xmkmf && make canna.pdf" -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 15:07:27 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 15:07:27 -0800 (PST) Subject: [43038] trunk/dports/net/sclj/Portfile Message-ID: <20081203230727.AB05F823ECE@beta.macosforge.org> Revision: 43038 http://trac.macports.org/changeset/43038 Author: mcalhoun at macports.org Date: 2008-12-03 15:07:27 -0800 (Wed, 03 Dec 2008) Log Message: ----------- sclj: change perl dependency from port:perl5.8 to path:bin/perl (see #16830) Fixes #17439 (maintainer timeout) Modified Paths: -------------- trunk/dports/net/sclj/Portfile Modified: trunk/dports/net/sclj/Portfile =================================================================== --- trunk/dports/net/sclj/Portfile 2008-12-03 23:07:15 UTC (rev 43037) +++ trunk/dports/net/sclj/Portfile 2008-12-03 23:07:27 UTC (rev 43038) @@ -12,7 +12,7 @@ homepage http://sclj.sourceforge.net/ master_sites sourceforge:sclj checksums sha1 338c156478a63e5db656f58495d9fe2e4fbcbeec -depends_run port:perl5.8 +depends_run path:bin/perl:perl5 use_bzip2 yes patchfiles patch-src-Makefile \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 15:12:23 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 15:12:23 -0800 (PST) Subject: [43039] trunk/dports/net/nagios-plugins/Portfile Message-ID: <20081203231224.142B382403C@beta.macosforge.org> Revision: 43039 http://trac.macports.org/changeset/43039 Author: mcalhoun at macports.org Date: 2008-12-03 15:12:23 -0800 (Wed, 03 Dec 2008) Log Message: ----------- nagios-plugins: uses perl5 PortGroup, so perl dependency is redundant Addresses issues raised in #16830. Fixes #17448 (maintainer timeout). Modified Paths: -------------- trunk/dports/net/nagios-plugins/Portfile Modified: trunk/dports/net/nagios-plugins/Portfile =================================================================== --- trunk/dports/net/nagios-plugins/Portfile 2008-12-03 23:07:27 UTC (rev 43038) +++ trunk/dports/net/nagios-plugins/Portfile 2008-12-03 23:12:23 UTC (rev 43039) @@ -29,8 +29,6 @@ port:p5-crypt-des \ port:openssl -depends_lib port:perl5.8 - configure.args --sbindir=${prefix}/share/nagios/cgi-bin \ --libexecdir=${prefix}/libexec/nagios \ --datadir=${prefix}/share/nagios \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 15:14:55 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 15:14:55 -0800 (PST) Subject: [43040] trunk/dports/net/argus-monitor/Portfile Message-ID: <20081203231455.8F5408240F0@beta.macosforge.org> Revision: 43040 http://trac.macports.org/changeset/43040 Author: mcalhoun at macports.org Date: 2008-12-03 15:14:54 -0800 (Wed, 03 Dec 2008) Log Message: ----------- argus-monitor: change perl dependency from port:perl5.8 to path:bin/perl (see #16830) Fixes #17447 (maintainer timeout). Modified Paths: -------------- trunk/dports/net/argus-monitor/Portfile Modified: trunk/dports/net/argus-monitor/Portfile =================================================================== --- trunk/dports/net/argus-monitor/Portfile 2008-12-03 23:12:23 UTC (rev 43039) +++ trunk/dports/net/argus-monitor/Portfile 2008-12-03 23:14:54 UTC (rev 43040) @@ -14,7 +14,7 @@ distfiles argus-${version}.tgz worksrcdir argus-${version} -depends_lib port:perl5.8 \ +depends_lib path:bin/perl:perl5 \ port:postfix \ port:openssl \ port:freetype \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 15:17:21 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 15:17:21 -0800 (PST) Subject: [43041] trunk/dports/net/mediaserv/Portfile Message-ID: <20081203231721.8E5DE82418B@beta.macosforge.org> Revision: 43041 http://trac.macports.org/changeset/43041 Author: mcalhoun at macports.org Date: 2008-12-03 15:17:21 -0800 (Wed, 03 Dec 2008) Log Message: ----------- mediaserv: change perl dependency from port:perl5.8 to path:bin/perl (see #16830) Fixes #17444 (maintainer timeout). Modified Paths: -------------- trunk/dports/net/mediaserv/Portfile Modified: trunk/dports/net/mediaserv/Portfile =================================================================== --- trunk/dports/net/mediaserv/Portfile 2008-12-03 23:14:54 UTC (rev 43040) +++ trunk/dports/net/mediaserv/Portfile 2008-12-03 23:17:21 UTC (rev 43041) @@ -31,7 +31,7 @@ rmd160 78e824cd8b28effc58543e75aaf63e2cdc958941 worksrcdir ${name} -depends_run port:perl5.8 port:p5-libwww-perl port:p5-xml-rss \ +depends_run path:bin/perl:perl5 port:p5-libwww-perl port:p5-xml-rss \ port:p5-datetime port:MPlayer port:tablet-encode patchfiles patch-mediaserv.diff patch-install_sh.diff -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 15:19:33 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 15:19:33 -0800 (PST) Subject: [43042] trunk/dports/x11/xcb/Portfile Message-ID: <20081203231934.08C11824255@beta.macosforge.org> Revision: 43042 http://trac.macports.org/changeset/43042 Author: jeremyhu at macports.org Date: 2008-12-03 15:19:33 -0800 (Wed, 03 Dec 2008) Log Message: ----------- xcb: Fixed dependencies. Maintainer timeout. Bug #17345 Modified Paths: -------------- trunk/dports/x11/xcb/Portfile Modified: trunk/dports/x11/xcb/Portfile =================================================================== --- trunk/dports/x11/xcb/Portfile 2008-12-03 23:17:21 UTC (rev 43041) +++ trunk/dports/x11/xcb/Portfile 2008-12-03 23:19:33 UTC (rev 43042) @@ -21,7 +21,17 @@ patchfiles patch-Imakefile use_xmkmf yes +depends_build bin:xmkmf:imake +depends_lib \ + lib:libXaw.7:xorg-libXaw \ + lib:libXmu.6:xorg-libXmu \ + lib:libXt.6:xorg-libXt \ + lib:libSM.6:xorg-libSM \ + lib:libICE.6:xorg-libICE \ + lib:libXext.6:xorg-libXext \ + lib:libX11.6:xorg-libX11 + destroot.destdir \ DESTDIR=${destroot} \ BINDIR=${prefix}/bin \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Dec 3 15:51:57 2008 From: portindex at macports.org (portindex at macports.org) Date: Wed, 3 Dec 2008 15:51:57 -0800 (PST) Subject: [43043] trunk/dports/PortIndex Message-ID: <20081203235158.AF219824B7B@beta.macosforge.org> Revision: 43043 http://trac.macports.org/changeset/43043 Author: portindex at macports.org Date: 2008-12-03 15:51:57 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Total number of ports parsed: 5180 Ports successfully parsed: 5180 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-03 23:19:33 UTC (rev 43042) +++ trunk/dports/PortIndex 2008-12-03 23:51:57 UTC (rev 43043) @@ -4628,8 +4628,8 @@ variants universal portdir net/apan description {apan plugin for nagios} homepage http://www.nagios.org epoch 0 platforms {darwin openbsd} name apan depends_lib port:nagios maintainers nomaintainer long_description {use of rrdtool in nagios} version 0.3.0-sql categories net revision 0 argus 376 variants universal description {the network Audit Record Generation and Utilization System} portdir net/argus homepage http://www.qosient.com/argus/ epoch 0 platforms darwin name argus long_description {Argus is a real-time Flow Monitor that is designed to perform comprehensive IP network traffic auditing.} maintainers tk at ncircle.com categories net version 2.0.6 revision 0 -argus-monitor 621 -variants {universal apple_postfix} portdir net/argus-monitor description {The All Seeing System and Network Monitoring Software} homepage http://argus.tcp4me.com/ epoch 0 platforms darwin name argus-monitor depends_lib {port:perl5.8 port:postfix port:openssl port:freetype port:gd2 port:fping port:db44 port:p5-dbi port:p5-berkeleydb port:p5-socket6 port:p5-gd port:p5-time-hires port:p5-net-ssleay port:p5-digest-hmac port:p5-digest-md5 port:p5-digest-sha1 port:p5-crypt-des} maintainers markd at macports.org long_description {{The All Seeing System and Network Monitoring Software}} version 3.5 categories net revision 0 +argus-monitor 628 +variants {universal apple_postfix} portdir net/argus-monitor description {The All Seeing System and Network Monitoring Software} homepage http://argus.tcp4me.com/ epoch 0 platforms darwin name argus-monitor depends_lib {path:bin/perl:perl5 port:postfix port:openssl port:freetype port:gd2 port:fping port:db44 port:p5-dbi port:p5-berkeleydb port:p5-socket6 port:p5-gd port:p5-time-hires port:p5-net-ssleay port:p5-digest-hmac port:p5-digest-md5 port:p5-digest-sha1 port:p5-crypt-des} maintainers markd at macports.org long_description {{The All Seeing System and Network Monitoring Software}} version 3.5 categories net revision 0 aria2 444 variants universal portdir net/aria2 description {download utility with resuming and segmented downloading} homepage http://aria2.sourceforge.net/ epoch 0 platforms darwin name aria2 depends_lib {port:gettext port:libiconv port:gnutls port:libxml2} maintainers mww long_description {aria2 is a download utility with resuming and segmented downloading. Supported protocols are HTTP/HTTPS/FTP/BitTorrent.} version 1.0.1 categories net revision 0 arla 544 @@ -4974,8 +4974,8 @@ variants universal description {embeddable Multicast DNS Daemon} portdir net/mdnsd homepage http://dotlocal.org/mdnsd/ epoch 0 platforms darwin name mdnsd long_description {mdnsd is a very lightweight, simple, portable, and easy to integrate open source implementation of Multicast DNS (part of Zeroconf, also called Rendezvous by Apple) for developers. It supports both acting as a Query and a Responder, allowing any software to participate fully on the .local network just by including a few files and calling a few functions.} maintainers nomaintainer categories net version 0.7G revision 0 meanwhile 484 variants universal depends_build port:pkgconfig portdir net/meanwhile description {Open Source implementation of the Lotus Sametime protocol} homepage http://meanwhile.sourceforge.net/ epoch 0 platforms darwin depends_lib {port:gettext path:lib/pkgconfig/glib-2.0.pc:glib2 port:libiconv} name meanwhile maintainers nomaintainer long_description {The Meanwhile Project is an open implementation of the Lotus Sametime Community Client protocol.} version 1.0.1 categories net revision 0 -mediaserv 847 -variants universal portdir net/mediaserv description {On-demand transcoding server for videos, targetting the Nokia Internet Tablets.} homepage http://mediautils.garage.maemo.org/mediaserv.html epoch 0 depends_run {port:perl5.8 port:p5-libwww-perl port:p5-xml-rss port:p5-datetime port:MPlayer port:tablet-encode} platforms darwin name mediaserv maintainers ecronin long_description {mediaserv is a simple web server which exposes video content on your desktop PC or server to your Nokia Internet Tablet (such as the Nokia 770, Nokia N800 or Nokia N810). When content is accessed, it transcodes the video {Just In Time} and streams it to your Internet Tablet. RSS feeds for directories are also provided, listing the most recently updated content, and compatible with Nokia's beta Video Center application.} version 0.05 categories net revision 1 +mediaserv 854 +variants universal portdir net/mediaserv description {On-demand transcoding server for videos, targetting the Nokia Internet Tablets.} homepage http://mediautils.garage.maemo.org/mediaserv.html epoch 0 depends_run {path:bin/perl:perl5 port:p5-libwww-perl port:p5-xml-rss port:p5-datetime port:MPlayer port:tablet-encode} platforms darwin name mediaserv maintainers ecronin long_description {mediaserv is a simple web server which exposes video content on your desktop PC or server to your Nokia Internet Tablet (such as the Nokia 770, Nokia N800 or Nokia N810). When content is accessed, it transcodes the video {Just In Time} and streams it to your Internet Tablet. RSS feeds for directories are also provided, listing the most recently updated content, and compatible with Nokia's beta Video Center application.} version 0.05 categories net revision 1 mediatomb 952 variants {universal sqlite3 mysql4 mysql5 taglib id3lib ffmpeg libextractor} variant_desc {sqlite3 {Use SQLite 3 database} mysql4 {Use MySQL 4 database} mysql5 {Use MySQL 5 database} taglib {Use TagLib for tag access} id3lib {Use id3lib for tag access} ffmpeg {Use ffmpeg for gathering metadata} libextractor {Use libextractor for gathering metadata}} portdir net/mediatomb description {Open source (GPL) UPnP MediaServer} homepage http://mediatomb.cc/ epoch 0 platforms darwin name mediatomb depends_lib {port:libiconv port:zlib port:spidermonkey port:file port:curl port:libexif port:expat port:sqlite3 port:taglib port:ffmpeg} maintainers yattenator at gmail.com long_description {MediaTomb is an open source (GPL) UPnP MediaServer with a nice web user interface, it allows you to stream your digital media through your home network and listen to/watch it on a variety of UPnP compatible devices.} version 0.11.0 categories {net multimedia} revision 0 micq 561 @@ -5002,8 +5002,8 @@ variants universal portdir net/mutella description {A command line Gnutella client} homepage http://mutella.sourceforge.net/ epoch 0 platforms darwin name mutella depends_lib lib:readline:readline maintainers max at clarksys.com long_description {Mutella is a terminal-mode Gnutella client with an intuitive and easy to use interface.} version 0.4.5 categories net revision 0 nagios 566 variants {universal monarch darwin_8} depends_build port:gd2 portdir net/nagios description {Nagios is a host and service monitoring program} homepage http://nagios.org epoch 0 platforms darwin depends_lib {port:openssl port:nagios-plugins} name nagios maintainers markd long_description {A network service and host monitor that can notify you when servers go down by monitoring for external services such as HTTP, FTP, SMTP, SNMP, as well as internal host checks for things such as CPU and disk usage and many other things.} version 3.0.5 categories net revision 0 -nagios-plugins 547 -variants {universal mysql5 mysql4 qstat} depends_build {port:fping port:p5-net-snmp port:p5-digest-sha1 port:p5-digest-hmac port:p5-crypt-des port:openssl} portdir net/nagios-plugins description {Nagios plugins for the Nagios host and service monitor} homepage http://nagios.org epoch 0 platforms darwin depends_lib port:perl5.8 name nagios-plugins maintainers markd long_description {Nagios plugins are standalone programs that report the status of hosts and services to the Nagios monitoring framework.} version 1.4.13 categories net revision 1 +nagios-plugins 522 +variants {universal mysql5 mysql4 qstat} depends_build {port:fping port:p5-net-snmp port:p5-digest-sha1 port:p5-digest-hmac port:p5-crypt-des port:openssl} portdir net/nagios-plugins description {Nagios plugins for the Nagios host and service monitor} homepage http://nagios.org epoch 0 platforms darwin name nagios-plugins maintainers markd long_description {Nagios plugins are standalone programs that report the status of hosts and services to the Nagios monitoring framework.} version 1.4.13 categories net revision 1 naim 380 variants universal description {ncurses-based client for multiple messenger systems.} portdir net/naim homepage http://site.n.ml.org/info/naim/ epoch 0 platforms darwin name naim long_description {naim is a ncurses-based messenger client, that supports all major messaging protocol such as AIM, ICQ, IRC etc.} maintainers nomaintainer categories net version 0.11.8.2.1 revision 0 nbtstat 444 @@ -5170,8 +5170,8 @@ variants universal portdir net/scanssh description {scanner for finding ssh servers and their software version} homepage http://monkey.org/~provos/scanssh/ epoch 0 platforms darwin name scanssh depends_lib {lib:libpcap:libpcap bin:dnet-config:libdnet lib:libevent:libevent} maintainers nomaintainer long_description {scanssh protocol scanner scans a list of addresses and networks for running SSH protocol servers and their version numbers. scanssh protocol scanner supports random selection of IP addresses from large network ranges and is useful for gathering statistics on the deployment of SSH protocol servers in a company or the Internet as whole.} version 2.1 categories {net security} revision 1 scapy 1089 variants universal portdir net/scapy description {A powerful packet manipulation tool} homepage http://www.secdev.org/projects/scapy epoch 0 platforms darwin depends_lib {port:python24 port:py-readline port:py-pylibpcap port:py-libdnet port:py-crypto port:py-gnuplot port:py-pyx port:graphviz} name scapy maintainers pmq long_description {Scapy is a powerful interactive packet manipulation program. It is able to forge or decode packets of a wide number of protocols, send them on the wire, capture them, match requests and replies, and much more. It can easily handle most classical tasks like scanning, tracerouting, probing, unit tests, attacks or network discovery (it can replace hping, 85% of nmap, arpspoof, arp-sk, arping, tcpdump, tethereal, p0f, etc.). It also performs very well at a lot of other specific tasks that most other tools can't handle, like sending invalid frames, injecting your own 802.11 frames, combining technics (VLAN hopping+ARP cache poisoning, VOIP decodin g on WEP encrypted channel, ...), etc.} categories {net security python} version 1.2.0.2 revision 0 -sclj 361 -variants universal portdir net/sclj description {A livejournal client} homepage http://sclj.sourceforge.net/ epoch 0 depends_run port:perl5.8 platforms darwin name sclj maintainers kayos at genetikayos.com long_description {JLJ is a command-line interface for posting to livejournal. Posts are edited in your default editor.} version 3.2 categories net revision 0 +sclj 368 +variants universal portdir net/sclj description {A livejournal client} homepage http://sclj.sourceforge.net/ epoch 0 depends_run path:bin/perl:perl5 platforms darwin name sclj maintainers kayos at genetikayos.com long_description {JLJ is a command-line interface for posting to livejournal. Posts are edited in your default editor.} version 3.2 categories net revision 0 scotty 559 variants {universal darwin_8} portdir net/scotty description {Network management extensions to Tcl that enables TCP/UDP connections, DNS queries, and SNMP. The graphical network mapper tkined is also included.} homepage http://wiki.tcl.tk/220 epoch 0 platforms darwin name scotty depends_lib {lib:libX11.6:XFree86 port:tcl port:tk} maintainers markd long_description {{Network management extensions to Tcl that enables TCP/UDP connections, DNS queries, and SNMP. The graphical network mapper tkined is also included.}} version 3.0.0 categories net revision 4 sendfile 630 @@ -9114,8 +9114,8 @@ variants {universal darwin_8} description {An interactive King James Bible} portdir textproc/brs homepage http://mirrors.playboy.com/misc/ epoch 0 platforms darwin name brs long_description {Bible Retrieval System (BRS) consists of a textual database of the Authorized (\"King James\") Version of the Old and New Testaments, a set of libraries for finding and retrieving text, and a program (\"bible\") which uses the libraries to retrieve Bible passages given references on the command line or from standard input.} maintainers nomaintainer categories textproc version 4.03 revision 1 c2html 479 variants universal description {c2html converts C source files to highlighted html} portdir textproc/c2html homepage http://c2html.sourceforge.net/ epoch 0 platforms darwin name c2html long_description {c2html is a program which converts C source files to highlighted html files. The produced file can be used for creating technical manuals. A highlighted source code listing is usually much easier to read.} maintainers nomaintainer categories textproc version 1.0.0 revision 0 -canna 458 -variants {universal inet pdfdoc} variant_desc {inet {Accept TCP 5680 incoming connections from clients. (Possible security risk.)} pdfdoc {Create PDF documents using pTeX.}} portdir textproc/canna description {Kana-Kanji conversion system} homepage http://canna.sourceforge.jp/ epoch 0 platforms darwin name canna maintainers {takanori openmaintainer} long_description {{Kana-Kanji conversion system}} version 3.7p3 categories {textproc japanese} revision 1 +canna 488 +variants {universal inet pdfdoc} depends_build bin:xmkmf:imake variant_desc {inet {Accept TCP 5680 incoming connections from clients. (Possible security risk.)} pdfdoc {Create PDF documents using pTeX.}} portdir textproc/canna description {Kana-Kanji conversion system} homepage http://canna.sourceforge.jp/ epoch 0 platforms darwin name canna maintainers {takanori openmaintainer} long_description {{Kana-Kanji conversion system}} version 3.7p3 categories {textproc japanese} revision 1 catdoc 755 variants universal portdir textproc/catdoc description {Convert MS Word/Excel documents to plain ASCII or TeX.} homepage http://www.wagner.pp.ru/~vitus/software/catdoc/ epoch 0 depends_run bin:wish:tk platforms darwin name catdoc maintainers julian at hal-9k.de long_description {catdoc is program which reads one or more Microsoft word files and outputs text, contained insinde them to standard output. Therefore it does same work for .doc files, as unix cat command for plain ASCII files. It is now accompanied by xls2csv - program which converts Excel spreadsheet into comma-separated value file. Newest addition to catdoc suite is catppt - a program, which extracts readable text from the PowerPoint files.} version 0.94.2 categories textproc revision 0 chasen 791 @@ -10068,8 +10068,8 @@ variants universal description {x3270 is an IBM 3270 terminal emulator for the X Window System.} portdir x11/x3270 homepage http://x3270.bgp.nu/index.html epoch 0 platforms darwin name x3270 long_description {x3270 is an IBM 3270 terminal emulator for the X Window System. It runs on most Unix-like operating systems -- e.g., Linux, Mac OS X, Solaris, and Cygwin. x3270 runs over a TELNET connection, emulating either an IBM 3279 (color) or 3278 (monochrome). It supports: * The full TN3270E protocol * SSL/TLS (via the OpenSSL library) for encrypted sessions * APL2 characters * Non-English character sets, including Russian, Turkish, Hebrew and DBCS Chinese and Japanese * {IND$FILE} file transfer * NVT mode (emulating a color xterm) * A pop-up keypad for 3270-specific keys * A scrollbar * Printer session integration * Extensive debugging and scripting facilities It does not yet support graphics.} maintainers mark.church at gmail.com categories x11 version 3.3.8 revision 0 xarchiver 434 variants universal portdir x11/xarchiver description {Xarchiver is a desktop-agnostic GTK+2 frontend to various command line archiving tools} homepage http://xarchiver.xfce.org/ epoch 0 platforms darwin name xarchiver depends_lib {port:pkgconfig port:gtk2} maintainers afb at macports.org long_description {{Xarchiver is a desktop-agnostic GTK+2 frontend to various command line archiving tools}} version 0.4.6 categories x11 revision 0 -xcb 662 -variants universal description {tool for managing X11 cut-buffers} portdir x11/xcb homepage http://www.goof.com/pcg/marc/xcb.html epoch 0 platforms darwin name xcb long_description {Xcb provides access to the cut buffers built into every X server. It allows the buffers to be manipulated either via the command line, or with the mouse in a point and click manner. The buffers can be used as holding pens to store and retrieve arbitrary data fragments, so any number of different pieces of data can be saved and recalled later. The program is designed primarily for use with textual data.} maintainers qbarnes at prairienet.org categories x11 version 2.4 revision 0 +xcb 879 +variants universal depends_build bin:xmkmf:imake portdir x11/xcb description {tool for managing X11 cut-buffers} homepage http://www.goof.com/pcg/marc/xcb.html epoch 0 platforms darwin depends_lib {lib:libXaw.7:xorg-libXaw lib:libXmu.6:xorg-libXmu lib:libXt.6:xorg-libXt lib:libSM.6:xorg-libSM lib:libICE.6:xorg-libICE lib:libXext.6:xorg-libXext lib:libX11.6:xorg-libX11} name xcb maintainers qbarnes at prairienet.org long_description {Xcb provides access to the cut buffers built into every X server. It allows the buffers to be manipulated either via the command line, or with the mouse in a point and click manner. The buffers can be used as holding pens to store and retrieve arbitrary data fragments, so any number of different pieces of data can be saved and recalled later. The program is designed primarily for use with textual data.} version 2.4 categories x11 revision 0 xchm 521 variants universal portdir x11/xchm description {A cross-platform GUI front-end to chmlib.} homepage http://xchm.sourceforge.net/ epoch 0 platforms darwin name xchm depends_lib {port:wxgtk port:chmlib} maintainers markd long_description {A cross-platform GUI front-end to chmlib, xCHM can show the content tree if one is available, print pages, change font face and size, remember bookmarks, display a searchable index, and search for words in the current page and the whole book.} version 1.14 categories x11 revision 0 xcircuit 796 -------------- next part -------------- An HTML attachment was scrubbed... URL: From eridius at macports.org Wed Dec 3 15:53:15 2008 From: eridius at macports.org (eridius at macports.org) Date: Wed, 3 Dec 2008 15:53:15 -0800 (PST) Subject: [43044] distfiles/macfuse/macfuse-1.7-1.tar.bz2 Message-ID: <20081203235315.BE43B824BA8@beta.macosforge.org> Revision: 43044 http://trac.macports.org/changeset/43044 Author: eridius at macports.org Date: 2008-12-03 15:53:15 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Add macfuse-1.7-1.tar.bz2 This is a fixed archive for MacFUSE 1.7. It turns out that macfuse-1.7.tar.bz2 is actually a beta version 1.6.1. Added Paths: ----------- distfiles/macfuse/macfuse-1.7-1.tar.bz2 Added: distfiles/macfuse/macfuse-1.7-1.tar.bz2 =================================================================== (Binary files differ) Property changes on: distfiles/macfuse/macfuse-1.7-1.tar.bz2 ___________________________________________________________________ Added: svn:mime-type + application/octet-stream -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 16:00:24 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 16:00:24 -0800 (PST) Subject: [43045] trunk/dports/net/nedi/Portfile Message-ID: <20081204000024.9161A824D1C@beta.macosforge.org> Revision: 43045 http://trac.macports.org/changeset/43045 Author: mcalhoun at macports.org Date: 2008-12-03 16:00:24 -0800 (Wed, 03 Dec 2008) Log Message: ----------- nedi: change perl dependency from port:perl5.8 to path:bin/perl (see #16830) Fixes #17443 (maintainer timeout). Modified Paths: -------------- trunk/dports/net/nedi/Portfile Modified: trunk/dports/net/nedi/Portfile =================================================================== --- trunk/dports/net/nedi/Portfile 2008-12-03 23:53:15 UTC (rev 43044) +++ trunk/dports/net/nedi/Portfile 2008-12-04 00:00:24 UTC (rev 43045) @@ -23,7 +23,7 @@ checksums md5 adae0699ea6d010d6d92f807f04ca442 patchfiles patch-html-Reports-Modules.php-diff -depends_lib port:perl5.8 \ +depends_lib path:bin/perl:perl5 \ port:mysql5 \ port:p5-net-snmp \ port:p5-net-ssh-perl \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From eridius at macports.org Wed Dec 3 16:01:43 2008 From: eridius at macports.org (eridius at macports.org) Date: Wed, 3 Dec 2008 16:01:43 -0800 (PST) Subject: [43046] trunk/dports/fuse/macfuse Message-ID: <20081204000143.B0AF4824E81@beta.macosforge.org> Revision: 43046 http://trac.macports.org/changeset/43046 Author: eridius at macports.org Date: 2008-12-03 16:01:43 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Bump macfuse to 1.7_1. It turns out the previous version was actually a beta version 1.6. Modified Paths: -------------- trunk/dports/fuse/macfuse/Portfile trunk/dports/fuse/macfuse/files/patch-10.4-project.pbxproj trunk/dports/fuse/macfuse/files/patch-10.5-packaging-macfuse-core-make-pkg.sh trunk/dports/fuse/macfuse/files/patch-10.5-project.pbxproj Modified: trunk/dports/fuse/macfuse/Portfile =================================================================== --- trunk/dports/fuse/macfuse/Portfile 2008-12-04 00:00:24 UTC (rev 43045) +++ trunk/dports/fuse/macfuse/Portfile 2008-12-04 00:01:43 UTC (rev 43046) @@ -4,6 +4,7 @@ name macfuse version 1.7 +revision 1 categories fuse devel platforms macosx maintainers eridius at macports.org @@ -17,10 +18,10 @@ homepage http://code.google.com/p/macfuse/ master_sites macports -distname macfuse-${version} +distname macfuse-${version}-1 worksrcdir macfuse-core -checksums md5 dd75acee43c32f9bda78e4babf11c147 \ - sha1 2fc27f58faf91547237466d82dac704023665015 +checksums md5 e2a8d2dcf116ec806d47bd050b77dd23 \ + sha1 5989a81a86ce74fadedf9c06119c6c279cd1cb6c patchfiles patch-10.4-project.pbxproj \ patch-10.5-project.pbxproj \ @@ -67,11 +68,12 @@ set path "${destpath}/opt/local/lib/${f}" reinplace s,/usr/local,/opt/local, $path } - foreach lib [list "libulockmgr.1" "libfuse.2"] { + set libfuse_version 0 + foreach lib [list "libulockmgr.0" "libfuse.${libfuse_version}"] { set libpath "/opt/local/lib/${lib}.dylib" system "install_name_tool -id ${libpath} ${destpath}${libpath}" } - system "install_name_tool -change /usr/local/lib/libfuse.2.dylib /opt/local/lib/libfuse.2.dylib ${destpath}/Library/Frameworks/MacFUSE.framework/Versions/A/MacFUSE" + system "install_name_tool -change /usr/local/lib/libfuse.${libfuse_version}.dylib /opt/local/lib/libfuse.${libfuse_version}.dylib ${destpath}/Library/Frameworks/MacFUSE.framework/Versions/A/MacFUSE" # delete the whole directory the build script creates # when updating this Portfile DOUBLE CHECK THIS LINE delete [file dirname $dmgname] Modified: trunk/dports/fuse/macfuse/files/patch-10.4-project.pbxproj =================================================================== --- trunk/dports/fuse/macfuse/files/patch-10.4-project.pbxproj 2008-12-04 00:00:24 UTC (rev 43045) +++ trunk/dports/fuse/macfuse/files/patch-10.4-project.pbxproj 2008-12-04 00:01:43 UTC (rev 43046) @@ -1,11 +1,11 @@ ---- 10.4/fusefs/fusefs.xcodeproj/project.pbxproj -+++ 10.4/fusefs/fusefs.xcodeproj/project.pbxproj +--- 10.4/fusefs/fusefs.xcodeproj/project.pbxproj.old 2008-12-03 15:22:06.000000000 -0800 ++++ 10.4/fusefs/fusefs.xcodeproj/project.pbxproj 2008-12-03 15:22:10.000000000 -0800 @@ -471,7 +471,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; -- shellScript = "# Create MacFUSE Tarball\n\nPATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/Developer/Applications\n\nCMD_BZIP2=bzip2\nCMD_CHMOD=chmod\nCMD_CHOWN=chown\nCMD_CP=cp\nCMD_ID=id\nCMD_LN=ln\nCMD_MAKE=make\nCMD_MKDIR=mkdir\nCMD_PATCH=patch\nCMD_RM=rm\nCMD_TAR=tar\nCMD_XCODEBUILD=xcodebuild\n\n# If we are not running as root, just bail out.\nmy_uid=`$CMD_ID -u`\nif [ $my_uid != 0 ]\nthen\n exit 0\nfi\n\nMACFUSE_CORE_VERSIONED_NAME=macfuse-core-\"$OS_VERSION\"-\"$MACFUSE_VERSION\"\n\nMACFUSE_OUT_NAME=macfuse_out-\"$OS_VERSION\"\nMACFUSE_OUT=\"/tmp/$MACFUSE_OUT_NAME\"\nMACFUSE_BUILD=\"$MACFUSE_OUT/build/\"\nMACFUSE_ROOT=\"$MACFUSE_OUT/pkgroot/\"\nMACFUSE_BUNDLE_NAME=fusefs.fs\n\nsudo $CMD_RM -rf $MACFUSE_OUT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_BUILD || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/System/Library/Filesystems/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/Library/Frameworks/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/include/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/pkgconfig/ || exit 1\n\nMACFUSE_BUNDLE_DIR=\"$MACFUSE_ROOT/System/Library/Filesystems/$MACFUSE_BUNDLE_NAME\"\nMACFUSE_BUNDLE_SUPPORT_DIR=\"$MACFUSE_BUNDLE_DIR/Support\"\n\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/fusefs.fs\" \"$MACFUSE_BUNDLE_DIR\" || exit 1\nsudo $CMD_MKDIR -p \"$MACFUSE_BUNDLE_SUPPORT_DIR\" || exit 1\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/fusefs.kext\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/fusefs.kext\" || exit 1\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/load_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/mount_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/mount_fusefs\" || exit 1\n\n# Build the user- space FUSE library\nsudo $CMD_TAR -C \"$MACFUSE_BUILD\" -xzf \"$PROJECT_DIR/../libfuse/fuse-current.tar.gz\" || exit 1\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_BUILD\"/fuse* || exit 1\ncd \"$MACFUSE_BUILD\"/fuse* || exit 1\nsudo $CMD_PATCH -p1 < \"$PROJECT_DIR/../libfuse/fuse-current-macosx.patch\" || exit 1\nsudo /bin/sh ./darwin_configure.sh \"$PROJECT_DIR\" || exit 1\nsudo $CMD_MAKE -j2 || exit 1\nsudo $CMD_MAKE install DESTDIR=\"$MACFUSE_ROOT\" || exit 1\nsudo $CMD_LN -s libfuse.dylib \"$MACFUSE_ROOT\"/usr/local/lib/libfuse.0.dylib || exit 1\n\n# Build MacFUSE.framework\ncd \"$PROJECT_DIR/../../sdk-objc\" || exit 1\nsudo $CMD_XCODEBUILD -configuration Release \"MACFUSE_BUILD_ROOT=$ MACFUSE_ROOT\" \"MACFUSE_BUNDLE_VERSION_LITERAL=$MACFUSE_VERSION\" \"CUSTOM_CFLAGS=-DMACFUSE_TARGET_OS=MAC_OS_X_VERSION_10_4\" || exit 1\nsudo $CMD_CP -pR build/Release/*.framework $MACFUSE_ROOT/Library/Frameworks/ || exit 1\n\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_ROOT\"/* || exit 1\nsudo $CMD_CHMOD u+s \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CHOWN root:admin $MACFUSE_ROOT/Library/ || exit 1\nsudo $CMD_CHOWN -R root:admin $MACFUSE_ROOT/Library/Frameworks|| exit 1\nsudo $CMD_CHMOD 0775 $MACFUSE_ROOT/Library/Frameworks || exit 1\nsudo $CMD_CHMOD 1775 $MACFUSE_ROOT/Library/ || exit 1\n\ncd \"$MACFUSE_ROOT\" || exit 1\n\nsudo $CMD_RM -f /tmp/\"$MACFUSE_CORE_VERSIONED_NAME\".tar* || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_MKDIR -p \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_TAR -cpf \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\"/\"$MACFUSE_CORE_VERSIONED_NAME\".tar . || exit 1\ncd \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_BZIP2 -9 \"$MACFUSE_CORE_VERSIONED_NAME\".tar || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_OUT_NAME\" || exit 1\n\n# Create the MacFUSE Installer Package\n\ncd \"$PROJECT_DIR/../packaging/macfuse-core/\" && sudo ./make-pkg.sh \"$OS_VERSION\" \"$MACFUSE_VERSION\""; -+ shellScript = "# Create MacFUSE Tarball\n\nPATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/Developer/Applications\n\nCMD_BZIP2=bzip2\nCMD_CHMOD=chmod\nCMD_CHOWN=chown\nCMD_CP=/bin/cp\nCMD_ID=id\nCMD_LN=ln\nCMD_MAKE=make\nCMD_MKDIR=mkdir\nCMD_PATCH=patch\nCMD_RM=rm\nCMD_TAR=tar\nCMD_XCODEBUILD=xcodebuild\n\n# If we are not running as root, just bail out.\nmy_uid=`$CMD_ID -u`\nif [ $my_uid != 0 ]\nthen\n exit 0\nfi\n\nMACFUSE_CORE_VERSIONED_NAME=macfuse-core-\"$OS_VERSION\"-\"$MACFUSE_VERSION\"\n\nMACFUSE_OUT_NAME=macfuse_out-\"$OS_VERSION\"\nMACFUSE_OUT=\"/tmp/$MACFUSE_OUT_NAME\"\nMACFUSE_BUILD=\"$MACFUSE_OUT/build/\"\nMACFUSE_ROOT=\"$MACFUSE_OUT/pkgroot/\"\nMACFUSE_BUNDLE_NAME=fusefs.fs\n\nsudo $CMD_RM -rf $MACFUSE_OUT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_BUILD || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/System/Library/Filesystems/ || exit 1\ nsudo $CMD_MKDIR -p $MACFUSE_ROOT/Library/Frameworks/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/include/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/pkgconfig/ || exit 1\n\nMACFUSE_BUNDLE_DIR=\"$MACFUSE_ROOT/System/Library/Filesystems/$MACFUSE_BUNDLE_NAME\"\nMACFUSE_BUNDLE_SUPPORT_DIR=\"$MACFUSE_BUNDLE_DIR/Support\"\n\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/fusefs.fs\" \"$MACFUSE_BUNDLE_DIR\" || exit 1\nsudo $CMD_MKDIR -p \"$MACFUSE_BUNDLE_SUPPORT_DIR\" || exit 1\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/fusefs.kext\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/fusefs.kext\" || exit 1\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/load_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/mount_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/mount_fusefs\" || exit 1\n\n# Build the user-space FUSE library\nsudo $CMD_TAR -C \"$MACFUSE_BUILD\" -xzf \"$PROJECT_DIR/../libfuse/fuse-current.tar.gz\" || exit 1\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_BUILD\"/fuse* || exit 1\ncd \"$MACFUSE_BUILD\"/fuse* || exit 1\nsudo $CMD_PATCH -p1 < \"$PROJECT_DIR/../libfuse/fuse-current-macosx.patch\" || exit 1\nsudo /bin/sh ./darwin_configure.sh \"$PROJECT_DIR\" || exit 1\nsudo $CMD_MAKE -j2 || exit 1\nsudo $CMD_MAKE install DESTDIR=\"$MACFUSE_ROOT\" || exit 1\nsudo $CMD_LN -s libfuse.dylib \"$MACFUSE_ROOT\"/usr/local/lib/libfuse.0.dylib || exit 1\n\n# Build MacFUSE.framework\ncd \"$PROJECT_DIR/../../sdk-objc\" || exit 1\nsudo $CMD_XCODEBUILD -configuration Release \"MACFUSE_BUILD_R OOT=$MACFUSE_ROOT\" \"MACFUSE_BUNDLE_VERSION_LITERAL=$MACFUSE_VERSION\" \"CUSTOM_CFLAGS=-DMACFUSE_TARGET_OS=MAC_OS_X_VERSION_10_4\" || exit 1\nsudo $CMD_CP -pR build/Release/*.framework $MACFUSE_ROOT/Library/Frameworks/ || exit 1\n\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_ROOT\"/* || exit 1\nsudo $CMD_CHMOD u+s \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CHOWN root:admin $MACFUSE_ROOT/Library/ || exit 1\nsudo $CMD_CHOWN -R root:admin $MACFUSE_ROOT/Library/Frameworks|| exit 1\nsudo $CMD_CHMOD 0775 $MACFUSE_ROOT/Library/Frameworks || exit 1\nsudo $CMD_CHMOD 1775 $MACFUSE_ROOT/Library/ || exit 1\n\ncd \"$MACFUSE_ROOT\" || exit 1\n\nsudo $CMD_RM -f /tmp/\"$MACFUSE_CORE_VERSIONED_NAME\".tar* || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_MKDIR -p \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_TAR -cpf \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\"/\"$MACFUSE_CORE_VERSIONED_NAME\".tar . || exit 1\ncd \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_BZIP2 -9 \"$MACFUSE_CORE_VERSIONED_NAME\".tar || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_OUT_NAME\" || exit 1\n\n# Create the MacFUSE Installer Package\n\ncd \"$PROJECT_DIR/../packaging/macfuse-core/\" && sudo ./make-pkg.sh \"$OS_VERSION\" \"$MACFUSE_VERSION\""; +- shellScript = "# Create MacFUSE Tarball\n\nPATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/Developer/Applications\n\nCMD_BZIP2=bzip2\nCMD_CHMOD=chmod\nCMD_CHOWN=chown\nCMD_CP=cp\nCMD_ID=id\nCMD_LN=ln\nCMD_MAKE=make\nCMD_MKDIR=mkdir\nCMD_PATCH=patch\nCMD_RM=rm\nCMD_TAR=tar\nCMD_XCODEBUILD=xcodebuild\n\n# If we are not running as root, just bail out.\nmy_uid=`$CMD_ID -u`\nif [ $my_uid != 0 ]\nthen\n exit 0\nfi\n\nMACFUSE_CORE_VERSIONED_NAME=macfuse-core-\"$OS_VERSION\"-\"$MACFUSE_VERSION\"\n\nMACFUSE_OUT_NAME=macfuse_out-\"$OS_VERSION\"\nMACFUSE_OUT=\"/tmp/$MACFUSE_OUT_NAME\"\nMACFUSE_BUILD=\"$MACFUSE_OUT/build/\"\nMACFUSE_ROOT=\"$MACFUSE_OUT/pkgroot/\"\nMACFUSE_BUNDLE_NAME=fusefs.fs\n\nsudo $CMD_RM -rf $MACFUSE_OUT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_BUILD || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/System/Library/Filesystems/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/Library/Frameworks/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/include/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/pkgconfig/ || exit 1\n\nMACFUSE_BUNDLE_DIR=\"$MACFUSE_ROOT/System/Library/Filesystems/$MACFUSE_BUNDLE_NAME\"\nMACFUSE_BUNDLE_SUPPORT_DIR=\"$MACFUSE_BUNDLE_DIR/Support\"\n\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/fusefs.fs\" \"$MACFUSE_BUNDLE_DIR\" || exit 1\nsudo $CMD_MKDIR -p \"$MACFUSE_BUNDLE_SUPPORT_DIR\" || exit 1\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/fusefs.kext\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/fusefs.kext\" || exit 1\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/load_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/mount_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/mount_fusefs\" || exit 1\n\n# Build the user- space FUSE library\nsudo $CMD_TAR -C \"$MACFUSE_BUILD\" -xzf \"$PROJECT_DIR/../libfuse/fuse-current.tar.gz\" || exit 1\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_BUILD\"/fuse* || exit 1\ncd \"$MACFUSE_BUILD\"/fuse* || exit 1\nsudo $CMD_PATCH -p1 < \"$PROJECT_DIR/../libfuse/fuse-current-macosx.patch\" || exit 1\nsudo /bin/sh ./darwin_configure.sh \"$PROJECT_DIR\" || exit 1\nsudo $CMD_MAKE -j2 || exit 1\nsudo $CMD_MAKE install DESTDIR=\"$MACFUSE_ROOT\" || exit 1\n#sudo $CMD_LN -s libfuse.dylib \"$MACFUSE_ROOT\"/usr/local/lib/libfuse.0.dylib || exit 1\n\n# Build MacFUSE.framework\ncd \"$PROJECT_DIR/../../sdk-objc\" || exit 1\nsudo $CMD_XCODEBUILD -configuration Release \"MACFUSE_BUILD_ROOT= $MACFUSE_ROOT\" \"MACFUSE_BUNDLE_VERSION_LITERAL=$MACFUSE_VERSION\" \"CUSTOM_CFLAGS=-DMACFUSE_TARGET_OS=MAC_OS_X_VERSION_10_4\" || exit 1\nsudo $CMD_CP -pR build/Release/*.framework $MACFUSE_ROOT/Library/Frameworks/ || exit 1\n\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_ROOT\"/* || exit 1\nsudo $CMD_CHMOD u+s \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CHOWN root:admin $MACFUSE_ROOT/Library/ || exit 1\nsudo $CMD_CHOWN -R root:admin $MACFUSE_ROOT/Library/Frameworks|| exit 1\nsudo $CMD_CHMOD 0775 $MACFUSE_ROOT/Library/Frameworks || exit 1\nsudo $CMD_CHMOD 1775 $MACFUSE_ROOT/Library/ || exit 1\n\ncd \"$MACFUSE_ROOT\" || exit 1\n\nsudo $CMD_RM -f /tmp/\"$MACFUSE_CORE_VERSIONED_NAME\".tar* || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_MKDIR -p \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_TAR -cpf \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\"/\"$MACFUSE_CORE_VERSIONED_NAME\".tar . || exit 1\ncd \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_BZIP2 -9 \"$MACFUSE_CORE_VERSIONED_NAME\".tar || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_OUT_NAME\" || exit 1\n\n# Create the MacFUSE Installer Package\n\ncd \"$PROJECT_DIR/../packaging/macfuse-core/\" && sudo ./make-pkg.sh \"$OS_VERSION\" \"$MACFUSE_VERSION\""; ++ shellScript = "# Create MacFUSE Tarball\n\nPATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/Developer/Applications\n\nCMD_BZIP2=bzip2\nCMD_CHMOD=chmod\nCMD_CHOWN=chown\nCMD_CP=/bin/cp\nCMD_ID=id\nCMD_LN=ln\nCMD_MAKE=make\nCMD_MKDIR=mkdir\nCMD_PATCH=patch\nCMD_RM=rm\nCMD_TAR=tar\nCMD_XCODEBUILD=xcodebuild\n\n# If we are not running as root, just bail out.\nmy_uid=`$CMD_ID -u`\nif [ $my_uid != 0 ]\nthen\n exit 0\nfi\n\nMACFUSE_CORE_VERSIONED_NAME=macfuse-core-\"$OS_VERSION\"-\"$MACFUSE_VERSION\"\n\nMACFUSE_OUT_NAME=macfuse_out-\"$OS_VERSION\"\nMACFUSE_OUT=\"/tmp/$MACFUSE_OUT_NAME\"\nMACFUSE_BUILD=\"$MACFUSE_OUT/build/\"\nMACFUSE_ROOT=\"$MACFUSE_OUT/pkgroot/\"\nMACFUSE_BUNDLE_NAME=fusefs.fs\n\nsudo $CMD_RM -rf $MACFUSE_OUT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_BUILD || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/System/Library/Filesystems/ || exit 1\ nsudo $CMD_MKDIR -p $MACFUSE_ROOT/Library/Frameworks/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/include/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/pkgconfig/ || exit 1\n\nMACFUSE_BUNDLE_DIR=\"$MACFUSE_ROOT/System/Library/Filesystems/$MACFUSE_BUNDLE_NAME\"\nMACFUSE_BUNDLE_SUPPORT_DIR=\"$MACFUSE_BUNDLE_DIR/Support\"\n\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/fusefs.fs\" \"$MACFUSE_BUNDLE_DIR\" || exit 1\nsudo $CMD_MKDIR -p \"$MACFUSE_BUNDLE_SUPPORT_DIR\" || exit 1\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/fusefs.kext\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/fusefs.kext\" || exit 1\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/load_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CP -pR \"$BUILT_PRODUCTS_DIR/mount_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/mount_fusefs\" || exit 1\n\n# Build the user-space FUSE library\nsudo $CMD_TAR -C \"$MACFUSE_BUILD\" -xzf \"$PROJECT_DIR/../libfuse/fuse-current.tar.gz\" || exit 1\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_BUILD\"/fuse* || exit 1\ncd \"$MACFUSE_BUILD\"/fuse* || exit 1\nsudo $CMD_PATCH -p1 < \"$PROJECT_DIR/../libfuse/fuse-current-macosx.patch\" || exit 1\nsudo /bin/sh ./darwin_configure.sh \"$PROJECT_DIR\" || exit 1\nsudo $CMD_MAKE -j2 || exit 1\nsudo $CMD_MAKE install DESTDIR=\"$MACFUSE_ROOT\" || exit 1\n#sudo $CMD_LN -s libfuse.dylib \"$MACFUSE_ROOT\"/usr/local/lib/libfuse.0.dylib || exit 1\n\n# Build MacFUSE.framework\ncd \"$PROJECT_DIR/../../sdk-objc\" || exit 1\nsudo $CMD_XCODEBUILD -configuration Release \"MACFUSE_BUILD_ ROOT=$MACFUSE_ROOT\" \"MACFUSE_BUNDLE_VERSION_LITERAL=$MACFUSE_VERSION\" \"CUSTOM_CFLAGS=-DMACFUSE_TARGET_OS=MAC_OS_X_VERSION_10_4\" || exit 1\nsudo $CMD_CP -pR build/Release/*.framework $MACFUSE_ROOT/Library/Frameworks/ || exit 1\n\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_ROOT\"/* || exit 1\nsudo $CMD_CHMOD u+s \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CHOWN root:admin $MACFUSE_ROOT/Library/ || exit 1\nsudo $CMD_CHOWN -R root:admin $MACFUSE_ROOT/Library/Frameworks|| exit 1\nsudo $CMD_CHMOD 0775 $MACFUSE_ROOT/Library/Frameworks || exit 1\nsudo $CMD_CHMOD 1775 $MACFUSE_ROOT/Library/ || exit 1\n\ncd \"$MACFUSE_ROOT\" || exit 1\n\nsudo $CMD_RM -f /tmp/\"$MACFUSE_CORE_VERSIONED_NAME\".tar* || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_MKDIR -p \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_TAR -cpf \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\"/\"$MACFUSE_CORE_VERSIONED_NAME\".tar . || exit 1\ncd \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_BZIP2 -9 \"$MACFUSE_CORE_VERSIONED_NAME\".tar || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_OUT_NAME\" || exit 1\n\n# Create the MacFUSE Installer Package\n\ncd \"$PROJECT_DIR/../packaging/macfuse-core/\" && sudo ./make-pkg.sh \"$OS_VERSION\" \"$MACFUSE_VERSION\""; }; /* End PBXShellScriptBuildPhase section */ Modified: trunk/dports/fuse/macfuse/files/patch-10.5-packaging-macfuse-core-make-pkg.sh =================================================================== --- trunk/dports/fuse/macfuse/files/patch-10.5-packaging-macfuse-core-make-pkg.sh 2008-12-04 00:00:24 UTC (rev 43045) +++ trunk/dports/fuse/macfuse/files/patch-10.5-packaging-macfuse-core-make-pkg.sh 2008-12-04 00:01:43 UTC (rev 43046) @@ -1,5 +1,14 @@ ---- 10.5/packaging/macfuse-core/make-pkg.sh.orig 2007-11-04 12:15:47.000000000 -0700 -+++ 10.5/packaging/macfuse-core/make-pkg.sh 2008-07-05 15:31:40.000000000 -0600 +--- 10.5/packaging/macfuse-core/make-pkg.sh.old 2008-12-03 15:25:16.000000000 -0800 ++++ 10.5/packaging/macfuse-core/make-pkg.sh 2008-12-03 15:25:43.000000000 -0800 +@@ -88,7 +88,7 @@ + + # Copy the uninstall script + UNINSTALL_DST="$DISTRIBUTION_FOLDER/Library/Filesystems/fusefs.fs/Support/uninstall-macfuse-core.sh" +-sudo cp "$UNINSTALL_SCRIPT" "$UNINSTALL_DST" ++sudo /bin/cp "$UNINSTALL_SCRIPT" "$UNINSTALL_DST" + sudo chmod 755 "$UNINSTALL_DST" + sudo chown root:wheel "$UNINSTALL_DST" + @@ -131,7 +131,7 @@ VOLUME_PATH="/Volumes/$VOLUME_NAME" @@ -9,7 +18,7 @@ if [ $? -ne 0 ] then hdiutil detach "$VOLUME_PATH" -@@ -139,7 +139,7 @@ +@@ -139,14 +139,14 @@ fi # Set the custom icon. @@ -18,4 +27,12 @@ sudo /Developer/Tools/SetFile -a C "$VOLUME_PATH" # Copy over the license file. - +-sudo cp "$INSTALL_RESOURCES/License.rtf" "$VOLUME_PATH"/License.rtf ++sudo /bin/cp "$INSTALL_RESOURCES/License.rtf" "$VOLUME_PATH"/License.rtf + + # Copy over the CHANGELOG.txt. +-sudo cp "../../../../CHANGELOG.txt" "$VOLUME_PATH"/CHANGELOG.txt ++sudo /bin/cp "../../../../CHANGELOG.txt" "$VOLUME_PATH"/CHANGELOG.txt + + # Detach the volume. + hdiutil detach "$VOLUME_PATH" Modified: trunk/dports/fuse/macfuse/files/patch-10.5-project.pbxproj =================================================================== --- trunk/dports/fuse/macfuse/files/patch-10.5-project.pbxproj 2008-12-04 00:00:24 UTC (rev 43045) +++ trunk/dports/fuse/macfuse/files/patch-10.5-project.pbxproj 2008-12-04 00:01:43 UTC (rev 43046) @@ -1,11 +1,11 @@ ---- 10.5/fusefs/fusefs.xcodeproj/project.pbxproj -+++ 10.5/fusefs/fusefs.xcodeproj/project.pbxproj +--- 10.5/fusefs/fusefs.xcodeproj/project.pbxproj.old 2008-12-03 15:23:43.000000000 -0800 ++++ 10.5/fusefs/fusefs.xcodeproj/project.pbxproj 2008-12-03 15:24:12.000000000 -0800 @@ -473,7 +473,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; -- shellScript = "# Create MacFUSE Tarball\n\nPATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/Developer/Applications\n\nCMD_BZIP2=bzip2\nCMD_CHMOD=chmod\nCMD_CHOWN=chown\nCMD_CP=cp\nCMD_ID=id\nCMD_LN=ln\nCMD_MAKE=make\nCMD_MKDIR=mkdir\nCMD_PATCH=patch\nCMD_RM=rm\nCMD_TAR=tar\nCMD_XCODEBUILD=xcodebuild\n\n# If we are not running as root, just bail out.\nmy_uid=`$CMD_ID -u`\nif [ $my_uid != 0 ]\nthen\n exit 0\nfi\n\nMACFUSE_CORE_VERSIONED_NAME=macfuse-core-\"$OS_VERSION\"-\"$MACFUSE_VERSION\"\n\nMACFUSE_OUT_NAME=macfuse_out-\"$OS_VERSION\"\nMACFUSE_OUT=\"/tmp/$MACFUSE_OUT_NAME\"\nMACFUSE_BUILD=\"$MACFUSE_OUT/build/\"\nMACFUSE_ROOT=\"$MACFUSE_OUT/pkgroot/\"\nMACFUSE_BUNDLE_NAME=fusefs.fs\n\nsudo $CMD_RM -rf $MACFUSE_OUT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_BUILD || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/Library/Filesystems/ || exit 1\nsudo $C MD_MKDIR -p $MACFUSE_ROOT/Library/Frameworks/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/include/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/pkgconfig/ || exit 1\n\nMACFUSE_BUNDLE_DIR=\"$MACFUSE_ROOT/Library/Filesystems/$MACFUSE_BUNDLE_NAME\"\nMACFUSE_BUNDLE_SUPPORT_DIR=\"$MACFUSE_BUNDLE_DIR/Support\"\n\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/fusefs.fs\" \"$MACFUSE_BUNDLE_DIR\" || exit 1\nsudo $CMD_MKDIR -p \"$MACFUSE_BUNDLE_SUPPORT_DIR\" || exit 1\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/fusefs.kext\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/fusefs.kext\" || exit 1\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/load_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/mount_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/mount_fusefs\" || exit 1\n\n# Build the user-space FUSE library\nsudo $CMD_TAR -C \"$MACFUSE_BUILD\" -xzf \"$PROJECT_DIR/../libfuse/fuse-current.tar.gz\" || exit 1\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_BUILD\"/fuse* || exit 1\ncd \"$MACFUSE_BUILD\"/fuse* || exit 1\nsudo $CMD_PATCH -p1 < \"$PROJECT_DIR/../libfuse/fuse-current-macosx.patch\" || exit 1\nsudo /bin/sh ./darwin_configure.sh \"$PROJECT_DIR\" || exit 1\nsudo $CMD_MAKE -j2 || exit 1\nsudo $CMD_MAKE install DESTDIR=\"$MACFUSE_ROOT\" || exit 1\nsudo $CMD_LN -s libfuse.dylib \"$MACFUSE_ROOT\"/usr/local/lib/libfuse.0.dylib || exit 1\n\n# Build MacFUSE.framework\ncd \"$PROJECT_DIR/../../sdk-objc\" || exit 1\nsudo $CMD_XCODEBUILD -configuration Release \"MACFUSE_BUILD_ROOT=$MACF USE_ROOT\" \"MACFUSE_BUNDLE_VERSION_LITERAL=$MACFUSE_VERSION\" || exit 1\nsudo $CMD_CP -pRX build/Release/*.framework $MACFUSE_ROOT/Library/Frameworks/ || exit 1\n\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_ROOT\"/* || exit 1\nsudo $CMD_CHMOD u+s \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CHOWN root:admin $MACFUSE_ROOT/Library/ || exit 1\nsudo $CMD_CHOWN -R root:admin $MACFUSE_ROOT/Library/Frameworks|| exit 1\nsudo $CMD_CHMOD 0775 $MACFUSE_ROOT/Library/Frameworks || exit 1\nsudo $CMD_CHMOD 1775 $MACFUSE_ROOT/Library/ || exit 1\nsudo $CMD_CHMOD -h 755 `find $MACFUSE_ROOT/usr/local/lib -type l` # no exit upon error\nsudo $CMD_CHMOD -h 755 `find $MACFUSE_ROOT/Library/Frameworks/ -type l` # no exit upon error\n\ncd \"$MACFUSE_ROOT\" || exit 1\n\nsudo $CMD_RM -f /tmp/\"$MACFUSE_CORE_VERSIONED_NAME\".tar* || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\ " || exit 1\nsudo $CMD_MKDIR -p \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_TAR -cpf \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\"/\"$MACFUSE_CORE_VERSIONED_NAME\".tar . || exit 1\ncd \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_BZIP2 -9 \"$MACFUSE_CORE_VERSIONED_NAME\".tar || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_OUT_NAME\" || exit 1\n\n# Create the MacFUSE Installer Package\n\ncd \"$PROJECT_DIR/../packaging/macfuse-core/\" && sudo ./make-pkg.sh \"$OS_VERSION\" \"$MACFUSE_VERSION\""; -+ shellScript = "# Create MacFUSE Tarball\n\nPATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/Developer/Applications\n\nCMD_BZIP2=bzip2\nCMD_CHMOD=chmod\nCMD_CHOWN=chown\nCMD_CP=/bin/cp\nCMD_ID=id\nCMD_LN=ln\nCMD_MAKE=make\nCMD_MKDIR=mkdir\nCMD_PATCH=patch\nCMD_RM=rm\nCMD_TAR=tar\nCMD_XCODEBUILD=xcodebuild\n\n# If we are not running as root, just bail out.\nmy_uid=`$CMD_ID -u`\nif [ $my_uid != 0 ]\nthen\n exit 0\nfi\n\nMACFUSE_CORE_VERSIONED_NAME=macfuse-core-\"$OS_VERSION\"-\"$MACFUSE_VERSION\"\n\nMACFUSE_OUT_NAME=macfuse_out-\"$OS_VERSION\"\nMACFUSE_OUT=\"/tmp/$MACFUSE_OUT_NAME\"\nMACFUSE_BUILD=\"$MACFUSE_OUT/build/\"\nMACFUSE_ROOT=\"$MACFUSE_OUT/pkgroot/\"\nMACFUSE_BUNDLE_NAME=fusefs.fs\n\nsudo $CMD_RM -rf $MACFUSE_OUT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_BUILD || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/Library/Filesystems/ || exit 1\nsu do $CMD_MKDIR -p $MACFUSE_ROOT/Library/Frameworks/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/include/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/pkgconfig/ || exit 1\n\nMACFUSE_BUNDLE_DIR=\"$MACFUSE_ROOT/Library/Filesystems/$MACFUSE_BUNDLE_NAME\"\nMACFUSE_BUNDLE_SUPPORT_DIR=\"$MACFUSE_BUNDLE_DIR/Support\"\n\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/fusefs.fs\" \"$MACFUSE_BUNDLE_DIR\" || exit 1\nsudo $CMD_MKDIR -p \"$MACFUSE_BUNDLE_SUPPORT_DIR\" || exit 1\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/fusefs.kext\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/fusefs.kext\" || exit 1\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/load_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/mount_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/mount_fusefs\" || exit 1\n\n# Build the user- space FUSE library\nsudo $CMD_TAR -C \"$MACFUSE_BUILD\" -xzf \"$PROJECT_DIR/../libfuse/fuse-current.tar.gz\" || exit 1\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_BUILD\"/fuse* || exit 1\ncd \"$MACFUSE_BUILD\"/fuse* || exit 1\nsudo $CMD_PATCH -p1 < \"$PROJECT_DIR/../libfuse/fuse-current-macosx.patch\" || exit 1\nsudo /bin/sh ./darwin_configure.sh \"$PROJECT_DIR\" || exit 1\nsudo $CMD_MAKE -j2 || exit 1\nsudo $CMD_MAKE install DESTDIR=\"$MACFUSE_ROOT\" || exit 1\nsudo $CMD_LN -s libfuse.dylib \"$MACFUSE_ROOT\"/usr/local/lib/libfuse.0.dylib || exit 1\n\n# Build MacFUSE.framework\ncd \"$PROJECT_DIR/../../sdk-objc\" || exit 1\nsudo $CMD_XCODEBUILD -configuration Release \"MACFUSE_BUILD_ROOT= $MACFUSE_ROOT\" \"MACFUSE_BUNDLE_VERSION_LITERAL=$MACFUSE_VERSION\" || exit 1\nsudo $CMD_CP -pRX build/Release/*.framework $MACFUSE_ROOT/Library/Frameworks/ || exit 1\n\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_ROOT\"/* || exit 1\nsudo $CMD_CHMOD u+s \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CHOWN root:admin $MACFUSE_ROOT/Library/ || exit 1\nsudo $CMD_CHOWN -R root:admin $MACFUSE_ROOT/Library/Frameworks|| exit 1\nsudo $CMD_CHMOD 0775 $MACFUSE_ROOT/Library/Frameworks || exit 1\nsudo $CMD_CHMOD 1775 $MACFUSE_ROOT/Library/ || exit 1\nsudo $CMD_CHMOD -h 755 `find $MACFUSE_ROOT/usr/local/lib -type l` # no exit upon error\nsudo $CMD_CHMOD -h 755 `find $MACFUSE_ROOT/Library/Frameworks/ -type l` # no exit upon error\n\ncd \"$MACFUSE_ROOT\" || exit 1\n\nsudo $CMD_RM -f /tmp/\"$MACFUSE_CORE_VERSIONED_NAME\".tar* || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_CORE_VERSIONED_ NAME\" || exit 1\nsudo $CMD_MKDIR -p \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_TAR -cpf \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\"/\"$MACFUSE_CORE_VERSIONED_NAME\".tar . || exit 1\ncd \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_BZIP2 -9 \"$MACFUSE_CORE_VERSIONED_NAME\".tar || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_OUT_NAME\" || exit 1\n\n# Create the MacFUSE Installer Package\n\ncd \"$PROJECT_DIR/../packaging/macfuse-core/\" && sudo ./make-pkg.sh \"$OS_VERSION\" \"$MACFUSE_VERSION\""; +- shellScript = "# Create MacFUSE Tarball\n\nPATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/Developer/Applications\n\nCMD_BZIP2=bzip2\nCMD_CHMOD=chmod\nCMD_CHOWN=chown\nCMD_CP=cp\nCMD_ID=id\nCMD_LN=ln\nCMD_MAKE=make\nCMD_MKDIR=mkdir\nCMD_PATCH=patch\nCMD_RM=rm\nCMD_TAR=tar\nCMD_XCODEBUILD=xcodebuild\n\n# If we are not running as root, just bail out.\nmy_uid=`$CMD_ID -u`\nif [ $my_uid != 0 ]\nthen\n exit 0\nfi\n\nMACFUSE_CORE_VERSIONED_NAME=macfuse-core-\"$OS_VERSION\"-\"$MACFUSE_VERSION\"\n\nMACFUSE_OUT_NAME=macfuse_out-\"$OS_VERSION\"\nMACFUSE_OUT=\"/tmp/$MACFUSE_OUT_NAME\"\nMACFUSE_BUILD=\"$MACFUSE_OUT/build/\"\nMACFUSE_ROOT=\"$MACFUSE_OUT/pkgroot/\"\nMACFUSE_BUNDLE_NAME=fusefs.fs\n\nsudo $CMD_RM -rf $MACFUSE_OUT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_BUILD || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/Library/Filesystems/ || exit 1\nsudo $C MD_MKDIR -p $MACFUSE_ROOT/Library/Frameworks/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/include/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/pkgconfig/ || exit 1\n\nMACFUSE_BUNDLE_DIR=\"$MACFUSE_ROOT/Library/Filesystems/$MACFUSE_BUNDLE_NAME\"\nMACFUSE_BUNDLE_SUPPORT_DIR=\"$MACFUSE_BUNDLE_DIR/Support\"\n\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/fusefs.fs\" \"$MACFUSE_BUNDLE_DIR\" || exit 1\nsudo $CMD_MKDIR -p \"$MACFUSE_BUNDLE_SUPPORT_DIR\" || exit 1\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/fusefs.kext\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/fusefs.kext\" || exit 1\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/load_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/mount_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/mount_fusefs\" || exit 1\n\n# Build the user-space FUSE library\nsudo $CMD_TAR -C \"$MACFUSE_BUILD\" -xzf \"$PROJECT_DIR/../libfuse/fuse-current.tar.gz\" || exit 1\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_BUILD\"/fuse* || exit 1\ncd \"$MACFUSE_BUILD\"/fuse* || exit 1\nsudo $CMD_PATCH -p1 < \"$PROJECT_DIR/../libfuse/fuse-current-macosx.patch\" || exit 1\nsudo /bin/sh ./darwin_configure.sh \"$PROJECT_DIR\" || exit 1\nsudo $CMD_MAKE -j2 || exit 1\nsudo $CMD_MAKE install DESTDIR=\"$MACFUSE_ROOT\" || exit 1\n#sudo $CMD_LN -s libfuse.dylib \"$MACFUSE_ROOT\"/usr/local/lib/libfuse.0.dylib || exit 1\n\n# Build MacFUSE.framework\ncd \"$PROJECT_DIR/../../sdk-objc\" || exit 1\nsudo $CMD_XCODEBUILD -configuration Release \"MACFUSE_BUILD_ROOT=$MAC FUSE_ROOT\" \"MACFUSE_BUNDLE_VERSION_LITERAL=$MACFUSE_VERSION\" || exit 1\nsudo $CMD_CP -pRX build/Release/*.framework $MACFUSE_ROOT/Library/Frameworks/ || exit 1\n\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_ROOT\"/* || exit 1\nsudo $CMD_CHMOD u+s \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CHOWN root:admin $MACFUSE_ROOT/Library/ || exit 1\nsudo $CMD_CHOWN -R root:admin $MACFUSE_ROOT/Library/Frameworks|| exit 1\nsudo $CMD_CHMOD 0775 $MACFUSE_ROOT/Library/Frameworks || exit 1\nsudo $CMD_CHMOD 1775 $MACFUSE_ROOT/Library/ || exit 1\nsudo $CMD_CHMOD -h 755 `find $MACFUSE_ROOT/usr/local/lib -type l` # no exit upon error\nsudo $CMD_CHMOD -h 755 `find $MACFUSE_ROOT/Library/Frameworks/ -type l` # no exit upon error\n\ncd \"$MACFUSE_ROOT\" || exit 1\n\nsudo $CMD_RM -f /tmp/\"$MACFUSE_CORE_VERSIONED_NAME\".tar* || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_CORE_VERSIONED_NAME \" || exit 1\nsudo $CMD_MKDIR -p \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_TAR -cpf \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\"/\"$MACFUSE_CORE_VERSIONED_NAME\".tar . || exit 1\ncd \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_BZIP2 -9 \"$MACFUSE_CORE_VERSIONED_NAME\".tar || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_OUT_NAME\" || exit 1\n\n# Create the MacFUSE Installer Package\n\ncd \"$PROJECT_DIR/../packaging/macfuse-core/\" && sudo ./make-pkg.sh \"$OS_VERSION\" \"$MACFUSE_VERSION\""; ++ shellScript = "# Create MacFUSE Tarball\n\nPATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/Developer/Applications\n\nCMD_BZIP2=bzip2\nCMD_CHMOD=chmod\nCMD_CHOWN=chown\nCMD_CP=/bin/cp\nCMD_ID=id\nCMD_LN=ln\nCMD_MAKE=make\nCMD_MKDIR=mkdir\nCMD_PATCH=patch\nCMD_RM=rm\nCMD_TAR=tar\nCMD_XCODEBUILD=xcodebuild\n\n# If we are not running as root, just bail out.\nmy_uid=`$CMD_ID -u`\nif [ $my_uid != 0 ]\nthen\n exit 0\nfi\n\nMACFUSE_CORE_VERSIONED_NAME=macfuse-core-\"$OS_VERSION\"-\"$MACFUSE_VERSION\"\n\nMACFUSE_OUT_NAME=macfuse_out-\"$OS_VERSION\"\nMACFUSE_OUT=\"/tmp/$MACFUSE_OUT_NAME\"\nMACFUSE_BUILD=\"$MACFUSE_OUT/build/\"\nMACFUSE_ROOT=\"$MACFUSE_OUT/pkgroot/\"\nMACFUSE_BUNDLE_NAME=fusefs.fs\n\nsudo $CMD_RM -rf $MACFUSE_OUT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_BUILD || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/Library/Filesystems/ || exit 1\nsu do $CMD_MKDIR -p $MACFUSE_ROOT/Library/Frameworks/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/include/ || exit 1\nsudo $CMD_MKDIR -p $MACFUSE_ROOT/usr/local/lib/pkgconfig/ || exit 1\n\nMACFUSE_BUNDLE_DIR=\"$MACFUSE_ROOT/Library/Filesystems/$MACFUSE_BUNDLE_NAME\"\nMACFUSE_BUNDLE_SUPPORT_DIR=\"$MACFUSE_BUNDLE_DIR/Support\"\n\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/fusefs.fs\" \"$MACFUSE_BUNDLE_DIR\" || exit 1\nsudo $CMD_MKDIR -p \"$MACFUSE_BUNDLE_SUPPORT_DIR\" || exit 1\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/fusefs.kext\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/fusefs.kext\" || exit 1\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/load_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CP -pRX \"$BUILT_PRODUCTS_DIR/mount_fusefs\" \"$MACFUSE_BUNDLE_SUPPORT_DIR/mount_fusefs\" || exit 1\n\n# Build the user- space FUSE library\nsudo $CMD_TAR -C \"$MACFUSE_BUILD\" -xzf \"$PROJECT_DIR/../libfuse/fuse-current.tar.gz\" || exit 1\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_BUILD\"/fuse* || exit 1\ncd \"$MACFUSE_BUILD\"/fuse* || exit 1\nsudo $CMD_PATCH -p1 < \"$PROJECT_DIR/../libfuse/fuse-current-macosx.patch\" || exit 1\nsudo /bin/sh ./darwin_configure.sh \"$PROJECT_DIR\" || exit 1\nsudo $CMD_MAKE -j2 || exit 1\nsudo $CMD_MAKE install DESTDIR=\"$MACFUSE_ROOT\" || exit 1\n#sudo $CMD_LN -s libfuse.dylib \"$MACFUSE_ROOT\"/usr/local/lib/libfuse.0.dylib || exit 1\n\n# Build MacFUSE.framework\ncd \"$PROJECT_DIR/../../sdk-objc\" || exit 1\nsudo $CMD_XCODEBUILD -configuration Release \"MACFUSE_BUILD_ROOT =$MACFUSE_ROOT\" \"MACFUSE_BUNDLE_VERSION_LITERAL=$MACFUSE_VERSION\" || exit 1\nsudo $CMD_CP -pRX build/Release/*.framework $MACFUSE_ROOT/Library/Frameworks/ || exit 1\n\nsudo $CMD_CHOWN -R root:wheel \"$MACFUSE_ROOT\"/* || exit 1\nsudo $CMD_CHMOD u+s \"$MACFUSE_BUNDLE_SUPPORT_DIR/load_fusefs\" || exit 1\nsudo $CMD_CHOWN root:admin $MACFUSE_ROOT/Library/ || exit 1\nsudo $CMD_CHOWN -R root:admin $MACFUSE_ROOT/Library/Frameworks|| exit 1\nsudo $CMD_CHMOD 0775 $MACFUSE_ROOT/Library/Frameworks || exit 1\nsudo $CMD_CHMOD 1775 $MACFUSE_ROOT/Library/ || exit 1\nsudo $CMD_CHMOD -h 755 `find $MACFUSE_ROOT/usr/local/lib -type l` # no exit upon error\nsudo $CMD_CHMOD -h 755 `find $MACFUSE_ROOT/Library/Frameworks/ -type l` # no exit upon error\n\ncd \"$MACFUSE_ROOT\" || exit 1\n\nsudo $CMD_RM -f /tmp/\"$MACFUSE_CORE_VERSIONED_NAME\".tar* || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_CORE_VERSIONED _NAME\" || exit 1\nsudo $CMD_MKDIR -p \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_TAR -cpf \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\"/\"$MACFUSE_CORE_VERSIONED_NAME\".tar . || exit 1\ncd \"/tmp/$MACFUSE_CORE_VERSIONED_NAME\" || exit 1\nsudo $CMD_BZIP2 -9 \"$MACFUSE_CORE_VERSIONED_NAME\".tar || exit 1\nsudo $CMD_RM -rf \"/tmp/$MACFUSE_OUT_NAME\" || exit 1\n\n# Create the MacFUSE Installer Package\n\ncd \"$PROJECT_DIR/../packaging/macfuse-core/\" && sudo ./make-pkg.sh \"$OS_VERSION\" \"$MACFUSE_VERSION\""; }; /* End PBXShellScriptBuildPhase section */ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 16:02:01 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 16:02:01 -0800 (PST) Subject: [43047] trunk/dports/net/nfsen/Portfile Message-ID: <20081204000201.AA828824ECD@beta.macosforge.org> Revision: 43047 http://trac.macports.org/changeset/43047 Author: mcalhoun at macports.org Date: 2008-12-03 16:02:01 -0800 (Wed, 03 Dec 2008) Log Message: ----------- nfsen: change perl dependency from port:perl5.8 to path:bin/perl (see #16830) Fixes #17442 (maintainer timeout). Modified Paths: -------------- trunk/dports/net/nfsen/Portfile Modified: trunk/dports/net/nfsen/Portfile =================================================================== --- trunk/dports/net/nfsen/Portfile 2008-12-04 00:01:43 UTC (rev 43046) +++ trunk/dports/net/nfsen/Portfile 2008-12-04 00:02:01 UTC (rev 43047) @@ -15,7 +15,7 @@ http://nfsen.sourceforge.net/ checksums md5 1c4f057bbb3766090b40bda3ab6b81d2 -depends_lib port:perl5.8 \ +depends_lib path:bin/perl:perl5 \ port:rrdtool \ port:p5-mailtools \ port:p5-sys-syslog \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 16:04:24 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 16:04:24 -0800 (PST) Subject: [43048] trunk/dports/x11/xorg-libXt/Portfile Message-ID: <20081204000424.DD06E824FEC@beta.macosforge.org> Revision: 43048 http://trac.macports.org/changeset/43048 Author: jeremyhu at macports.org Date: 2008-12-03 16:04:24 -0800 (Wed, 03 Dec 2008) Log Message: ----------- libXt: Added livecheck Modified Paths: -------------- trunk/dports/x11/xorg-libXt/Portfile Modified: trunk/dports/x11/xorg-libXt/Portfile =================================================================== --- trunk/dports/x11/xorg-libXt/Portfile 2008-12-04 00:02:01 UTC (rev 43047) +++ trunk/dports/x11/xorg-libXt/Portfile 2008-12-04 00:04:24 UTC (rev 43048) @@ -29,3 +29,8 @@ depends_lib port:xorg-libXdmcp \ port:xorg-libsm \ port:xorg-libX11 + +livecheck.check regex +livecheck.url [lindex ${master_sites} 0]?C=M&O=D +livecheck.regex libXt-(\\d+(?:\\.\\d+)*) + -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 16:05:49 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 16:05:49 -0800 (PST) Subject: [43049] trunk/dports/net/rancid/Portfile Message-ID: <20081204000549.C1C788251ED@beta.macosforge.org> Revision: 43049 http://trac.macports.org/changeset/43049 Author: mcalhoun at macports.org Date: 2008-12-03 16:05:48 -0800 (Wed, 03 Dec 2008) Log Message: ----------- rancid: change perl dependency from port:perl5.8 to path:bin/perl (see #16830) Fixes #17441 (maintainer timeout). Modified Paths: -------------- trunk/dports/net/rancid/Portfile Modified: trunk/dports/net/rancid/Portfile =================================================================== --- trunk/dports/net/rancid/Portfile 2008-12-04 00:04:24 UTC (rev 43048) +++ trunk/dports/net/rancid/Portfile 2008-12-04 00:05:48 UTC (rev 43049) @@ -18,7 +18,7 @@ master_sites ftp://ftp.shrubbery.net/pub/rancid/ checksums md5 545355c56b56fc94adf09df8b3e40ded -depends_lib port:perl5.8 \ +depends_lib path:bin/perl:perl5 \ port:openssl \ port:p5-lockfile-simple -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 16:07:26 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 16:07:26 -0800 (PST) Subject: [43050] trunk/dports/x11/xorg-libXau/Portfile Message-ID: <20081204000727.49D78825262@beta.macosforge.org> Revision: 43050 http://trac.macports.org/changeset/43050 Author: jeremyhu at macports.org Date: 2008-12-03 16:07:26 -0800 (Wed, 03 Dec 2008) Log Message: ----------- libXau: Version bump. Added livecheck. Modified Paths: -------------- trunk/dports/x11/xorg-libXau/Portfile Modified: trunk/dports/x11/xorg-libXau/Portfile =================================================================== --- trunk/dports/x11/xorg-libXau/Portfile 2008-12-04 00:05:48 UTC (rev 43049) +++ trunk/dports/x11/xorg-libXau/Portfile 2008-12-04 00:07:26 UTC (rev 43050) @@ -3,9 +3,9 @@ PortSystem 1.0 name xorg-libXau -version 1.0.3 -categories devel -maintainers bbyer at macports.org +version 1.0.4 +categories x11 devel +maintainers jeremyhu description X.org libXau homepage http://www.x.org platforms darwin macosx @@ -13,7 +13,16 @@ master_sites ${homepage}/pub/individual/lib/ distname libXau-${version} -checksums sha1 e365d2b9c781ab8d07f79c85bbc48480d1574199 +checksums md5 0f2b88d857e0a3f5898e4759c541af46 \ + sha1 d73880b97fc7ddb8d8f59e1cd968337427e20ec2 \ + rmd160 9ca0318c62b6bcf97b8460fd89b0788b07f459ca use_bzip2 yes +use_parallel_build yes -depends_lib port:xorg-util-macros port:xorg-libpthread-stubs port:xorg-xproto +depends_build port:pkgconfig \ + port:xorg-xproto + +livecheck.check regex +livecheck.url [lindex ${master_sites} 0]?C=M&O=D +livecheck.regex libXau-(\\d+(?:\\.\\d+)*) + -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 16:08:02 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 16:08:02 -0800 (PST) Subject: [43051] trunk/dports/net/rrdtool/Portfile Message-ID: <20081204000803.395B18252C0@beta.macosforge.org> Revision: 43051 http://trac.macports.org/changeset/43051 Author: mcalhoun at macports.org Date: 2008-12-03 16:08:02 -0800 (Wed, 03 Dec 2008) Log Message: ----------- rrdtool: change perl dependency from port:perl5.8 to path:bin/perl (see #16830) Fixes #17440 (maintainer timeout). Modified Paths: -------------- trunk/dports/net/rrdtool/Portfile Modified: trunk/dports/net/rrdtool/Portfile =================================================================== --- trunk/dports/net/rrdtool/Portfile 2008-12-04 00:07:26 UTC (rev 43050) +++ trunk/dports/net/rrdtool/Portfile 2008-12-04 00:08:02 UTC (rev 43051) @@ -23,7 +23,7 @@ port:gettext \ port:pango \ port:cairo \ - port:perl5.8 \ + path:bin/perl:perl5 \ port:tcl \ port:zlib \ port:libpng \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 16:15:22 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 16:15:22 -0800 (PST) Subject: [43052] trunk/dports/x11 Message-ID: <20081204001522.BB0618254B2@beta.macosforge.org> Revision: 43052 http://trac.macports.org/changeset/43052 Author: jeremyhu at macports.org Date: 2008-12-03 16:15:22 -0800 (Wed, 03 Dec 2008) Log Message: ----------- New port: xorg-printproto Added Paths: ----------- trunk/dports/x11/xorg-printproto/ trunk/dports/x11/xorg-printproto/Portfile Added: trunk/dports/x11/xorg-printproto/Portfile =================================================================== --- trunk/dports/x11/xorg-printproto/Portfile (rev 0) +++ trunk/dports/x11/xorg-printproto/Portfile 2008-12-04 00:15:22 UTC (rev 43052) @@ -0,0 +1,26 @@ +# $Id$ + +PortSystem 1.0 + +name xorg-printproto +version 1.0.4 +categories x11 devel +maintainers jeremyhu +description X.org xproto +homepage http://www.x.org +platforms darwin +long_description X.org PrintProto protocol headers. +master_sites ${homepage}/pub/individual/proto/ + +distname printproto-${version} +use_bzip2 yes + +checksums md5 7321847a60748b4d2f1fa16db4b6ede8 \ + sha1 8da2d19faca74f894d0e2b3e142283b725c0ef46 \ + rmd160 ab23d31e5b13fd7260f2a10d789f5d8e89bf775f + +universal_variant no + +livecheck.check regex +livecheck.url ${master_sites}?C=M&O=D +livecheck.regex printproto-(\\d+(?:\\.\\d+)*) Property changes on: trunk/dports/x11/xorg-printproto/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 16:16:12 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 16:16:12 -0800 (PST) Subject: [43053] trunk/dports/x11/xorg-proto/Portfile Message-ID: <20081204001612.55D8482551D@beta.macosforge.org> Revision: 43053 http://trac.macports.org/changeset/43053 Author: jeremyhu at macports.org Date: 2008-12-03 16:16:11 -0800 (Wed, 03 Dec 2008) Log Message: ----------- xorg-proto: Pull in printproto Modified Paths: -------------- trunk/dports/x11/xorg-proto/Portfile Modified: trunk/dports/x11/xorg-proto/Portfile =================================================================== --- trunk/dports/x11/xorg-proto/Portfile 2008-12-04 00:15:22 UTC (rev 43052) +++ trunk/dports/x11/xorg-proto/Portfile 2008-12-04 00:16:11 UTC (rev 43053) @@ -3,7 +3,7 @@ PortSystem 1.0 name xorg-proto -version 20070907 +version 20081203 categories x11 devel maintainers jeremyhu description X.org proto meta-package @@ -22,6 +22,7 @@ port:xorg-fontsproto \ port:xorg-inputproto \ port:xorg-kbproto \ + port:xorg-printproto \ port:xorg-randrproto \ port:xorg-recordproto \ port:xorg-renderproto \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 16:17:44 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 16:17:44 -0800 (PST) Subject: [43054] trunk/dports/x11 Message-ID: <20081204001744.47B018255A5@beta.macosforge.org> Revision: 43054 http://trac.macports.org/changeset/43054 Author: jeremyhu at macports.org Date: 2008-12-03 16:17:43 -0800 (Wed, 03 Dec 2008) Log Message: ----------- New port: xorg-libXp Added Paths: ----------- trunk/dports/x11/xorg-libXp/ trunk/dports/x11/xorg-libXp/Portfile Added: trunk/dports/x11/xorg-libXp/Portfile =================================================================== --- trunk/dports/x11/xorg-libXp/Portfile (rev 0) +++ trunk/dports/x11/xorg-libXp/Portfile 2008-12-04 00:17:43 UTC (rev 43054) @@ -0,0 +1,34 @@ +# $Id$ + +PortSystem 1.0 + +name xorg-libXp +version 1.0.0 +categories x11 devel +maintainers jeremyhu +description X.org libXp +homepage http://www.x.org +platforms darwin macosx +long_description Xprint client library +master_sites ${homepage}/pub/individual/lib/ + +distname libXp-${version} +checksums md5 0f4ac39108c1ae8c443cdfac259b58fa \ + sha1 fac67954e247fc805af6e495ff8695b5724cd1e2 \ + rmd160 5d12e6bd1598654d1aa47a818047d1e0c6f50145 + +use_bzip2 yes +use_parallel_build yes + +depends_build port:pkgconfig \ + port:xorg-printproto \ + port:xorg-xproto \ + port:xorg-xextproto +depends_lib port:xorg-libXext \ + port:xorg-libXau \ + port:xorg-libX11 + +livecheck.check regex +livecheck.url [lindex ${master_sites} 0]?C=M&O=D +livecheck.regex libXp-(\\d+(?:\\.\\d+)*) + Property changes on: trunk/dports/x11/xorg-libXp/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 16:28:31 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 16:28:31 -0800 (PST) Subject: [43055] trunk/dports/x11/wmclock/Portfile Message-ID: <20081204002831.D5D3F8259BA@beta.macosforge.org> Revision: 43055 http://trac.macports.org/changeset/43055 Author: jeremyhu at macports.org Date: 2008-12-03 16:28:30 -0800 (Wed, 03 Dec 2008) Log Message: ----------- wmclock: Install in correct prefix Modified Paths: -------------- trunk/dports/x11/wmclock/Portfile Modified: trunk/dports/x11/wmclock/Portfile =================================================================== --- trunk/dports/x11/wmclock/Portfile 2008-12-04 00:17:43 UTC (rev 43054) +++ trunk/dports/x11/wmclock/Portfile 2008-12-04 00:28:30 UTC (rev 43055) @@ -16,9 +16,19 @@ platforms darwin freebsd master_sites ${homepage} checksums md5 97f6e82f55f216ba724859d4652586b4 +use_xmkmf yes -depends_build lib:libX11.6:XFree86 +depends_build bin:xmkmf:imake +depends_lib \ + lib:libX11.6:xorg-libX11 \ + lib:libXext.6:xorg-libXext \ + lib:libXpm.4:xorg-libXpm -prefix ${x11prefix} +destroot.target install install.man -destroot.target install install.man +destroot.destdir \ + DESTDIR=${destroot} \ + BINDIR=${prefix}/bin \ + LIBDIR=${prefix}/lib/X11 \ + FONTDIR=${prefix}/lib/X11/fonts \ + MANPATH=${prefix}/share/man -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 16:38:45 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 16:38:45 -0800 (PST) Subject: [43056] trunk/dports/x11/wmclock/Portfile Message-ID: <20081204003845.DA913825E47@beta.macosforge.org> Revision: 43056 http://trac.macports.org/changeset/43056 Author: jeremyhu at macports.org Date: 2008-12-03 16:38:45 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Corrected xpm dependency Modified Paths: -------------- trunk/dports/x11/wmclock/Portfile Modified: trunk/dports/x11/wmclock/Portfile =================================================================== --- trunk/dports/x11/wmclock/Portfile 2008-12-04 00:28:30 UTC (rev 43055) +++ trunk/dports/x11/wmclock/Portfile 2008-12-04 00:38:45 UTC (rev 43056) @@ -22,7 +22,7 @@ depends_lib \ lib:libX11.6:xorg-libX11 \ lib:libXext.6:xorg-libXext \ - lib:libXpm.4:xorg-libXpm + lib:libXpm.4:xpm destroot.target install install.man -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Dec 3 16:51:57 2008 From: portindex at macports.org (portindex at macports.org) Date: Wed, 3 Dec 2008 16:51:57 -0800 (PST) Subject: [43057] trunk/dports/PortIndex Message-ID: <20081204005202.C78AB826004@beta.macosforge.org> Revision: 43057 http://trac.macports.org/changeset/43057 Author: portindex at macports.org Date: 2008-12-03 16:51:56 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Total number of ports parsed: 5182 Ports successfully parsed: 5182 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-04 00:38:45 UTC (rev 43056) +++ trunk/dports/PortIndex 2008-12-04 00:51:56 UTC (rev 43057) @@ -1997,7 +1997,7 @@ libfuse 271 variants universal description {dummy port, use macfuse instead} portdir fuse/libfuse homepage {} epoch 0 platforms darwin name libfuse long_description {{dummy port, use macfuse instead}} maintainers eridius at macports.org categories {fuse devel} version 2.7.1 revision 3 macfuse 703 -variants universal description {A FUSE-Compliant File System Implementation Mechanism for Mac OS X} portdir fuse/macfuse homepage http://code.google.com/p/macfuse/ epoch 0 platforms macosx name macfuse long_description {MacFUSE implements a mechanism that makes it possible to implement a fully functional file system in a user-space program on Mac OS X (10.4 and above). It aims to be API-compliant with the FUSE (File-system in USErspace) mechanism that originated on Linux. Therefore, many existing FUSE file systems become readily usable on Mac OS X. The core of MacFUSE is in a dynamically loadable kernel extension.} maintainers eridius at macports.org categories {fuse devel} version 1.7 revision 0 +variants universal description {A FUSE-Compliant File System Implementation Mechanism for Mac OS X} portdir fuse/macfuse homepage http://code.google.com/p/macfuse/ epoch 0 platforms macosx name macfuse long_description {MacFUSE implements a mechanism that makes it possible to implement a fully functional file system in a user-space program on Mac OS X (10.4 and above). It aims to be API-compliant with the FUSE (File-system in USErspace) mechanism that originated on Linux. Therefore, many existing FUSE file systems become readily usable on Mac OS X. The core of MacFUSE is in a dynamically loadable kernel extension.} maintainers eridius at macports.org categories {fuse devel} version 1.7 revision 1 mhddfs 449 variants universal portdir fuse/mhddfs description {FUSE-based filesystem for combined mountpoints} homepage http://mhddfs.uvw.ru/ epoch 0 platforms macosx name mhddfs depends_lib {port:macfuse port:libiconv} maintainers gmail.com:mellon85 long_description {This FUSE-based file system allows mount points (or directories) to be combined, simulating a single big volume which can merge several hard disks.} version 0.1.10 categories fuse revision 0 ntfs-3g 653 @@ -5016,8 +5016,8 @@ portdir net/ncid platforms darwin description {Network Caller ID system} name ncid version 0.70 categories net homepage http://ncid.sourceforge.net/ revision 1 epoch 0 maintainers ryandesign long_description {NCID is Caller ID (CID) distributed over a network to a variety of devices and computers. It consists of a server that obtains the Caller ID information and various clients that receive the information from the server and act on it in various ways. The NCID package consists of a server called ncidd, a universal client called ncid and a CID client called ncidsip. The server obtains the Caller ID information from a modem, a CID device or one or more CID clients, and then sends the information to each connected client.} ncp 363 variants universal portdir net/ncp description {a fast file copy tool for LANs (including ncp, npush, npoll)} homepage http://www.fefe.de/ncp/ epoch 0 platforms darwin name ncp depends_lib lib:libowfat.0:libowfat maintainers daniel at yoobay.net long_description {a fast file copy tool for LANs (including ncp, npush, npoll)} version 1.2.4 categories net revision 0 -nedi 806 -variants {universal server cacti} variant_desc {server {does nothing in this port, but its presence triggers mysql5 server variant} cacti {NeDi supports the Cacti API to selectively add graphs of NeDi discovered devices to a Cacti installation on the same host}} portdir net/nedi description {Network Discovery Suite} homepage http://www.nedi.ch/ epoch 0 platforms darwin name nedi depends_lib {port:perl5.8 port:mysql5 port:p5-net-snmp port:p5-net-ssh-perl port:p5-net-telnet port:p5-net-telnet-cisco port:p5-net port:p5-libwww-perl port:p5-algorithm-diff port:p5-dbi port:p5-dbd-mysql port:rrdtool port:fping} maintainers markd long_description {A low noise network discovery, management, and inventory system for Cisco networks with a user friendly web interface.} version 1.0 categories net revision 2 +nedi 813 +variants {universal server cacti} variant_desc {server {does nothing in this port, but its presence triggers mysql5 server variant} cacti {NeDi supports the Cacti API to selectively add graphs of NeDi discovered devices to a Cacti installation on the same host}} portdir net/nedi description {Network Discovery Suite} homepage http://www.nedi.ch/ epoch 0 platforms darwin name nedi depends_lib {path:bin/perl:perl5 port:mysql5 port:p5-net-snmp port:p5-net-ssh-perl port:p5-net-telnet port:p5-net-telnet-cisco port:p5-net port:p5-libwww-perl port:p5-algorithm-diff port:p5-dbi port:p5-dbd-mysql port:rrdtool port:fping} maintainers markd long_description {A low noise network discovery, management, and inventory system for Cisco networks with a user friendly web interface.} version 1.0 categories net revision 2 nefu 533 variants {universal darwin} depends_build bin:bison:bison portdir net/nefu description {A network monitoring daemon.} homepage http://rsug.itd.umich.edu/software/nefu/ epoch 0 platforms darwin depends_lib {port:openssl port:zlib} name nefu maintainers nomaintainer long_description {nefu monitors network services and reports outages. Working from a description of the network topography, nefu's algorithm prevents {false alarms} in the event of a network outage due to a dependency failure.} version 1.4.0 categories net revision 0 nemesis 600 @@ -5060,8 +5060,8 @@ variants universal portdir net/netwox description {Toolbox with several features to test an Ethernet/IP network.} homepage http://www.laurentconstantin.com/ epoch 0 platforms darwin name netwox depends_lib lib:libnetwib530:netwib maintainers {jmpp openmaintainer} long_description {Netwox is a toolbox containing 197 tools implemented from the Network Library netwib. They help to find and solve network problems with common techniques such as sniffing and spoffing, analazing DNS, FTP, HTTP, IRC, NNTP, SMTP, SNMP, SYSLOG, TELNET and TFTP traffic, scans, ping and traceroute, client/servers implementations, etc.} version 5.30.0 categories net revision 0 nfdump 459 variants {universal flowtools} portdir net/nfdump description {Part of the NfSen project, the nfdump tools are command-line programs to collect and process netflow data.} homepage http://nfdump.sourceforge.net/ epoch 0 platforms darwin name nfdump depends_lib port:rrdtool maintainers markd long_description {{Part of the NfSen project, the nfdump tools are command-line programs to collect and process netflow data.}} version 1.5.6 categories net revision 4 -nfsen 386 -variants universal portdir net/nfsen description {Web based frontend to nfdump netflow collector} homepage http://nfsen.sourceforge.net/ epoch 0 platforms darwin name nfsen depends_lib {port:perl5.8 port:rrdtool port:p5-mailtools port:p5-sys-syslog port:nfdump} maintainers markd long_description {{Web based frontend to nfdump netflow collector}} version 1.3 categories net revision 2 +nfsen 393 +variants universal portdir net/nfsen description {Web based frontend to nfdump netflow collector} homepage http://nfsen.sourceforge.net/ epoch 0 platforms darwin name nfsen depends_lib {path:bin/perl:perl5 port:rrdtool port:p5-mailtools port:p5-sys-syslog port:nfdump} maintainers markd long_description {{Web based frontend to nfdump netflow collector}} version 1.3 categories net revision 2 ngrep 699 variants universal depends_build port:libpcap portdir net/ngrep description {Network grep} homepage http://ngrep.sourceforge.net epoch 0 platforms darwin name ngrep maintainers grace at flipt.com long_description {ngrep strives to provide most of GNU grep's common features, applying them to the network layer. ngrep a pcap-aware tool that will allow you to specify extended regular expressions to match against data payloads of packets. It currently recognizes TCP, UDP, and ICMP across Ethernet, PPP, SLIP, FDDI, Token Ring and null interfaces, and understands BPF filter logic in the same fashion as more common packet sniffing tools, like tcpdump and snoop.} version 1.45 categories net revision 0 nmap 1114 @@ -5142,14 +5142,14 @@ variants universal depends_build port:erlang portdir net/rabbitmq-server description {The RabbitMQ AMQP Server} homepage http://www.rabbitmq.com/ depends_run port:erlang epoch 0 platforms darwin name rabbitmq-server maintainers tonyg at rabbitmq.com long_description {RabbitMQ is an implementation of AMQP, the emerging standard for high performance enterprise messaging. The RabbitMQ server is a robust and scalable implementation of an AMQP broker.} version 1.3.0 categories net revision 0 radmind 747 variants {universal darwin} portdir net/radmind description {Remotely administer the file systems of multiple unix machines} homepage http://rsug.itd.umich.edu/software/radmind epoch 0 platforms darwin name radmind depends_lib {port:openssl port:zlib} maintainers nomaintainer long_description {A suite of Unix command-line tools and a server designed to remotely administer the file systems of multiple Unix machines. At its core, radmind operates as a tripwire. It is able to detect changes to any managed filesystem object, e.g. files, directories, links, etc. However, radmind goes further than just integrity checking: once a change is detected, radmind can optionally reverse the change.} version 1.11.1 categories {net sysutils} revision 0 -rancid 476 -variants {universal darwin_7 darwin_6} portdir net/rancid description {Really Awesome New Cisco confIg Differ} homepage http://www.shrubbery.net/rancid epoch 0 platforms darwin name rancid depends_lib {port:perl5.8 port:openssl port:p5-lockfile-simple} maintainers markd long_description {Rancid maintains a CVS repository of router and device config files. It emails you when changes occur and tells you what commands were changed.} version 2.3.2a7 categories net revision 0 +rancid 483 +variants {universal darwin_7 darwin_6} portdir net/rancid description {Really Awesome New Cisco confIg Differ} homepage http://www.shrubbery.net/rancid epoch 0 platforms darwin name rancid depends_lib {path:bin/perl:perl5 port:openssl port:p5-lockfile-simple} maintainers markd long_description {Rancid maintains a CVS repository of router and device config files. It emails you when changes occur and tells you what commands were changed.} version 2.3.2a7 categories net revision 0 rdesktop 835 variants {universal w2k_license_hack} variant_desc {w2k_license_hack {will announce the client as Windows 2000 machine}} portdir net/rdesktop description {Windows Terminal Server Client} homepage http://rdesktop.sourceforge.net/ epoch 0 platforms {darwin freebsd} name rdesktop depends_lib {lib:libX11.6:XFree86 port:openssl port:libiconv port:libao} maintainers {cshbell at gmail.com noses at noses.com} long_description {rdesktop is an RDP client to access Microsoft Terminal Server based services. The variant called w2k-license-hack is a backported patch from an rdesktop 1.1 patchset which wasn't integrated into the latest version -- it will announce the client as Windows 2000 machine causing the Terminal Server to provide a license for free. Please argue over this with your own conscience.} version 1.6.0 categories net revision 1 roadrunner 471 variants universal portdir net/roadrunner description {implementation of the BEEP protocol (RFC 3080) in C} homepage http://rr.codefactory.se/ epoch 0 platforms darwin name roadrunner depends_lib {bin:pkg-config:pkgconfig lib:libxml2:libxml2 path:lib/pkgconfig/glib-2.0.pc:glib2} maintainers nomaintainer long_description {RoadRunner is a full-featured, robust implementation of the BEEP protocol (RFC 3080) written in C.} version 0.9.1 categories {net devel} revision 0 -rrdtool 575 -variants {universal python} variant_desc {python {Python bindings for RRDtool}} portdir net/rrdtool description {Round Robin Database} homepage http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/ epoch 0 platforms darwin name rrdtool depends_lib {lib:libX11.6:XFree86 port:xrender port:expat port:fontconfig port:freetype port:glib2 port:libiconv port:gettext port:pango port:cairo port:perl5.8 port:tcl port:zlib port:libpng port:libxml2} maintainers markd long_description {RRDtool is a system to store and display time-series data} version 1.3.4 categories net revision 0 +rrdtool 582 +variants {universal python} variant_desc {python {Python bindings for RRDtool}} portdir net/rrdtool description {Round Robin Database} homepage http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/ epoch 0 platforms darwin name rrdtool depends_lib {lib:libX11.6:XFree86 port:xrender port:expat port:fontconfig port:freetype port:glib2 port:libiconv port:gettext port:pango port:cairo path:bin/perl:perl5 port:tcl port:zlib port:libpng port:libxml2} maintainers markd long_description {RRDtool is a system to store and display time-series data} version 1.3.4 categories net revision 0 rsync 830 variants {universal darwin_7 no_macosx_metadata rsyncd} variant_desc {no_macosx_metadata {Don't preserve Mac OS X file flags and creation times} rsyncd {Installs rsyncd.conf and a StartupItem for rsyncd}} portdir net/rsync description {Tool that provides fast incremental file transfer.} homepage http://samba.org/rsync/ epoch 0 platforms {darwin freebsd sunos} name rsync depends_lib {port:popt port:libiconv} maintainers {simon openmaintainer} long_description {rsync is an open source utility that provides fast incremental file transfer. rsync is freely available under the GNU General Public License and is currently being maintained by Wayne Davison. Rsync version 3.0.4 has been released. This is a bug-fix release. Related pages: http://rsync.samba.org/ftp/rsync/rsync-3.0.4-NEWS} version 3.0.4 categories net revision 0 rsync-devel 1089 @@ -10056,8 +10056,8 @@ variants universal description {a binary clock windowmaker applet} portdir x11/wmbinclock homepage http://www.inxsoft.net/wmbinclock/ epoch 0 platforms darwin name wmbinclock long_description {wmBinClock is a windowmaker applet that displays the current system time as a binary clock. You have to add up the bits to get the time. The clock has a 24 hour format.} maintainers nomaintainer categories x11 version 0.1 revision 0 wmcalclock 348 variants universal portdir x11/wmcalclock description {WindowMaker clock docklet} homepage http://jmpacquet.free.fr/wmcalclock/ epoch 0 platforms darwin name wmcalclock depends_lib lib:libX11.6:XFree86 maintainers nomaintainer long_description {Clock docklet for WindowMaker that displays the time and date.} version 1.26 categories x11 revision 0 -wmclock 511 -variants universal depends_build lib:libX11.6:XFree86 portdir x11/wmclock description {A dockable clock applet} homepage http://www.jmknoble.net/WindowMaker/wmclock/ epoch 0 platforms {darwin freebsd} name wmclock maintainers nomaintainer long_description {Wmclock is an applet which displays the date and time in a dockable tile in the same style as the clock from the NEXTSTEP(tm) operating system. Wmclock is specially designed for the WindowMaker window manager.} version 1.0.12.2 categories x11 revision 0 +wmclock 589 +variants universal depends_build bin:xmkmf:imake portdir x11/wmclock description {A dockable clock applet} homepage http://www.jmknoble.net/WindowMaker/wmclock/ epoch 0 platforms {darwin freebsd} depends_lib {lib:libX11.6:xorg-libX11 lib:libXext.6:xorg-libXext lib:libXpm.4:xpm} name wmclock maintainers nomaintainer long_description {Wmclock is an applet which displays the date and time in a dockable tile in the same style as the clock from the NEXTSTEP(tm) operating system. Wmclock is specially designed for the WindowMaker window manager.} version 1.0.12.2 categories x11 revision 0 wmcube 459 variants universal portdir x11/wmcube description {3D objects tumbling about representing CPU load.} homepage http://dockapps.org/file.php/id/162 epoch 0 platforms darwin name wmcube depends_lib lib:libX11.6:XFree86 maintainers nomaintainer long_description {Many different objects and will select a random object if you click on the dockapp. The ability to zoom in/out and remove the percent label is present as well.} version 0.98 categories x11 revision 0 wmii 469 @@ -10128,8 +10128,8 @@ variants universal depends_build {port:pkgconfig port:xorg-applewmproto port:xorg-xproto port:xorg-xextproto} portdir x11/xorg-libAppleWM description {X.org libAppleWM} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libX11 port:xorg-libXext} name xorg-libAppleWM maintainers jeremyhu long_description {{X.org libAppleWM}} version 1.0.0 categories {x11 devel} revision 0 xorg-libX11 660 variants {universal x11_xcb} depends_build {port:pkgconfig port:xorg-bigreqsproto port:xorg-xcmiscproto port:xorg-xproto port:xorg-xtrans port:xorg-xextproto port:xorg-xf86bigfontproto port:xorg-inputproto port:xorg-kbproto} variant_desc {x11_xcb {use XCB for low-level protocol implementation}} portdir x11/xorg-libX11 description {X.org libX11} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXdmcp port:xorg-libXau} name xorg-libX11 maintainers jeremyhu long_description {libX11 is the main library used by X Window System applications to communicate with the X server.} categories {x11 devel} version 1.1.5 revision 1 -xorg-libXau 352 -variants universal portdir x11/xorg-libXau description {X.org libXau} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXau depends_lib {port:xorg-util-macros port:xorg-libpthread-stubs port:xorg-xproto} maintainers bbyer at macports.org long_description {X Authorization Routines library} version 1.0.3 categories devel revision 0 +xorg-libXau 316 +variants universal depends_build {port:pkgconfig port:xorg-xproto} portdir x11/xorg-libXau description {X.org libXau} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXau maintainers jeremyhu long_description {X Authorization Routines library} version 1.0.4 categories {x11 devel} revision 0 xorg-libXdmcp 333 variants universal depends_build {port:pkgconfig port:xorg-xproto} portdir x11/xorg-libXdmcp description {X.org libXdmcp} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXdmcp maintainers jeremyhu long_description {X Display Manager Control Protocol routines} version 1.0.2 categories {x11 devel} revision 0 xorg-libXext 351 @@ -10140,6 +10140,8 @@ variants universal portdir x11/xorg-libXfont description {X.org libXfont} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libXfont depends_lib {port:pkgconfig port:freetype port:xorg-xproto port:xorg-xextproto port:xorg-xtrans port:xorg-libpthread-stubs port:xorg-libXau port:xorg-xcb-proto port:xorg-libfontenc port:xorg-libxcb port:xorg-xcmiscproto port:xorg-inputproto port:xorg-kbproto} maintainers bbyer at macports.org long_description {X font handling library for server & utilities} version 1.3.1 categories {x11 devel} revision 0 xorg-libXmu 404 variants universal depends_build {port:pkgconfig port:xorg-xproto port:xorg-xextproto} portdir x11/xorg-libXmu description {X.org libXmu} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {lib:libX11:xorg-libX11 lib:libX11:xorg-libXext lib:libX11:xorg-libXt} name xorg-libXmu maintainers jeremyhu long_description {X.org Xmu library} version 1.0.4 categories {x11 devel} revision 0 +xorg-libXp 409 +variants universal depends_build {port:pkgconfig port:xorg-printproto port:xorg-xproto port:xorg-xextproto} portdir x11/xorg-libXp description {X.org libXp} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXext port:xorg-libXau port:xorg-libX11} name xorg-libXp maintainers jeremyhu long_description {Xprint client library} version 1.0.0 categories {x11 devel} revision 0 xorg-libXt 559 variants universal depends_build {port:pkgconfig port:xorg-kbproto port:xorg-xproto} portdir x11/xorg-libXt description {X.org libXt} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXdmcp port:xorg-libsm port:xorg-libX11} name xorg-libXt maintainers jeremyhu long_description {X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif (a Motif implementation).} version 1.0.5 categories {x11 devel} revision 0 xorg-libfontenc 504 @@ -10154,8 +10156,10 @@ variants universal depends_build {port:pkgconfig port:xorg-xcb-proto port:libtool port:xorg-util-macros} portdir x11/xorg-libxcb description {X.org libxcb} homepage http://xcb.freedesktop.org/ epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXau port:xorg-libXdmcp} name xorg-libxcb maintainers jeremyhu long_description {The X C Binding (XCB) library} version 1.1 categories {x11 devel} revision 0 xorg-libxkbfile 338 variants universal portdir x11/xorg-libxkbfile description {X.org libxbfile} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libxkbfile depends_lib {port:xorg-util-macros port:xorg-libXdmcp} maintainers bbyer at macports.org long_description {XKB file handling routines} version 1.0.4 categories {x11 devel} revision 0 -xorg-proto 874 -description {X.org proto meta-package} portdir x11/xorg-proto homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-proto depends_lib {port:xorg-applewmproto port:xorg-bigreqsproto port:xorg-compositeproto port:xorg-damageproto port:xorg-evieproto port:xorg-fixesproto port:xorg-fontcacheproto port:xorg-fontsproto port:xorg-inputproto port:xorg-kbproto port:xorg-randrproto port:xorg-recordproto port:xorg-renderproto port:xorg-resourceproto port:xorg-scrnsaverproto port:xorg-trapproto port:xorg-videoproto port:xorg-xcb-proto port:xorg-xcmiscproto port:xorg-xextproto port:xorg-xf86bigfontproto port:xorg-xf86dgaproto port:xorg-xf86miscproto port:xorg-xf86vidmodeproto port:xorg-xineramaproto port:xorg-xproto} maintainers jeremyhu long_description {This package builds all of the x.org proto packages.} version 20070907 categories {x11 devel} revision 0 +xorg-printproto 250 +portdir x11/xorg-printproto description {X.org xproto} platforms darwin name xorg-printproto version 1.0.4 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {X.org PrintProto protocol headers.} +xorg-proto 895 +description {X.org proto meta-package} portdir x11/xorg-proto homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-proto depends_lib {port:xorg-applewmproto port:xorg-bigreqsproto port:xorg-compositeproto port:xorg-damageproto port:xorg-evieproto port:xorg-fixesproto port:xorg-fontcacheproto port:xorg-fontsproto port:xorg-inputproto port:xorg-kbproto port:xorg-printproto port:xorg-randrproto port:xorg-recordproto port:xorg-renderproto port:xorg-resourceproto port:xorg-scrnsaverproto port:xorg-trapproto port:xorg-videoproto port:xorg-xcb-proto port:xorg-xcmiscproto port:xorg-xextproto port:xorg-xf86bigfontproto port:xorg-xf86dgaproto port:xorg-xf86miscproto port:xorg-xf86vidmodeproto port:xorg-xineramaproto port:xorg-xproto} maintainers jeremyhu long_description {This package builds all of the x.org proto packages.} version 20081203 categories {x11 devel} revision 0 xorg-randrproto 387 portdir x11/xorg-randrproto description {X.org randrproto} platforms darwin name xorg-randrproto version 1.2.1 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {The pkg-config program is used to retrieve information about installed libraries in the system. It is typically used to compile and link against one or more libraries.} xorg-recordproto 273 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 17:22:05 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 17:22:05 -0800 (PST) Subject: [43058] trunk/dports/x11 Message-ID: <20081204012205.6347982710D@beta.macosforge.org> Revision: 43058 http://trac.macports.org/changeset/43058 Author: jeremyhu at macports.org Date: 2008-12-03 17:22:04 -0800 (Wed, 03 Dec 2008) Log Message: ----------- New port: xorg-libXrandr Added Paths: ----------- trunk/dports/x11/xorg-libXrandr/ trunk/dports/x11/xorg-libXrandr/Portfile Added: trunk/dports/x11/xorg-libXrandr/Portfile =================================================================== --- trunk/dports/x11/xorg-libXrandr/Portfile (rev 0) +++ trunk/dports/x11/xorg-libXrandr/Portfile 2008-12-04 01:22:04 UTC (rev 43058) @@ -0,0 +1,35 @@ +# $Id$ + +PortSystem 1.0 + +name xorg-libXrandr +version 1.2.3 +categories x11 devel +maintainers jeremyhu +description X.org libXrandr +homepage http://www.x.org +platforms darwin macosx +long_description X Resize and Rotate Extension C Library +master_sites ${homepage}/pub/individual/lib/ + +distname libXrandr-${version} +checksums md5 5cd67cc02a50c9644ba0a1846ea3b08e \ + sha1 f03628694f932e93ecd0ae6c8aa1daef10db0ca4 \ + rmd160 56911f90cbb7e7550f26dbcb5271b3a6788118df +use_bzip2 yes +use_parallel_build yes + +depends_build port:pkgconfig \ + port:xorg-randrproto \ + port:xorg-renderproto \ + port:xorg-xproto \ + port:xorg-xextproto + +depends_lib port:xorg-libX11 \ + port:xorg-libXext \ + port:xrender + +livecheck.check regex +livecheck.url [lindex ${master_sites} 0]?C=M&O=D +livecheck.regex libXrandr-(\\d+(?:\\.\\d+)*) + Property changes on: trunk/dports/x11/xorg-libXrandr/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Wed Dec 3 17:29:33 2008 From: blb at macports.org (blb at macports.org) Date: Wed, 3 Dec 2008 17:29:33 -0800 (PST) Subject: [43059] trunk/dports/sysutils/MacPorts Message-ID: <20081204012933.587E6827232@beta.macosforge.org> Revision: 43059 http://trac.macports.org/changeset/43059 Author: blb at macports.org Date: 2008-12-03 17:29:32 -0800 (Wed, 03 Dec 2008) Log Message: ----------- sysutils/MacPorts - pull the DMG resources from the tarball itself instead of using svn:externals to link files/ to the svn tag for the release Modified Paths: -------------- trunk/dports/sysutils/MacPorts/Portfile Property Changed: ---------------- trunk/dports/sysutils/MacPorts/ Property changes on: trunk/dports/sysutils/MacPorts ___________________________________________________________________ Deleted: svn:externals - files http://svn.macports.org/repository/macports/tags/release_1_6_0/base/portmgr/dmg Modified: trunk/dports/sysutils/MacPorts/Portfile =================================================================== --- trunk/dports/sysutils/MacPorts/Portfile 2008-12-04 01:22:04 UTC (rev 43058) +++ trunk/dports/sysutils/MacPorts/Portfile 2008-12-04 01:29:32 UTC (rev 43059) @@ -41,10 +41,10 @@ } else { set resources ${workpath}/${name}-${version}.pkg/Contents/Resources } - file copy -force -- ${filespath}/ReadMe.rtf ${resources} - file copy -force -- ${filespath}/License.html ${resources} - file copy -force -- ${filespath}/preflight ${resources} - file copy -force -- ${filespath}/postflight ${resources} + file copy -force -- ${worksrcpath}/portmgr/dmg/ReadMe.rtf ${resources} + file copy -force -- ${worksrcpath}/portmgr/dmg/License.html ${resources} + file copy -force -- ${worksrcpath}/portmgr/dmg/preflight ${resources} + file copy -force -- ${worksrcpath}/portmgr/dmg/postflight ${resources} } platform darwin 7 { -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 17:31:34 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 17:31:34 -0800 (PST) Subject: [43060] trunk/dports/net/ddclient/Portfile Message-ID: <20081204013134.5481882730C@beta.macosforge.org> Revision: 43060 http://trac.macports.org/changeset/43060 Author: mcalhoun at macports.org Date: 2008-12-03 17:31:33 -0800 (Wed, 03 Dec 2008) Log Message: ----------- ddclient: Ensure that MacPorts Perl is the dependency. Change the default perl to perl5 (see #16830). Modified Paths: -------------- trunk/dports/net/ddclient/Portfile Modified: trunk/dports/net/ddclient/Portfile =================================================================== --- trunk/dports/net/ddclient/Portfile 2008-12-04 01:29:32 UTC (rev 43059) +++ trunk/dports/net/ddclient/Portfile 2008-12-04 01:31:33 UTC (rev 43060) @@ -11,7 +11,7 @@ homepage http://ddclient.sourceforge.net/ master_sites sourceforge:ddclient checksums md5 67976f65c2aad267664267bed940ce18 -depends_run bin:perl:perl5.8 +depends_run path:bin/perl:perl5 configure { reinplace "s|\[\r\]$||" ${worksrcpath}/${name} -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 17:48:43 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 17:48:43 -0800 (PST) Subject: [43061] trunk/dports/net/netatalk/Portfile Message-ID: <20081204014843.362CE82755E@beta.macosforge.org> Revision: 43061 http://trac.macports.org/changeset/43061 Author: mcalhoun at macports.org Date: 2008-12-03 17:48:42 -0800 (Wed, 03 Dec 2008) Log Message: ----------- netatalk: Ensure that MacPorts perl is used. Change default perl to perl5 (see #16830). Modified Paths: -------------- trunk/dports/net/netatalk/Portfile Modified: trunk/dports/net/netatalk/Portfile =================================================================== --- trunk/dports/net/netatalk/Portfile 2008-12-04 01:31:33 UTC (rev 43060) +++ trunk/dports/net/netatalk/Portfile 2008-12-04 01:48:42 UTC (rev 43061) @@ -30,7 +30,7 @@ depends_lib port:db44 \ port:openssl \ - bin:perl:perl5.8 \ + path:bin/perl:perl5 \ port:cracklib \ port:libiconv depends_build path:include/cups/cups.h:cups-headers -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 17:51:00 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 17:51:00 -0800 (PST) Subject: [43062] trunk/dports/net/ipcalc/Portfile Message-ID: <20081204015101.AD95E82765F@beta.macosforge.org> Revision: 43062 http://trac.macports.org/changeset/43062 Author: mcalhoun at macports.org Date: 2008-12-03 17:51:00 -0800 (Wed, 03 Dec 2008) Log Message: ----------- ipcalc: Ensure that MacPorts perl is used. Change default perl to perl5 (see #16830). Modified Paths: -------------- trunk/dports/net/ipcalc/Portfile Modified: trunk/dports/net/ipcalc/Portfile =================================================================== --- trunk/dports/net/ipcalc/Portfile 2008-12-04 01:48:42 UTC (rev 43061) +++ trunk/dports/net/ipcalc/Portfile 2008-12-04 01:51:00 UTC (rev 43062) @@ -18,10 +18,10 @@ master_sites http://jodies.de/ipcalc-archive/ checksums md5 9b95b0b6b9425e78b08f648eefeb84e0 -depends_run bin:perl:perl5.8 +depends_run path:bin/perl:perl5 configure { - reinplace "s|/usr/bin/perl -w|/usr/bin/env perl|g" ${worksrcpath}/ipcalc + reinplace "s|/usr/bin/perl -w|${prefix}/bin/perl -w|g" ${worksrcpath}/ipcalc } build {} -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Dec 3 17:51:43 2008 From: portindex at macports.org (portindex at macports.org) Date: Wed, 3 Dec 2008 17:51:43 -0800 (PST) Subject: [43063] trunk/dports/PortIndex Message-ID: <20081204015145.73366827698@beta.macosforge.org> Revision: 43063 http://trac.macports.org/changeset/43063 Author: portindex at macports.org Date: 2008-12-03 17:51:43 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Total number of ports parsed: 5183 Ports successfully parsed: 5183 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-04 01:51:00 UTC (rev 43062) +++ trunk/dports/PortIndex 2008-12-04 01:51:43 UTC (rev 43063) @@ -4722,8 +4722,8 @@ variants universal description {network traffic analyzer} portdir net/darkstat homepage http://dmr.ath.cx/net/darkstat/ epoch 0 platforms darwin name darkstat long_description {darkstat is a network traffic analyzer. It's basically a packet sniffer which runs as a background process on a cable/DSL router and gathers all sorts of useless but interesting statistics.} maintainers olaf at foellinger.de categories net version 3.0.707 revision 0 dcd 366 variants universal description {Direct Connect Hub clone} portdir net/dcd homepage http://www.dc.ds.pg.gda.pl epoch 0 platforms darwin name dcd long_description {DConnect Daemon is a Direct Connect Hub clone for Unix. It allow people to share their resources, i.e.: programs, graphics, all files ...} maintainers nomaintainer categories net version 0.3.4 revision 0 -ddclient 379 -variants universal portdir net/ddclient description {Update dynamic DNS entries} homepage http://ddclient.sourceforge.net/ epoch 0 depends_run bin:perl:perl5.8 platforms darwin name ddclient maintainers nomaintainer long_description {ddclient is a Perl client used to update dynamic DNS entries for accounts on many dynamic DNS services.} version 3.7.0 categories net revision 0 +ddclient 382 +variants universal portdir net/ddclient description {Update dynamic DNS entries} homepage http://ddclient.sourceforge.net/ epoch 0 depends_run path:bin/perl:perl5 platforms darwin name ddclient maintainers nomaintainer long_description {ddclient is a Perl client used to update dynamic DNS entries for accounts on many dynamic DNS services.} version 3.7.0 categories net revision 0 ddnsu 422 variants universal description {simple, reliable and small updating client for dynamic DNS} portdir net/ddnsu homepage http://psydev.sourceforge.net/new/ddnsu/ epoch 0 platforms darwin name ddnsu long_description {ddnsu is a dynamic DNS updating client that aims to be simple, reliable, and above all very small. It works with services such as DynDNS.org.} maintainers nomaintainer categories net version 0.3.0 revision 0 deluge 491 @@ -10142,6 +10142,8 @@ variants universal depends_build {port:pkgconfig port:xorg-xproto port:xorg-xextproto} portdir x11/xorg-libXmu description {X.org libXmu} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {lib:libX11:xorg-libX11 lib:libX11:xorg-libXext lib:libX11:xorg-libXt} name xorg-libXmu maintainers jeremyhu long_description {X.org Xmu library} version 1.0.4 categories {x11 devel} revision 0 xorg-libXp 409 variants universal depends_build {port:pkgconfig port:xorg-printproto port:xorg-xproto port:xorg-xextproto} portdir x11/xorg-libXp description {X.org libXp} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXext port:xorg-libXau port:xorg-libX11} name xorg-libXp maintainers jeremyhu long_description {Xprint client library} version 1.0.0 categories {x11 devel} revision 0 +xorg-libXrandr 457 +variants universal depends_build {port:pkgconfig port:xorg-randrproto port:xorg-renderproto port:xorg-xproto port:xorg-xextproto} portdir x11/xorg-libXrandr description {X.org libXrandr} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libX11 port:xorg-libXext port:xrender} name xorg-libXrandr maintainers jeremyhu long_description {X Resize and Rotate Extension C Library} version 1.2.3 categories {x11 devel} revision 0 xorg-libXt 559 variants universal depends_build {port:pkgconfig port:xorg-kbproto port:xorg-xproto} portdir x11/xorg-libXt description {X.org libXt} homepage http://www.x.org epoch 0 platforms {darwin macosx} depends_lib {port:xorg-libXdmcp port:xorg-libsm port:xorg-libX11} name xorg-libXt maintainers jeremyhu long_description {X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif (a Motif implementation).} version 1.0.5 categories {x11 devel} revision 0 xorg-libfontenc 504 -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 17:52:41 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 17:52:41 -0800 (PST) Subject: [43064] trunk/dports/net/nbtstat/Portfile Message-ID: <20081204015241.C738A8276FF@beta.macosforge.org> Revision: 43064 http://trac.macports.org/changeset/43064 Author: mcalhoun at macports.org Date: 2008-12-03 17:52:41 -0800 (Wed, 03 Dec 2008) Log Message: ----------- nbtstat: Ensure that MacPorts perl is used. Change default perl to perl5 (see #16830). Modified Paths: -------------- trunk/dports/net/nbtstat/Portfile Modified: trunk/dports/net/nbtstat/Portfile =================================================================== --- trunk/dports/net/nbtstat/Portfile 2008-12-04 01:51:43 UTC (rev 43063) +++ trunk/dports/net/nbtstat/Portfile 2008-12-04 01:52:41 UTC (rev 43064) @@ -18,7 +18,7 @@ dist_subdir ${name}/${version} checksums sha1 e2aa2c62c06485d257cae5e243dc4408aff92023 -depends_run bin:perl:perl5.8 +depends_run path:bin/perl:perl5 extract { file mkdir ${worksrcpath} -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 18:01:36 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 18:01:36 -0800 (PST) Subject: [43065] trunk/dports/devel/bugzilla/Portfile Message-ID: <20081204020136.D5EAD82786A@beta.macosforge.org> Revision: 43065 http://trac.macports.org/changeset/43065 Author: mcalhoun at macports.org Date: 2008-12-03 18:01:36 -0800 (Wed, 03 Dec 2008) Log Message: ----------- bugzilla: Change perl dependency from port:perl5.8 to path:bin/perl (see #16830). Modified Paths: -------------- trunk/dports/devel/bugzilla/Portfile Modified: trunk/dports/devel/bugzilla/Portfile =================================================================== --- trunk/dports/devel/bugzilla/Portfile 2008-12-04 01:52:41 UTC (rev 43064) +++ trunk/dports/devel/bugzilla/Portfile 2008-12-04 02:01:36 UTC (rev 43065) @@ -29,7 +29,7 @@ depends_lib port:apache2 \ port:mysql4 \ - port:perl5.8 \ + path:bin/perl:perl5 \ port:p5-appconfig \ port:p5-timedate \ port:p5-dbi \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 18:06:01 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 18:06:01 -0800 (PST) Subject: [43066] trunk/dports/devel/cvsweb/Portfile Message-ID: <20081204020602.0DE5A82795C@beta.macosforge.org> Revision: 43066 http://trac.macports.org/changeset/43066 Author: mcalhoun at macports.org Date: 2008-12-03 18:06:01 -0800 (Wed, 03 Dec 2008) Log Message: ----------- cvsweb: Change perl dependency from port:perl5.8 to path:bin/perl (see #16830). Modified Paths: -------------- trunk/dports/devel/cvsweb/Portfile Modified: trunk/dports/devel/cvsweb/Portfile =================================================================== --- trunk/dports/devel/cvsweb/Portfile 2008-12-04 02:01:36 UTC (rev 43065) +++ trunk/dports/devel/cvsweb/Portfile 2008-12-04 02:06:01 UTC (rev 43066) @@ -17,7 +17,7 @@ ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/scop/ checksums md5 0e1eec962b1db00e01b295fff84b6e89 -depends_build port:perl5.8 \ +depends_build path:bin/perl:perl5 \ port:p5-ipc-run \ port:p5-file-temp \ port:p5-uri \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 18:07:32 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 18:07:32 -0800 (PST) Subject: [43067] trunk/dports/devel/vcheck/Portfile Message-ID: <20081204020732.8E3B48281C8@beta.macosforge.org> Revision: 43067 http://trac.macports.org/changeset/43067 Author: mcalhoun at macports.org Date: 2008-12-03 18:07:31 -0800 (Wed, 03 Dec 2008) Log Message: ----------- vcheck: Change perl dependency from port:perl5.8 to path:bin/perl (see #16830). Modified Paths: -------------- trunk/dports/devel/vcheck/Portfile Modified: trunk/dports/devel/vcheck/Portfile =================================================================== --- trunk/dports/devel/vcheck/Portfile 2008-12-04 02:06:01 UTC (rev 43066) +++ trunk/dports/devel/vcheck/Portfile 2008-12-04 02:07:31 UTC (rev 43067) @@ -17,7 +17,7 @@ use_bzip2 yes checksums md5 712cb91d13ffb4b347b094c9935abca1 -depends_lib port:perl5.8 +depends_lib path:bin/perl:perl5 depends_run port:p5-libwww-perl patch { -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Dec 3 18:51:51 2008 From: portindex at macports.org (portindex at macports.org) Date: Wed, 3 Dec 2008 18:51:51 -0800 (PST) Subject: [43068] trunk/dports/PortIndex Message-ID: <20081204025153.2E24E828A8E@beta.macosforge.org> Revision: 43068 http://trac.macports.org/changeset/43068 Author: portindex at macports.org Date: 2008-12-03 18:51:51 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Total number of ports parsed: 5183 Ports successfully parsed: 5183 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-04 02:07:31 UTC (rev 43067) +++ trunk/dports/PortIndex 2008-12-04 02:51:51 UTC (rev 43068) @@ -866,8 +866,8 @@ variants universal portdir devel/bsdiff description {Generates and applies patches to binary files} homepage http://www.daemonology.net/bsdiff/ epoch 0 platforms darwin name bsdiff depends_lib port:bzip2 maintainers nomaintainer long_description {This is a pair of tools for building (bsdiff) and applying (bspatch) binary patches. When applied to two versions of the same executable the patches produced are significantly smaller than those generated by other binary diff tools (eg, xdelta).} version 4.3 categories devel revision 1 buddha 597 variants universal depends_build bin:ghc:ghc portdir devel/buddha description {A declarative debugger for Haskell 98 programs.} homepage http://www.cs.mu.oz.au/~bjpop/buddha/ epoch 0 platforms darwin depends_lib lib:readline:readline name buddha maintainers nomaintainer long_description {Buddha is a debugger for Haskell 98 programs. To be more precise, it is a declarative debugger. It presents the evaluation of a Haskell program as a series of equivalences, rather than the more traditional stepwise presentation of debuggers for imperative languages.} version 1.2 categories devel revision 0 -bugzilla 1130 -variants {universal mysql5} variant_desc {mysql5 {Use mysql5 instead of mysql4}} portdir devel/bugzilla description {popular and extensive bug-tracking system} homepage http://www.bugzilla.org/ epoch 0 platforms darwin name bugzilla depends_lib {port:apache2 port:mysql4 port:perl5.8 port:p5-appconfig port:p5-timedate port:p5-dbi port:p5-dbd-mysql port:p5-xml-parser port:p5-patchreader port:p5-gd port:p5-gdtextutil port:p5-gdgraph port:p5-chart port:p5-template-toolkit port:p5-mime-tools port:patchutils port:p5-cgi port:p5-perl-ldap port:p5-patchreader port:p5-xml-twig} maintainers nomaintainer long_description {Bugzilla is a Defect Tracking System or Bug-Tracking System. Defect Tracking Systems allow individual or groups of developers to keep track of outstanding bugs in their product effectively. Most commercial defect-tracking software vendors charge enormous licensing fees. Despite being free, Bugzilla has many features its expensive counterparts lack. Consequently, Bugzi lla has quickly become a favorite of hundreds of organizations across the globe.} version 2.22.3 categories {devel www databases} revision 0 +bugzilla 1137 +variants {universal mysql5} variant_desc {mysql5 {Use mysql5 instead of mysql4}} portdir devel/bugzilla description {popular and extensive bug-tracking system} homepage http://www.bugzilla.org/ epoch 0 platforms darwin name bugzilla depends_lib {port:apache2 port:mysql4 path:bin/perl:perl5 port:p5-appconfig port:p5-timedate port:p5-dbi port:p5-dbd-mysql port:p5-xml-parser port:p5-patchreader port:p5-gd port:p5-gdtextutil port:p5-gdgraph port:p5-chart port:p5-template-toolkit port:p5-mime-tools port:patchutils port:p5-cgi port:p5-perl-ldap port:p5-patchreader port:p5-xml-twig} maintainers nomaintainer long_description {Bugzilla is a Defect Tracking System or Bug-Tracking System. Defect Tracking Systems allow individual or groups of developers to keep track of outstanding bugs in their product effectively. Most commercial defect-tracking software vendors charge enormous licensing fees. Despite being free, Bugzilla has many features its expensive counterparts lack. Consequently , Bugzilla has quickly become a favorite of hundreds of organizations across the globe.} version 2.22.3 categories {devel www databases} revision 0 buildbot 463 variants universal portdir devel/buildbot description {compile/test cycle automation system} homepage http://buildbot.net/ epoch 0 platforms darwin depends_lib {port:python25 port:py25-twisted port:py25-hashlib port:py25-zlib} name buildbot maintainers olv.bonnet at free.fr long_description {The BuildBot is a system to automate the compile/test cycle required by most software projects to validate code changes.} categories {devel python} version 0.7.8 revision 0 byacc 405 @@ -994,8 +994,8 @@ variants universal description {Locks a CVS repository} portdir devel/cvslock homepage http://www.does-not-exist.org/roessler/bits.html epoch 0 platforms darwin name cvslock long_description {The cvslock program is used to safely manipulate and inspect CVS repositories. To this end, it properly uses CVS' lock file mechanism.} maintainers ocheron at noos.fr categories devel version 0.2 revision 0 cvsps 718 variants universal description {Create patchset information from CVS.} portdir devel/cvsps homepage http://www.cobite.com/cvsps/ epoch 0 platforms darwin name cvsps maintainers {erickt openmaintainer} long_description {CVSps is a program for generating 'patchset' information from a CVS repository. A patchset in this case is defined as a set of changes made to a collection of files, and all committed at the same time (using a single 'cvs commit' command). This information is valuable to seeing the big picture of the evolution of a cvs project. While cvs tracks revision information, it is often difficult to see what changes were committed 'atomically' to the repository.} categories devel version 2.1 revision 1 -cvsweb 634 -variants {universal macports_apache2} depends_build {port:perl5.8 port:p5-ipc-run port:p5-file-temp port:p5-uri port:p5-mime-types port:p5-string-ediff port:cvsgraph} portdir devel/cvsweb description {WWW interface for CVS repositories} homepage http://www.freebsd.org/projects/cvsweb.html epoch 0 platforms darwin name cvsweb maintainers nomaintainer long_description {FreeBSD-CVSweb is a WWW CGI script that allows remote users to browse a CVS repository tree via web. It can display the revision history of a file, as well as diffs between revisions and downloading the whole file.} version 3.0.6 categories {devel www} revision 0 +cvsweb 641 +variants {universal macports_apache2} depends_build {path:bin/perl:perl5 port:p5-ipc-run port:p5-file-temp port:p5-uri port:p5-mime-types port:p5-string-ediff port:cvsgraph} portdir devel/cvsweb description {WWW interface for CVS repositories} homepage http://www.freebsd.org/projects/cvsweb.html epoch 0 platforms darwin name cvsweb maintainers nomaintainer long_description {FreeBSD-CVSweb is a WWW CGI script that allows remote users to browse a CVS repository tree via web. It can display the revision history of a file, as well as diffs between revisions and downloading the whole file.} version 3.0.6 categories {devel www} revision 0 cxref 886 variants universal depends_build bin:bison:bison portdir devel/cxref description {C program cross-referencing & documentation tool} homepage http://www.gedanken.demon.co.uk/cxref/ epoch 0 platforms darwin name cxref maintainers nomaintainer long_description {A program that takes as input a series of C source files and produces a LaTeX or HTML document containing a cross reference of the files/functions/variables in the program, including documentation taken from suitably formatted source code comments. The documentation is stored in the C source file in specially formatted comments, making it simple to maintain. The cross referencing includes lists of functions called, callers of each function, usage of global variables, header file inclusion, macro definitions and type definitions. Works for ANSI C, including a few gcc extensions.} version 1.6a categories devel revision 0 d52 344 @@ -1802,8 +1802,8 @@ variants universal description {micro-STL is a partial implementation of the STL specification} portdir devel/ustl homepage http://ustl.sourceforge.net/ epoch 0 platforms darwin name ustl long_description {uSTL (micro-STL) is a partial implementation of the STL specification intended to reduce code size of the derivative programs.} maintainers nomaintainer categories devel version 0.8 revision 0 uthash 310 variants universal description {easy-to-use hash implementation for C programmers.} portdir devel/uthash homepage http://uthash.sourceforge.net/ epoch 0 platforms darwin name uthash long_description {{easy-to-use hash implementation for C programmers.}} maintainers mww categories devel version 1.4 revision 0 -vcheck 572 -variants universal portdir devel/vcheck description {latest program package version checker and auto-downloader} homepage http://www.tu-ilmenau.de/~gomar/stuff/vcheck/ depends_run port:p5-libwww-perl epoch 0 platforms darwin name vcheck depends_lib port:perl5.8 maintainers {afb at macports.org openmaintainer} long_description {vcheck is a tool for checking for latest versions of programs at HTTP and FTP locations given a list of URLs and (Perl-style) regular expressions to match, and to optionally download them automatically.} version 1.2.1 categories devel revision 0 +vcheck 579 +variants universal portdir devel/vcheck description {latest program package version checker and auto-downloader} homepage http://www.tu-ilmenau.de/~gomar/stuff/vcheck/ depends_run port:p5-libwww-perl epoch 0 platforms darwin name vcheck depends_lib path:bin/perl:perl5 maintainers {afb at macports.org openmaintainer} long_description {vcheck is a tool for checking for latest versions of programs at HTTP and FTP locations given a list of URLs and (Perl-style) regular expressions to match, and to optionally download them automatically.} version 1.2.1 categories devel revision 0 vexus-cdk 702 variants universal portdir devel/vexus-cdk description {Curses Development Kit -- widgets for curses} homepage http://www.vexus.ca/products/CDK/ epoch 0 platforms darwin name vexus-cdk depends_lib port:ncurses maintainers theonelab.com:june long_description {CDK is a C based curses widget library. CDK sits on top of the curses library and provides 21 ready to use widgets for rapid application development of text based interfaces. CDK delivers many of the common widget types required for a robust interface. Widgets can be combined to create complex widgets if needed. CDK significantly reduces the development time of text based application interfaces.} version 4.9.13 categories devel revision 0 viewcvs 629 @@ -4868,8 +4868,8 @@ variants universal description {network connection performance tracking monitor} portdir net/icpld homepage http://icpld.northernmost.org/ epoch 0 platforms darwin name icpld long_description {ICPLD is a connection monitor which allows you to keep track of your network connection perfomance. It will log each occasion of broken networking. It runs as a background process, and sends ICMP requests to an ip of your choice. When a reply isn't received within proper amount of time, it will consider the connection as unavailable and put a stamp in its log.} maintainers nomaintainer categories {net sysutils} version 1.1.4 revision 0 iftop 544 variants universal portdir net/iftop description {display bandwidth usage on an interface} homepage http://www.ex-parrot.com/~pdw/iftop/ epoch 0 platforms darwin name iftop depends_lib {port:libpcap port:ncurses} maintainers nomaintainer long_description {iftop does for network usage what top(1) does for CPU usage. It listens to network traffic on a named interface and displays a table of current bandwidth usage by pairs of hosts. Handy for answering the question {"why} is our ADSL link so slow?\".} version 0.17 categories net revision 1 -ipcalc 591 -variants universal portdir net/ipcalc description {calculates various network masks etc. from given ip-address} homepage http://jodies.de/ipcalc/ epoch 0 depends_run bin:perl:perl5.8 platforms darwin name ipcalc maintainers nomaintainer long_description {ipcalc takes an IP address and netmask and calculates the resulting broadcast, network, Cisco wildcard mask, and host range. By giving a second netmask, you can design sub- and supernetworks. It is also intended to be a teaching tool and presents the results as easy-to-understand binary values.} version 0.38 categories net revision 0 +ipcalc 594 +variants universal portdir net/ipcalc description {calculates various network masks etc. from given ip-address} homepage http://jodies.de/ipcalc/ epoch 0 depends_run path:bin/perl:perl5 platforms darwin name ipcalc maintainers nomaintainer long_description {ipcalc takes an IP address and netmask and calculates the resulting broadcast, network, Cisco wildcard mask, and host range. By giving a second netmask, you can design sub- and supernetworks. It is also intended to be a teaching tool and presents the results as easy-to-understand binary values.} version 0.38 categories net revision 0 ipcheck 386 variants universal portdir net/ipcheck description {dynamic dns client written in python} homepage http://ipcheck.sourceforge.net epoch 0 depends_run bin:python:python24 platforms {darwin freebsd} name ipcheck maintainers nomaintainer long_description {ipcheck updates your ip address at one of the dynamic dns address providers like dyndns.org} version 0.226 categories net revision 0 iperf 466 @@ -5006,8 +5006,8 @@ variants {universal mysql5 mysql4 qstat} depends_build {port:fping port:p5-net-snmp port:p5-digest-sha1 port:p5-digest-hmac port:p5-crypt-des port:openssl} portdir net/nagios-plugins description {Nagios plugins for the Nagios host and service monitor} homepage http://nagios.org epoch 0 platforms darwin name nagios-plugins maintainers markd long_description {Nagios plugins are standalone programs that report the status of hosts and services to the Nagios monitoring framework.} version 1.4.13 categories net revision 1 naim 380 variants universal description {ncurses-based client for multiple messenger systems.} portdir net/naim homepage http://site.n.ml.org/info/naim/ epoch 0 platforms darwin name naim long_description {naim is a ncurses-based messenger client, that supports all major messaging protocol such as AIM, ICQ, IRC etc.} maintainers nomaintainer categories net version 0.11.8.2.1 revision 0 -nbtstat 444 -variants universal portdir net/nbtstat description {grabs NetBIOS name table from a remote machine} homepage http://www.watersheep.org/~jim/ epoch 0 depends_run bin:perl:perl5.8 platforms darwin name nbtstat maintainers nomaintainer long_description {nbtstat provides the basic functionality of the nbtstat utility that is available on Windows. It grabs the NetBIOS name table from a remote machine.} version 20041203 categories net revision 0 +nbtstat 447 +variants universal portdir net/nbtstat description {grabs NetBIOS name table from a remote machine} homepage http://www.watersheep.org/~jim/ epoch 0 depends_run path:bin/perl:perl5 platforms darwin name nbtstat maintainers nomaintainer long_description {nbtstat provides the basic functionality of the nbtstat utility that is available on Windows. It grabs the NetBIOS name table from a remote machine.} version 20041203 categories net revision 0 nc6 452 variants universal portdir net/nc6 description {Netcat clone with IPv6 support} homepage http://www.deepspace6.net/ epoch 0 platforms darwin name nc6 depends_lib {lib:libintl:gettext lib:libiconv:libiconv} maintainers filippo.natali at gmail.com long_description {Netcat 6 is a netcat clone with IPv6 support. It is designed to be tiny, extensible, and elegant, and it makes use of the new extended BSD socket APIs.} version 0.5 categories net revision 0 ncftp 564 @@ -5032,8 +5032,8 @@ variants {universal no_ssl no_zlib bzip2 server ipv6 ksm} depends_build path:/usr/include/netinet/ip_var.h:netinet-headers variant_desc {no_ssl { Without libssl support } no_zlib { Without libz support } bzip2 { Uses libbz2 } server { Build snmpd } ipv6 { Use IPv6 } ksm { support for kerberos based SNMP security }} portdir net/net-snmp description {An extendable SNMP implementation} homepage http://net-snmp.sourceforge.net/ epoch 0 platforms darwin depends_lib {port:openssl port:zlib path:bin/perl:perl5} name net-snmp maintainers {opendarwin.org at darkart.com openmaintainer} long_description {This is net-snmp, a derivative of CMU's SNMP package. Various tools relating to the Simple Network Management Protocol including: an extensible agent, an SNMP library, tools to request or set information from SNMP agents, tools to generate and handle SNMP traps, a version of the unix 'netstat' command using SNMP, a Tk/perl MIB browser.} categories net version 5.4.2.1 revision 0 net6 508 variants universal depends_build port:pkgconfig portdir net/net6 description {Network access framework for IPv4/IPv6} homepage http://gobby.0x539.de/ epoch 0 platforms {darwin freebsd} depends_lib {port:libsigcxx2 port:gnutls} name net6 maintainers nomaintainer long_description {net6 is a library which eases the development of network-based applications as it provides a TCP and UDP protocol abstraction for C++. It is portable to both Windows and POSIX platforms.} version 1.3.6 categories net revision 0 -netatalk 551 -variants universal depends_build path:include/cups/cups.h:cups-headers portdir net/netatalk description {file and printer server for Apple Macintosh clients} homepage http://netatalk.sourceforge.net/ epoch 0 platforms darwin name netatalk depends_lib {port:db44 port:openssl bin:perl:perl5.8 port:cracklib port:libiconv} maintainers nomaintainer long_description {netatalk is a daemon which provides POSIX-compliant Unix/BSD systems with the ability to share files and printers with Apple Macintosh computers.} version 2.0.3 categories net revision 1 +netatalk 554 +variants universal depends_build path:include/cups/cups.h:cups-headers portdir net/netatalk description {file and printer server for Apple Macintosh clients} homepage http://netatalk.sourceforge.net/ epoch 0 platforms darwin name netatalk depends_lib {port:db44 port:openssl path:bin/perl:perl5 port:cracklib port:libiconv} maintainers nomaintainer long_description {netatalk is a daemon which provides POSIX-compliant Unix/BSD systems with the ability to share files and printers with Apple Macintosh computers.} version 2.0.3 categories net revision 1 netcat 715 variants {universal darwin_6} description {Utility for managing network connections} portdir net/netcat homepage http://nc110.sourceforge.net/ epoch 0 platforms {darwin freebsd} name netcat long_description {Netcat is a simple Unix utility which reads and writes data across network connections using TCP or UDP protocol. It is designed to be a reliable back-end tool that can be used directly or easily driven by other programs and scripts. At the same time it is a feature-rich network debugging and exploration tool, since it can create almost any kind of connection you would need and has several interesting built-in capabilities.} maintainers opendarwin.org at darkart.com categories net version 1.10 revision 2 netclasses-framework 529 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Wed Dec 3 19:15:49 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Wed, 3 Dec 2008 19:15:49 -0800 (PST) Subject: [43069] trunk/dports/x11/wmclock/Portfile Message-ID: <20081204031549.79AF282962E@beta.macosforge.org> Revision: 43069 http://trac.macports.org/changeset/43069 Author: ryandesign at macports.org Date: 2008-12-03 19:15:48 -0800 (Wed, 03 Dec 2008) Log Message: ----------- wmclock: increase revision so everyone gets the change from r43055 Modified Paths: -------------- trunk/dports/x11/wmclock/Portfile Modified: trunk/dports/x11/wmclock/Portfile =================================================================== --- trunk/dports/x11/wmclock/Portfile 2008-12-04 02:51:51 UTC (rev 43068) +++ trunk/dports/x11/wmclock/Portfile 2008-12-04 03:15:48 UTC (rev 43069) @@ -3,6 +3,7 @@ PortSystem 1.0 name wmclock version 1.0.12.2 +revision 1 categories x11 maintainers nomaintainer description A dockable clock applet -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Wed Dec 3 19:22:13 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Wed, 3 Dec 2008 19:22:13 -0800 (PST) Subject: [43070] trunk/dports/devel/subversion-perlbindings/Portfile Message-ID: <20081204032213.58310829773@beta.macosforge.org> Revision: 43070 http://trac.macports.org/changeset/43070 Author: mcalhoun at macports.org Date: 2008-12-03 19:22:12 -0800 (Wed, 03 Dec 2008) Log Message: ----------- subversion-perlbindings: Remove prefix from path dependency and make perl5 the default perl (see #16830 and #17182). Fixes #17514 (permission of maintainer). Modified Paths: -------------- trunk/dports/devel/subversion-perlbindings/Portfile Modified: trunk/dports/devel/subversion-perlbindings/Portfile =================================================================== --- trunk/dports/devel/subversion-perlbindings/Portfile 2008-12-04 03:15:48 UTC (rev 43069) +++ trunk/dports/devel/subversion-perlbindings/Portfile 2008-12-04 03:22:12 UTC (rev 43070) @@ -29,7 +29,7 @@ depends_lib port:expat port:neon \ port:apr port:apr-util \ port:db46 port:subversion \ - path:${prefix}/bin/perl:perl5.8 \ + path:bin/perl:perl5 \ port:gettext port:libiconv \ port:serf port:cyrus-sasl2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From narf_tm at macports.org Wed Dec 3 19:42:25 2008 From: narf_tm at macports.org (narf_tm at macports.org) Date: Wed, 3 Dec 2008 19:42:25 -0800 (PST) Subject: [43071] trunk/dports/perl Message-ID: <20081204034225.1E18D829DB6@beta.macosforge.org> Revision: 43071 http://trac.macports.org/changeset/43071 Author: narf_tm at macports.org Date: 2008-12-03 19:42:24 -0800 (Wed, 03 Dec 2008) Log Message: ----------- New port p5-template-plugin-class 0.13. Added Paths: ----------- trunk/dports/perl/p5-template-plugin-class/ trunk/dports/perl/p5-template-plugin-class/Portfile Added: trunk/dports/perl/p5-template-plugin-class/Portfile =================================================================== --- trunk/dports/perl/p5-template-plugin-class/Portfile (rev 0) +++ trunk/dports/perl/p5-template-plugin-class/Portfile 2008-12-04 03:42:24 UTC (rev 43071) @@ -0,0 +1,17 @@ +# $Id$ + +PortSystem 1.0 +PortGroup perl5 1.0 + +perl5.setup Template-Plugin-Class 0.13 +maintainers narf_tm openmaintainer +description allow calling of class methods on arbitrary classes +long_description ${description} + +platforms darwin + +checksums md5 455d687e2108fe3ec28ae34fe590285e \ + sha1 4da2224454091749c8cbc34b57e0bbc014d634cc \ + rmd160 554f3aa0ebc4850d561a03649f2a340b9c780465 + +depends_lib-append port:p5-template-toolkit Property changes on: trunk/dports/perl/p5-template-plugin-class/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Dec 3 19:51:57 2008 From: portindex at macports.org (portindex at macports.org) Date: Wed, 3 Dec 2008 19:51:57 -0800 (PST) Subject: [43072] trunk/dports/PortIndex Message-ID: <20081204035159.850E1829F49@beta.macosforge.org> Revision: 43072 http://trac.macports.org/changeset/43072 Author: portindex at macports.org Date: 2008-12-03 19:51:57 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Total number of ports parsed: 5184 Ports successfully parsed: 5184 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-04 03:42:24 UTC (rev 43071) +++ trunk/dports/PortIndex 2008-12-04 03:51:57 UTC (rev 43072) @@ -1750,8 +1750,8 @@ variants {universal mod_dav_svn no_neon no_bdb mac_os_x_server_mod_dav_svn tools bash_completion darwin_7} variant_desc {mod_dav_svn {Install the subversion apache module (mod_dav_svn)} no_neon {Build without neon (http/https support)} no_bdb {Build without support for BerkeleyDB repositories} mac_os_x_server_mod_dav_svn {Unsupported - attempt to build the subversion apache module with apple supplied apache2} tools {Install some optional extra subversion tools} bash_completion {Install subversion bash-completion file}} portdir devel/subversion description {A version control system designed to be a better cvs.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:gettext port:libiconv port:serf port:cyrus-sasl2} maintainers dluke at geeklair.net long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding pr oblems with cvs(1).} version 1.5.4 categories devel revision 0 subversion-javahlbindings 834 variants {universal no_bdb no_neon darwin_7} variant_desc {no_bdb {Build without support for BerkeleyDB repositories} no_neon {Build without neon (http/https support)}} portdir devel/subversion-javahlbindings description {Java (javahl) bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-javahlbindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:junit port:gettext port:libiconv port:serf port:cyrus-sasl2} maintainers dluke at geeklair.net long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The java bindings provide access to subversion API from java.} version 1.5.4 categories {devel java} revision 0 -subversion-perlbindings 846 -variants {universal no_bdb no_neon darwin_7} variant_desc {no_bdb {Build without support for BerkeleyDB repositories} no_neon {Build without neon (http/https) support)}} portdir devel/subversion-perlbindings description {Perl bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-perlbindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion {path:\${prefix}/bin/perl:perl5.8} port:gettext port:libiconv port:serf port:cyrus-sasl2} maintainers dluke at geeklair.net long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The perl bindings provide access to subversion API from perl.} version 1.5.4 categories {devel perl} revision 0 +subversion-perlbindings 831 +variants {universal no_bdb no_neon darwin_7} variant_desc {no_bdb {Build without support for BerkeleyDB repositories} no_neon {Build without neon (http/https) support)}} portdir devel/subversion-perlbindings description {Perl bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-perlbindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion path:bin/perl:perl5 port:gettext port:libiconv port:serf port:cyrus-sasl2} maintainers dluke at geeklair.net long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The perl bindings provide access to subversion API from perl.} version 1.5.4 categories {devel perl} revision 0 subversion-python24bindings 841 variants {universal no_bdb no_neon darwin_7} variant_desc {no_bdb {Build without support for BerkeleyDB repositories} no_neon {Build without neon (http/https support)}} portdir devel/subversion-python24bindings description {Python bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-python24bindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:python24 port:py-bsddb port:gettext port:libiconv port:serf port:cyrus-sasl2} maintainers blair long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The python bindings provide access to subversion API from python.} version 1.5.2 categories {devel python} revision 0 subversion-python25bindings 856 @@ -6392,6 +6392,8 @@ variants universal portdir perl/p5-task-weaken description {Ensure that a platform has weaken support} homepage http://search.cpan.org/dist/Task-Weaken/ epoch 0 platforms darwin name p5-task-weaken depends_lib {{path:\${prefix}/bin/perl:perl5.8}} maintainers {narf_tm openmaintainer} long_description {{Ensure that a platform has weaken support}} version 1.02 categories perl revision 0 p5-template-gd 547 variants universal portdir perl/p5-template-gd description {Template Toolkit plugin to interface with GD modules} homepage http://search.cpan.org/dist/Template-GD/ epoch 0 platforms darwin name p5-template-gd depends_lib {port:p5-gd port:p5-template-toolkit} maintainers nomaintainer long_description {The Template-GD distribution provides a number of Template Toolkit plugin modules to interface with Lincoln Stein's GD modules. These in turn provide an interface to Thomas Boutell's GD graphics library.} version 2.66 categories perl revision 0 +p5-template-plugin-class 462 +variants universal portdir perl/p5-template-plugin-class description {allow calling of class methods on arbitrary classes} homepage http://search.cpan.org/dist/Template-Plugin-Class/ epoch 0 platforms darwin name p5-template-plugin-class depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-template-toolkit} maintainers {narf_tm openmaintainer} long_description {{allow calling of class methods on arbitrary classes}} version 0.13 categories perl revision 0 p5-template-timer 466 variants universal portdir perl/p5-template-timer description {Rudimentary profiling for Template Toolkit} homepage http://search.cpan.org/dist/Template-Timer/ epoch 0 platforms darwin name p5-template-timer depends_lib {{path:\${prefix}/bin/perl:perl5.8} port:p5-template-toolkit} maintainers {narf_tm openmaintainer} long_description {Template::Timer provides inline timings of the template processing througout your code.} version 0.04 categories perl revision 0 p5-template-toolkit 749 @@ -10057,7 +10059,7 @@ wmcalclock 348 variants universal portdir x11/wmcalclock description {WindowMaker clock docklet} homepage http://jmpacquet.free.fr/wmcalclock/ epoch 0 platforms darwin name wmcalclock depends_lib lib:libX11.6:XFree86 maintainers nomaintainer long_description {Clock docklet for WindowMaker that displays the time and date.} version 1.26 categories x11 revision 0 wmclock 589 -variants universal depends_build bin:xmkmf:imake portdir x11/wmclock description {A dockable clock applet} homepage http://www.jmknoble.net/WindowMaker/wmclock/ epoch 0 platforms {darwin freebsd} depends_lib {lib:libX11.6:xorg-libX11 lib:libXext.6:xorg-libXext lib:libXpm.4:xpm} name wmclock maintainers nomaintainer long_description {Wmclock is an applet which displays the date and time in a dockable tile in the same style as the clock from the NEXTSTEP(tm) operating system. Wmclock is specially designed for the WindowMaker window manager.} version 1.0.12.2 categories x11 revision 0 +variants universal depends_build bin:xmkmf:imake portdir x11/wmclock description {A dockable clock applet} homepage http://www.jmknoble.net/WindowMaker/wmclock/ epoch 0 platforms {darwin freebsd} depends_lib {lib:libX11.6:xorg-libX11 lib:libXext.6:xorg-libXext lib:libXpm.4:xpm} name wmclock maintainers nomaintainer long_description {Wmclock is an applet which displays the date and time in a dockable tile in the same style as the clock from the NEXTSTEP(tm) operating system. Wmclock is specially designed for the WindowMaker window manager.} version 1.0.12.2 categories x11 revision 1 wmcube 459 variants universal portdir x11/wmcube description {3D objects tumbling about representing CPU load.} homepage http://dockapps.org/file.php/id/162 epoch 0 platforms darwin name wmcube depends_lib lib:libX11.6:XFree86 maintainers nomaintainer long_description {Many different objects and will select a random object if you click on the dockapp. The ability to zoom in/out and remove the percent label is present as well.} version 0.98 categories x11 revision 0 wmii 469 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Wed Dec 3 20:41:01 2008 From: jmr at macports.org (jmr at macports.org) Date: Wed, 3 Dec 2008 20:41:01 -0800 (PST) Subject: [43073] trunk/doc-new/guide/xml/project.xml Message-ID: <20081204044101.C7C7882A9ED@beta.macosforge.org> Revision: 43073 http://trac.macports.org/changeset/43073 Author: jmr at macports.org Date: 2008-12-03 20:41:00 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Guide: no need to cc a ticket's assignee. Modified Paths: -------------- trunk/doc-new/guide/xml/project.xml Modified: trunk/doc-new/guide/xml/project.xml =================================================================== --- trunk/doc-new/guide/xml/project.xml 2008-12-04 03:51:57 UTC (rev 43072) +++ trunk/doc-new/guide/xml/project.xml 2008-12-04 04:41:00 UTC (rev 43073) @@ -365,8 +365,8 @@ Create patch file(s) as necessary, attach them to a Trac - ticket, and assign the ticket to the maintainer and Cc him or - her. + ticket, and assign the ticket to the maintainer (or Cc him or + her, if you are unable to assign tickets). -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Wed Dec 3 21:24:14 2008 From: blb at macports.org (blb at macports.org) Date: Wed, 3 Dec 2008 21:24:14 -0800 (PST) Subject: [43074] trunk/dports/net/avahi Message-ID: <20081204052415.DF5EF82BDA2@beta.macosforge.org> Revision: 43074 http://trac.macports.org/changeset/43074 Author: blb at macports.org Date: 2008-12-03 21:24:13 -0800 (Wed, 03 Dec 2008) Log Message: ----------- net/avahi - version bump to 0.6.23; update launchd plist files to be disabled by default, which is how it is done with other such items when using startupitem (aka, consistency is good) Modified Paths: -------------- trunk/dports/net/avahi/Portfile trunk/dports/net/avahi/files/patch-avahi-common-Makefile.in-nls.diff trunk/dports/net/avahi/files/patch-avahi-utils-Makefile.in-nls.diff Added Paths: ----------- trunk/dports/net/avahi/files/patch-initscript_darwin_org.freedesktop.avahi-daemon.plist.in trunk/dports/net/avahi/files/patch-initscript_darwin_org.freedesktop.avahi-dnsconfd.plist.in Modified: trunk/dports/net/avahi/Portfile =================================================================== --- trunk/dports/net/avahi/Portfile 2008-12-04 04:41:00 UTC (rev 43073) +++ trunk/dports/net/avahi/Portfile 2008-12-04 05:24:13 UTC (rev 43074) @@ -3,7 +3,7 @@ PortSystem 1.0 name avahi -version 0.6.22 +version 0.6.23 categories net devel maintainers nomaintainer platforms darwin @@ -23,12 +23,14 @@ homepage http://avahi.org/ master_sites ${homepage}download/ -checksums md5 c84b1a8a23126e188426728710414dc8 \ - sha1 2863bae55a991facc93138ca4660d5b55c846bd1 \ - rmd160 fad35f473a9109c8648e43b0f6f547c32b18e32f +checksums md5 aab1a304851d8145ea5f6a85c10af9e9 \ + sha1 54a0d1944e43805886aafccaf5cc3ec567f5cc9e \ + rmd160 cdb24199bb9d48eba0a98097b4fe5aee94b8367c patchfiles patch-avahi-common-Makefile.in-nls.diff \ - patch-avahi-utils-Makefile.in-nls.diff + patch-avahi-utils-Makefile.in-nls.diff \ + patch-initscript_darwin_org.freedesktop.avahi-daemon.plist.in \ + patch-initscript_darwin_org.freedesktop.avahi-dnsconfd.plist.in post-patch { # This preprocessor macro causes a lot of things to be undefined inside netinet/in.h system header. Modified: trunk/dports/net/avahi/files/patch-avahi-common-Makefile.in-nls.diff =================================================================== --- trunk/dports/net/avahi/files/patch-avahi-common-Makefile.in-nls.diff 2008-12-04 04:41:00 UTC (rev 43073) +++ trunk/dports/net/avahi/files/patch-avahi-common-Makefile.in-nls.diff 2008-12-04 05:24:13 UTC (rev 43074) @@ -1,11 +1,11 @@ ---- avahi-common/Makefile.in 2007-12-17 09:37:42.000000000 -0600 -+++ avahi-common/Makefile.in 2008-11-10 03:45:49.000000000 -0600 -@@ -555,7 +555,7 @@ +--- avahi-common/Makefile.in.orig 2008-06-23 17:20:29.000000000 -0600 ++++ avahi-common/Makefile.in 2008-12-03 22:04:02.000000000 -0700 +@@ -487,7 +487,7 @@ i18n.c i18n.h libavahi_common_la_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) -DAVAHI_LOCALEDIR=\"$(avahilocaledir)\" -libavahi_common_la_LIBADD = $(AM_LDADD) $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) +libavahi_common_la_LIBADD = $(AM_LDADD) $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) $(LIBINTL) - libavahi_common_la_LDFLAGS = $(AM_LDFLAGS) -export-dynamic -version-info $(LIBAVAHI_COMMON_VERSION_INFO) + libavahi_common_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(LIBAVAHI_COMMON_VERSION_INFO) strlst_test_SOURCES = \ strlst.c strlst.h \ Modified: trunk/dports/net/avahi/files/patch-avahi-utils-Makefile.in-nls.diff =================================================================== --- trunk/dports/net/avahi/files/patch-avahi-utils-Makefile.in-nls.diff 2008-12-04 04:41:00 UTC (rev 43073) +++ trunk/dports/net/avahi/files/patch-avahi-utils-Makefile.in-nls.diff 2008-12-04 05:24:13 UTC (rev 43074) @@ -1,6 +1,6 @@ ---- avahi-utils/Makefile.in.orig 2008-01-22 15:46:36.000000000 +0100 -+++ avahi-utils/Makefile.in 2008-01-22 15:48:32.000000000 +0100 -@@ -497,16 +497,16 @@ +--- avahi-utils/Makefile.in.orig 2008-06-23 17:20:32.000000000 -0600 ++++ avahi-utils/Makefile.in 2008-12-03 22:06:10.000000000 -0700 +@@ -416,16 +416,16 @@ @HAVE_DBUS_TRUE at avahi_browse_LDADD = $(AM_LDADD) \ @HAVE_DBUS_TRUE@ ../avahi-client/libavahi-client.la \ @HAVE_DBUS_TRUE@ ../avahi-common/libavahi-common.la \ Added: trunk/dports/net/avahi/files/patch-initscript_darwin_org.freedesktop.avahi-daemon.plist.in =================================================================== --- trunk/dports/net/avahi/files/patch-initscript_darwin_org.freedesktop.avahi-daemon.plist.in (rev 0) +++ trunk/dports/net/avahi/files/patch-initscript_darwin_org.freedesktop.avahi-daemon.plist.in 2008-12-04 05:24:13 UTC (rev 43074) @@ -0,0 +1,11 @@ +--- initscript/darwin/org.freedesktop.avahi-daemon.plist.in.orig 2008-06-17 17:13:44.000000000 -0600 ++++ initscript/darwin/org.freedesktop.avahi-daemon.plist.in 2008-12-03 22:15:03.000000000 -0700 +@@ -2,6 +2,8 @@ + + + ++ Disabled ++ + Label + org.freedesktop.avahi-daemon + OnDemand Added: trunk/dports/net/avahi/files/patch-initscript_darwin_org.freedesktop.avahi-dnsconfd.plist.in =================================================================== --- trunk/dports/net/avahi/files/patch-initscript_darwin_org.freedesktop.avahi-dnsconfd.plist.in (rev 0) +++ trunk/dports/net/avahi/files/patch-initscript_darwin_org.freedesktop.avahi-dnsconfd.plist.in 2008-12-04 05:24:13 UTC (rev 43074) @@ -0,0 +1,11 @@ +--- initscript/darwin/org.freedesktop.avahi-dnsconfd.plist.in.orig 2008-06-17 17:13:44.000000000 -0600 ++++ initscript/darwin/org.freedesktop.avahi-dnsconfd.plist.in 2008-12-03 22:15:24.000000000 -0700 +@@ -2,6 +2,8 @@ + + + ++ Disabled ++ + Label + org.freedesktop.avahi-dnsconfd + OnDemand -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Dec 3 21:52:06 2008 From: portindex at macports.org (portindex at macports.org) Date: Wed, 3 Dec 2008 21:52:06 -0800 (PST) Subject: [43075] trunk/dports/PortIndex Message-ID: <20081204055208.BD49682C3E3@beta.macosforge.org> Revision: 43075 http://trac.macports.org/changeset/43075 Author: portindex at macports.org Date: 2008-12-03 21:52:06 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Total number of ports parsed: 5184 Ports successfully parsed: 5184 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-04 05:24:13 UTC (rev 43074) +++ trunk/dports/PortIndex 2008-12-04 05:52:06 UTC (rev 43075) @@ -4645,7 +4645,7 @@ autossh 406 variants universal description {tool to restart terminated ssh sessions} portdir net/autossh homepage http://www.harding.motd.ca/autossh/ epoch 0 platforms {darwin freebsd} name autossh long_description {autossh is a program to start a copy of ssh and monitor it, restarting it as necessary should it die or stop passing traffic.} maintainers nomaintainer categories {net sysutils} version 1.4a revision 0 avahi 1150 -variants {universal mono test} depends_build port:pkgconfig variant_desc {mono {Enable Mono support} test {Build tests}} portdir net/avahi description {A system which facilitates service discovery on a local network} homepage http://avahi.org/ depends_run port:intltool epoch 0 platforms darwin depends_lib {port:libdaemon path:lib/pkgconfig/glib-2.0.pc:glib2 port:gtk2 port:libglade2 port:python25 port:dbus port:dbus-glib port:dbus-python25 port:expat port:gdbm port:py25-gdbm port:py25-gtk port:gettext port:libiconv} name avahi maintainers nomaintainer long_description {Avahi is a system which facilitates service discovery on a local network. This means that you can plug your laptop or computer into a network and instantly be able to view other people who you can chat with, find printers to print to or find files being shared. This kind of technology is already found in Mac OS X (branded Rendezvous, Bonjour and sometimes Zeroconf) and is very convenient. Avahi is mainly based on Lennart Poettering's flexmdns mDNS implementation for Linux which has been discontinued in favour of Avahi.} categories {net devel} version 0.6.22 revision 0 +variants {universal mono test} depends_build port:pkgconfig variant_desc {mono {Enable Mono support} test {Build tests}} portdir net/avahi description {A system which facilitates service discovery on a local network} homepage http://avahi.org/ depends_run port:intltool epoch 0 platforms darwin depends_lib {port:libdaemon path:lib/pkgconfig/glib-2.0.pc:glib2 port:gtk2 port:libglade2 port:python25 port:dbus port:dbus-glib port:dbus-python25 port:expat port:gdbm port:py25-gdbm port:py25-gtk port:gettext port:libiconv} name avahi maintainers nomaintainer long_description {Avahi is a system which facilitates service discovery on a local network. This means that you can plug your laptop or computer into a network and instantly be able to view other people who you can chat with, find printers to print to or find files being shared. This kind of technology is already found in Mac OS X (branded Rendezvous, Bonjour and sometimes Zeroconf) and is very convenient. Avahi is mainly based on Lennart Poettering's flexmdns mDNS implementation for Linux which has been discontinued in favour of Avahi.} categories {net devel} version 0.6.23 revision 0 axel 533 variants universal portdir net/axel description {A light Unix download accelerator} homepage http://wilmer.gaast.net/main.php/axel.html epoch 0 platforms darwin name axel depends_lib {port:libiconv port:gettext} maintainers nomaintainer long_description {Axel does the same thing any other accelerator does: it opens more than one HTTP/FTP connection per download and each connection transfers its own, separate, part of the file. It may sound weird, but it works very well in practice.} version 1.0b categories {net www} revision 0 balance 451 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Wed Dec 3 21:53:49 2008 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Wed, 3 Dec 2008 21:53:49 -0800 (PST) Subject: [43076] trunk/dports/x11/xorg-xcb-proto/Portfile Message-ID: <20081204055349.E613A82C455@beta.macosforge.org> Revision: 43076 http://trac.macports.org/changeset/43076 Author: jeremyhu at macports.org Date: 2008-12-03 21:53:49 -0800 (Wed, 03 Dec 2008) Log Message: ----------- xcbproto: Formatting cleanup suggestions from Ryan Modified Paths: -------------- trunk/dports/x11/xorg-xcb-proto/Portfile Modified: trunk/dports/x11/xorg-xcb-proto/Portfile =================================================================== --- trunk/dports/x11/xorg-xcb-proto/Portfile 2008-12-04 05:52:06 UTC (rev 43075) +++ trunk/dports/x11/xorg-xcb-proto/Portfile 2008-12-04 05:53:49 UTC (rev 43076) @@ -20,31 +20,33 @@ universal_variant no -set pyversion 2.6 -depends_run port:libxml2 \ - port:python[strsed ${pyversion} {g/[.]//}] -configure.env PYTHON=${prefix}/bin/python${pyversion} +depends_run port:libxml2 -variant python25 description {Use python 2.5 for xcbgen} { - depends_run-delete port:python[strsed ${pyversion} {g/[.]//}] - configure.env-delete PYTHON=${prefix}/bin/python${pyversion} +default_variants +python26 - set pyversion 2.5 +variant python25 conflicts python26 python30 description {Use python 2.5 for xcbgen} { + depends_run-append port:python25 + configure.python ${prefix}/bin/python2.5 +} - depends_lib-append port:python[strsed ${pyversion} {g/[.]//}] - configure.env-append PYTHON=${prefix}/bin/python${pyversion} +variant python26 conflicts python25 python30 description {Use python 2.6 for xcbgen} { + set pyversion 2.6 + + depends_run-append port:python26 + configure.python ${prefix}/bin/python2.6 } -variant python30 description {Use python 3.0 for xcbgen} { - depends_run-delete port:python[strsed ${pyversion} {g/[.]//}] - configure.env-delete PYTHON=${prefix}/bin/python${pyversion} - +variant python30 conflicts python25 python26 description {Use python 3.0 for xcbgen} { set pyversion 3.0 - depends_lib-append port:python[strsed ${pyversion} {g/[.]//}] - configure.env-append PYTHON=${prefix}/bin/python${pyversion} + depends_run-append port:python30 + configure.python ${prefix}/bin/python3.0 } +if {![variant_isset python25] && ![variant_isset python30]} { + default_variants +python26 +} + livecheck.check regex livecheck.url ${master_sites}?C=M&O=D livecheck.regex xcb-proto-(\\d+(?:\\.\\d+)*) -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Dec 3 22:52:01 2008 From: portindex at macports.org (portindex at macports.org) Date: Wed, 3 Dec 2008 22:52:01 -0800 (PST) Subject: [43077] trunk/dports/PortIndex Message-ID: <20081204065202.9EC4F82CA24@beta.macosforge.org> Revision: 43077 http://trac.macports.org/changeset/43077 Author: portindex at macports.org Date: 2008-12-03 22:52:00 -0800 (Wed, 03 Dec 2008) Log Message: ----------- Total number of ports parsed: 5184 Ports successfully parsed: 5184 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-04 05:53:49 UTC (rev 43076) +++ trunk/dports/PortIndex 2008-12-04 06:52:00 UTC (rev 43077) @@ -10182,8 +10182,8 @@ portdir x11/xorg-util-macros description {X.org util-macros} platforms darwin name xorg-util-macros version 1.2.0 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Miscellaneous utility macros required by the Modular X.org codebase.} xorg-videoproto 269 portdir x11/xorg-videoproto description {X.org videoproto} platforms darwin name xorg-videoproto version 2.2.2 categories {x11 devel} homepage http://www.x.org revision 0 epoch 0 maintainers jeremyhu long_description {Prototype headers for the XVideo extension to X11} -xorg-xcb-proto 422 -variants {python25 python30} variant_desc {python25 {Use python 2.5 for xcbgen} python30 {Use python 3.0 for xcbgen}} portdir x11/xorg-xcb-proto description {X.org xcb-proto} homepage http://xcb.freedesktop.org epoch 0 depends_run {port:libxml2 port:python26} platforms {darwin macosx} name xorg-xcb-proto maintainers jeremyhu long_description {XML-XCB protocol descriptions} version 1.2 categories {x11 devel} revision 0 +xorg-xcb-proto 468 +variants {python25 python26 python30} variant_desc {python25 {Use python 2.5 for xcbgen} python26 {Use python 2.6 for xcbgen} python30 {Use python 3.0 for xcbgen}} portdir x11/xorg-xcb-proto description {X.org xcb-proto} homepage http://xcb.freedesktop.org epoch 0 depends_run {port:libxml2 port:python26} platforms {darwin macosx} name xorg-xcb-proto maintainers jeremyhu long_description {XML-XCB protocol descriptions} version 1.2 categories {x11 devel} revision 0 xorg-xcb-util 355 variants universal depends_build {port:pkgconfig port:xorg-xproto} portdir x11/xorg-xcb-util description {X.org xcb-util} homepage http://xcb.freedesktop.org/ epoch 0 platforms {darwin macosx} depends_lib port:xorg-libxcb name xorg-xcb-util maintainers jeremyhu long_description {Utility libraries for XCB} version 0.3.1 categories {x11 devel} revision 0 xorg-xcmiscproto 272 -------------- next part -------------- An HTML attachment was scrubbed... URL: From mas at macports.org Thu Dec 4 00:23:08 2008 From: mas at macports.org (mas at macports.org) Date: Thu, 4 Dec 2008 00:23:08 -0800 (PST) Subject: [43078] trunk/dports/graphics/netpbm/Portfile Message-ID: <20081204082309.A76C982DD8A@beta.macosforge.org> Revision: 43078 http://trac.macports.org/changeset/43078 Author: mas at macports.org Date: 2008-12-04 00:23:03 -0800 (Thu, 04 Dec 2008) Log Message: ----------- Disable parallel build again since it does not seem to work on 10.4 Modified Paths: -------------- trunk/dports/graphics/netpbm/Portfile Modified: trunk/dports/graphics/netpbm/Portfile =================================================================== --- trunk/dports/graphics/netpbm/Portfile 2008-12-04 06:52:00 UTC (rev 43077) +++ trunk/dports/graphics/netpbm/Portfile 2008-12-04 08:23:03 UTC (rev 43078) @@ -17,7 +17,9 @@ homepage http://netpbm.sourceforge.net/ master_sites sourceforge:netpbm platforms darwin freebsd linux -use_parallel_build yes +# If you're thinking about enabling parallel build in the Portfile, +# please make sure to test it on OS X 10.4 as well! Thanks! +use_parallel_build no depends_build path:bin/perl:perl5 -------------- next part -------------- An HTML attachment was scrubbed... URL: From gwright at macports.org Thu Dec 4 00:25:12 2008 From: gwright at macports.org (gwright at macports.org) Date: Thu, 4 Dec 2008 00:25:12 -0800 (PST) Subject: [43079] trunk/dports/lang/sbcl/Portfile Message-ID: <20081204082512.7CF5E82DDE4@beta.macosforge.org> Revision: 43079 http://trac.macports.org/changeset/43079 Author: gwright at macports.org Date: 2008-12-04 00:25:11 -0800 (Thu, 04 Dec 2008) Log Message: ----------- Version bump to 1.0.23. Modified Paths: -------------- trunk/dports/lang/sbcl/Portfile Modified: trunk/dports/lang/sbcl/Portfile =================================================================== --- trunk/dports/lang/sbcl/Portfile 2008-12-04 08:23:03 UTC (rev 43078) +++ trunk/dports/lang/sbcl/Portfile 2008-12-04 08:25:11 UTC (rev 43079) @@ -3,7 +3,7 @@ PortSystem 1.0 name sbcl -version 1.0.22 +version 1.0.23 categories lang maintainers gwright at macports.org waqar at macports.org platforms darwin @@ -59,9 +59,9 @@ worksrcdir ${name}-${version} checksums ${name}-${version}-source${extract.suffix} \ - md5 fad4f6634aedadd3212804b65ac89c96 \ - sha1 7a430cbdb4a13ca79bcc70b7a3dd4cb2b05f2ed5 \ - rmd160 b2cabb0665b0c996bd079e0d131f906558b9f3ef + md5 70a55d758ddd90843d7f93a109fa7ffa \ + sha1 fcbb09f7c2260c8efbe963451469b1f584b454ab \ + rmd160 ec109b7d98c51ce6075b7bb76a9d6a89eb6dd84e post-patch { reinplace "s|/usr/local/lib/${name}|${prefix}/lib/${name}|g" \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Thu Dec 4 00:44:59 2008 From: blb at macports.org (blb at macports.org) Date: Thu, 4 Dec 2008 00:44:59 -0800 (PST) Subject: [43080] trunk/base/doc/port.1 Message-ID: <20081204084459.61CDA82E1B5@beta.macosforge.org> Revision: 43080 http://trac.macports.org/changeset/43080 Author: blb at macports.org Date: 2008-12-04 00:44:59 -0800 (Thu, 04 Dec 2008) Log Message: ----------- doc/port.1 - document platform command Modified Paths: -------------- trunk/base/doc/port.1 Modified: trunk/base/doc/port.1 =================================================================== --- trunk/base/doc/port.1 2008-12-04 08:25:11 UTC (rev 43079) +++ trunk/base/doc/port.1 2008-12-04 08:44:59 UTC (rev 43080) @@ -408,6 +408,8 @@ If portname(s) are given as arguments, display a list of the latest version of each port. .Ss version Display the release number of the installed MacPorts infrastructure. +.Ss platform +Display the platform information for the current system. .Ss selfupdate Updates the MacPorts system, ports tree(s) and base tools if needed, from the MacPorts rsync server, installing the newest infrastructure available. To update you would typically do: -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Thu Dec 4 00:47:40 2008 From: blb at macports.org (blb at macports.org) Date: Thu, 4 Dec 2008 00:47:40 -0800 (PST) Subject: [43081] branches/release_1_7/base/doc/port.1 Message-ID: <20081204084740.C46F182E202@beta.macosforge.org> Revision: 43081 http://trac.macports.org/changeset/43081 Author: blb at macports.org Date: 2008-12-04 00:47:39 -0800 (Thu, 04 Dec 2008) Log Message: ----------- doc/port1.0 - merge r43080 from trunk: document platform command Modified Paths: -------------- branches/release_1_7/base/doc/port.1 Modified: branches/release_1_7/base/doc/port.1 =================================================================== --- branches/release_1_7/base/doc/port.1 2008-12-04 08:44:59 UTC (rev 43080) +++ branches/release_1_7/base/doc/port.1 2008-12-04 08:47:39 UTC (rev 43081) @@ -408,6 +408,8 @@ If portname(s) are given as arguments, display a list of the latest version of each port. .Ss version Display the release number of the installed MacPorts infrastructure. +.Ss platform +Display the platform information for the current system. .Ss selfupdate Updates the MacPorts system, ports tree(s) and base tools if needed, from the MacPorts rsync server, installing the newest infrastructure available. To update you would typically do: -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Thu Dec 4 00:51:48 2008 From: portindex at macports.org (portindex at macports.org) Date: Thu, 4 Dec 2008 00:51:48 -0800 (PST) Subject: [43082] trunk/dports/PortIndex Message-ID: <20081204085150.1658D82E2A7@beta.macosforge.org> Revision: 43082 http://trac.macports.org/changeset/43082 Author: portindex at macports.org Date: 2008-12-04 00:51:48 -0800 (Thu, 04 Dec 2008) Log Message: ----------- Total number of ports parsed: 5184 Ports successfully parsed: 5184 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-04 08:47:39 UTC (rev 43081) +++ trunk/dports/PortIndex 2008-12-04 08:51:48 UTC (rev 43082) @@ -3947,7 +3947,7 @@ ruby19 906 variants {universal c_api_docs tk mactk} variant_desc {c_api_docs {Generate documentation for Ruby C API} tk {Build using MacPorts Tk} mactk {Build using MacOS X Tk Framework}} portdir lang/ruby19 description {Powerful and clean object-oriented scripting language} homepage http://www.ruby-lang.org/ epoch 0 platforms darwin name ruby19 depends_lib {port:libiconv port:readline port:openssl port:zlib port:ncurses} maintainers {febeling openmaintainer} long_description {Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward, extensible, and portable. Version 1.9 contains a new VM called YARV, is faster and slightly incompatible from version 1.8. It has not yet been released as stable.} version 1.9.1-preview2 categories {lang ruby} revision 0 sbcl 739 -variants {universal powerpc darwin_8_i386 darwin_9_i386 html test threads} variant_desc {html {Builds the SBCL and ASDF documentation as HTML} test {enable test suite} threads {enable threaded runtime}} portdir lang/sbcl description {The Steel Bank Common Lisp system} homepage http://www.sbcl.org epoch 0 platforms darwin name sbcl maintainers {gwright at macports.org waqar at macports.org} long_description {Steel Bank Common Lisp (SBCL) is a Open Source development system for ANSI Common Lisp. It provides an interactive environment including an integrated native compiler, interpreter, and debugger. (And it, and its generated code, can also play nicely with Unix when running noninteractively.)} version 1.0.22 categories lang revision 0 +variants {universal powerpc darwin_8_i386 darwin_9_i386 html test threads} variant_desc {html {Builds the SBCL and ASDF documentation as HTML} test {enable test suite} threads {enable threaded runtime}} portdir lang/sbcl description {The Steel Bank Common Lisp system} homepage http://www.sbcl.org epoch 0 platforms darwin name sbcl maintainers {gwright at macports.org waqar at macports.org} long_description {Steel Bank Common Lisp (SBCL) is a Open Source development system for ANSI Common Lisp. It provides an interactive environment including an integrated native compiler, interpreter, and debugger. (And it, and its generated code, can also play nicely with Unix when running noninteractively.)} version 1.0.23 categories lang revision 0 scala 537 variants universal description {The Scala Programming Language} portdir lang/scala homepage http://www.scala-lang.org/ epoch 0 platforms darwin name scala long_description {Scala is a modern multi-paradigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way. It smoothly integrates features of object-oriented and functional languages. It runs inside a Java Virtual Machine and is fully interoperable with Java.} maintainers blair categories {lang java} version 2.7.2 revision 0 scheme48 468 -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Thu Dec 4 01:47:04 2008 From: blb at macports.org (blb at macports.org) Date: Thu, 4 Dec 2008 01:47:04 -0800 (PST) Subject: [43083] trunk/base/ChangeLog Message-ID: <20081204094705.2595082EE10@beta.macosforge.org> Revision: 43083 http://trac.macports.org/changeset/43083 Author: blb at macports.org Date: 2008-12-04 01:47:03 -0800 (Thu, 04 Dec 2008) Log Message: ----------- ChangeLog - minor fixups Modified Paths: -------------- trunk/base/ChangeLog Modified: trunk/base/ChangeLog =================================================================== --- trunk/base/ChangeLog 2008-12-04 08:51:48 UTC (rev 43082) +++ trunk/base/ChangeLog 2008-12-04 09:47:03 UTC (rev 43083) @@ -38,7 +38,7 @@ ruby.setup command, "implementation". It is "ruby" by default, and can be set to "ruby19". It names the ruby-implementing port, and can possibly support still other rubys in the future. (#15912, febeling - in 38683) + in r38683) - Don't use build.nice for complex build.cmd commands (#16091) @@ -49,7 +49,7 @@ - User-supplied port names are now treated in a fully case-insensitive manner. This fixes a bug where giving the name with incorrect case when deactivating/uninstalling would cause all the port's files to be left - behind. (#11759, jmr/raimue in r37349, 37621) + behind. (#11759, jmr/raimue in r37349, r37621) - The non-verbose output for the build phase no longer shows what target was used. This makes the build phase consistent with the other phases @@ -66,7 +66,7 @@ - We now have a mirror of (almost) all distfiles at distfiles.macports.org, and it is automatically appended to master_sites and patch_sites (#15456, - jmr in r37217, 37255) + jmr in r37217, r37255) - port search looks now in name, description and long_description for the search pattern and prints the list sorted (#15434, raimue in r37119, @@ -139,7 +139,7 @@ - Add "tcldoc" documentation comments and "tcldox" Doxyfile for doxygen (#12048) - Add --pretend and --nosync flags to selfupdate (raimue in r33938, r33939, - r33940, 33941) + r33940, r33941) - Work around autoconf X11 detection bugs on darwin (afb in r33717) @@ -149,7 +149,7 @@ - Add applications_dir and frameworks_dir configuration (r33499, r33722) - - Remove some hardcoded paths (such as /usr/X11R6, /usr/bin/install) + - Remove some hardcoded paths (such as /usr/X11R6, /usr/bin/install) (afb in r33501, r33619, r33620) - Add configure.{universal_target,universal_sysroot,universal_archs} (afb in r33478). -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Thu Dec 4 01:48:33 2008 From: blb at macports.org (blb at macports.org) Date: Thu, 4 Dec 2008 01:48:33 -0800 (PST) Subject: [43084] branches/release_1_7/base/ChangeLog Message-ID: <20081204094834.388E182EE4A@beta.macosforge.org> Revision: 43084 http://trac.macports.org/changeset/43084 Author: blb at macports.org Date: 2008-12-04 01:48:33 -0800 (Thu, 04 Dec 2008) Log Message: ----------- ChangeLog - merge r43083 from trunk: minor fixups Modified Paths: -------------- branches/release_1_7/base/ChangeLog Modified: branches/release_1_7/base/ChangeLog =================================================================== --- branches/release_1_7/base/ChangeLog 2008-12-04 09:47:03 UTC (rev 43083) +++ branches/release_1_7/base/ChangeLog 2008-12-04 09:48:33 UTC (rev 43084) @@ -38,7 +38,7 @@ ruby.setup command, "implementation". It is "ruby" by default, and can be set to "ruby19". It names the ruby-implementing port, and can possibly support still other rubys in the future. (#15912, febeling - in 38683) + in r38683) - Don't use build.nice for complex build.cmd commands (#16091) @@ -49,7 +49,7 @@ - User-supplied port names are now treated in a fully case-insensitive manner. This fixes a bug where giving the name with incorrect case when deactivating/uninstalling would cause all the port's files to be left - behind. (#11759, jmr/raimue in r37349, 37621) + behind. (#11759, jmr/raimue in r37349, r37621) - The non-verbose output for the build phase no longer shows what target was used. This makes the build phase consistent with the other phases @@ -66,7 +66,7 @@ - We now have a mirror of (almost) all distfiles at distfiles.macports.org, and it is automatically appended to master_sites and patch_sites (#15456, - jmr in r37217, 37255) + jmr in r37217, r37255) - port search looks now in name, description and long_description for the search pattern and prints the list sorted (#15434, raimue in r37119, @@ -139,7 +139,7 @@ - Add "tcldoc" documentation comments and "tcldox" Doxyfile for doxygen (#12048) - Add --pretend and --nosync flags to selfupdate (raimue in r33938, r33939, - r33940, 33941) + r33940, r33941) - Work around autoconf X11 detection bugs on darwin (afb in r33717) @@ -149,7 +149,7 @@ - Add applications_dir and frameworks_dir configuration (r33499, r33722) - - Remove some hardcoded paths (such as /usr/X11R6, /usr/bin/install) + - Remove some hardcoded paths (such as /usr/X11R6, /usr/bin/install) (afb in r33501, r33619, r33620) - Add configure.{universal_target,universal_sysroot,universal_archs} (afb in r33478). -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Thu Dec 4 06:00:45 2008 From: nox at macports.org (nox at macports.org) Date: Thu, 4 Dec 2008 06:00:45 -0800 (PST) Subject: [43085] trunk/dports/databases Message-ID: <20081204140045.9766B83AF1A@beta.macosforge.org> Revision: 43085 http://trac.macports.org/changeset/43085 Author: nox at macports.org Date: 2008-12-04 06:00:43 -0800 (Thu, 04 Dec 2008) Log Message: ----------- Add php5-sqlite3 port. Added Paths: ----------- trunk/dports/databases/php5-sqlite3/ trunk/dports/databases/php5-sqlite3/Portfile Added: trunk/dports/databases/php5-sqlite3/Portfile =================================================================== --- trunk/dports/databases/php5-sqlite3/Portfile (rev 0) +++ trunk/dports/databases/php5-sqlite3/Portfile 2008-12-04 14:00:43 UTC (rev 43085) @@ -0,0 +1,34 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 + +name php5-sqlite3 +set my_name sqlite3 +version 0.6 +categories databases php +platforms darwin +maintainers nox openmaintainer +description SQLite 3 bindings for PHP 5 + +long_description \ + SQLite3 is a PHP extension for use with the SQLite 3 database system. + +homepage http://pecl.php.net/package/sqlite3 +master_sites http://pecl.php.net/get/ +distname ${my_name}-${version} +extract.suffix .tgz + +checksums md5 700652f4a687fea38ef68a4bb3968c34 \ + sha1 51d65da3e829e06ffb67ba2d185ad2e0007155a5 \ + rmd160 e27b0d2b3b0e27b87599fbb9b6fc72780a83792d + +depends_lib port:php5 + +pre-configure { + system "cd ${worksrcpath} && phpize" +} + +use_parallel_build yes + +destroot.destdir INSTALL_ROOT=${destroot} Property changes on: trunk/dports/databases/php5-sqlite3/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Thu Dec 4 06:29:53 2008 From: nox at macports.org (nox at macports.org) Date: Thu, 4 Dec 2008 06:29:53 -0800 (PST) Subject: [43086] trunk/dports/devel Message-ID: <20081204142954.17E1083BF89@beta.macosforge.org> Revision: 43086 http://trac.macports.org/changeset/43086 Author: nox at macports.org Date: 2008-12-04 06:29:52 -0800 (Thu, 04 Dec 2008) Log Message: ----------- Add php5-intl port. Added Paths: ----------- trunk/dports/devel/php5-intl/ trunk/dports/devel/php5-intl/Portfile Added: trunk/dports/devel/php5-intl/Portfile =================================================================== --- trunk/dports/devel/php5-intl/Portfile (rev 0) +++ trunk/dports/devel/php5-intl/Portfile 2008-12-04 14:29:52 UTC (rev 43086) @@ -0,0 +1,35 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 + +name php5-intl +set my_name intl +version 1.0.1 +categories devel php +platforms darwin +maintainers nox openmaintainer +description Internationalization extension for PHP 5 + +long_description \ + Internationalization extension implements ICU library functionality in PHP. + +homepage http://pecl.php.net/package/intl +master_sites http://pecl.php.net/get/ +distname ${my_name}-${version} +extract.suffix .tgz + +checksums md5 0876f49e8d413e5dedf18b660363d7e1 \ + sha1 f8d95ce476ea5ed91d0a46152b12d2e9c1182692 \ + rmd160 778d93507bcea9f5d71cc02326f15aff045bdfd5 + +depends_lib port:php5 \ + port:icu + +pre-configure { + system "cd ${worksrcpath} && phpize" +} + +use_parallel_build yes + +destroot.destdir INSTALL_ROOT=${destroot} Property changes on: trunk/dports/devel/php5-intl/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Thu Dec 4 06:52:24 2008 From: portindex at macports.org (portindex at macports.org) Date: Thu, 4 Dec 2008 06:52:24 -0800 (PST) Subject: [43087] trunk/dports/PortIndex Message-ID: <20081204145226.2542783D2B2@beta.macosforge.org> Revision: 43087 http://trac.macports.org/changeset/43087 Author: portindex at macports.org Date: 2008-12-04 06:52:23 -0800 (Thu, 04 Dec 2008) Log Message: ----------- Total number of ports parsed: 5186 Ports successfully parsed: 5186 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-04 14:29:52 UTC (rev 43086) +++ trunk/dports/PortIndex 2008-12-04 14:52:23 UTC (rev 43087) @@ -702,6 +702,8 @@ variants universal portdir databases/pgsqlclient description {ADO.NET adapter for PostgreSQL} homepage http://pgsqlclient.sourceforge.net/ epoch 0 platforms darwin name pgsqlclient depends_lib bin:mono:mono maintainers nomaintainer long_description {{ADO.NET adapter for PostgreSQL}} version 1.0-Beta6 categories databases revision 0 pgtcl 334 variants universal portdir databases/pgtcl description {Tcl PostgreSQL interface} homepage http://pgtcl.projects.postgresql.org/ epoch 0 platforms darwin name pgtcl depends_lib {port:tcl port:postgresql83} maintainers mac.com:giorgio_v long_description {Tcl client interface to PostgreSQL} version 1.5 categories databases revision 0 +php5-sqlite3 374 +variants universal portdir databases/php5-sqlite3 description {SQLite 3 bindings for PHP 5} homepage http://pecl.php.net/package/sqlite3 epoch 0 platforms darwin name php5-sqlite3 depends_lib port:php5 maintainers {nox openmaintainer} long_description {SQLite3 is a PHP extension for use with the SQLite 3 database system.} version 0.6 categories {databases php} revision 0 postgis 812 variants {universal postgresql82} portdir databases/postgis description {adds support for geographic objects to the postgresql database} homepage http://postgis.refractions.net/ epoch 0 platforms darwin name postgis depends_lib {port:geos port:proj port:libiconv port:postgresql83} maintainers frank-lists at auroralux.net long_description {PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS {spatially enables} the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. PostGIS follows the OpenGIS Simple Features Specification for SQL and will be submitted for conformance testing at version 1.0.} version 1.3.3 categories databases revision 1 postgresql7 767 @@ -1626,6 +1628,8 @@ variants universal portdir devel/pcre++ description {C++ wrapper for the Perl Compatible Regular Expressions Library} homepage http://www.daemon.de/PCRE epoch 0 platforms darwin name pcre++ depends_lib port:pcre maintainers gwright at macports.org long_description {PCRE++ is a C++ wrapper-class for the great library PCRE (Perl Compatible Regular Expressions) by Philip Hazel. This class allows you to use perl alike regular expressions in your C++ applications. You can use it to search in strings, to split strings into parts using expressions or to search and replace a part of a string with another part.} version 0.9.5 categories devel revision 0 perforce 393 variants {universal server} description {Fast source code management system} portdir devel/perforce homepage http://www.perforce.com/ epoch 0 platforms darwin name perforce long_description {Perforce is a commercial revision control system that can be used gratis for developing free software. (see the WWW page for details).} maintainers nomaintainer categories devel version 06.2 revision 0 +php5-intl 389 +variants universal portdir devel/php5-intl description {Internationalization extension for PHP 5} homepage http://pecl.php.net/package/intl epoch 0 platforms darwin name php5-intl depends_lib {port:php5 port:icu} maintainers {nox openmaintainer} long_description {Internationalization extension implements ICU library functionality in PHP.} version 1.0.1 categories {devel php} revision 0 physfs 477 variants {universal darwin_8 darwin_9} portdir devel/physfs description {library providing abstract archive access} homepage http://icculus.org/physfs/ epoch 0 platforms darwin name physfs depends_lib port:readline maintainers nomaintainer long_description {PhysicsFS is a library to provide abstract access to various archives. It is intended for use in video games, and the design was somewhat inspired by Quake 3's file subsystem.} version 1.0.1 categories devel revision 0 piklab 474 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Thu Dec 4 09:38:17 2008 From: jmr at macports.org (jmr at macports.org) Date: Thu, 4 Dec 2008 09:38:17 -0800 (PST) Subject: [43088] trunk/dports/devel/quilt/Portfile Message-ID: <20081204173817.C2F2F844BAE@beta.macosforge.org> Revision: 43088 http://trac.macports.org/changeset/43088 Author: jmr at macports.org Date: 2008-12-04 09:38:14 -0800 (Thu, 04 Dec 2008) Log Message: ----------- quilt: update to 0.47 Modified Paths: -------------- trunk/dports/devel/quilt/Portfile Modified: trunk/dports/devel/quilt/Portfile =================================================================== --- trunk/dports/devel/quilt/Portfile 2008-12-04 14:52:23 UTC (rev 43087) +++ trunk/dports/devel/quilt/Portfile 2008-12-04 17:38:14 UTC (rev 43088) @@ -4,12 +4,10 @@ PortSystem 1.0 name quilt -version 0.46 -revision 1 +version 0.47 categories devel platforms darwin -maintainers jmr \ - openmaintainer +maintainers jmr openmaintainer description patch management scripts long_description \ Patchwork Quilt is a set of scripts designed to allow you to\ @@ -19,9 +17,9 @@ homepage http://savannah.nongnu.org/projects/quilt/ master_sites http://savannah.nongnu.org/download/quilt/ -checksums md5 4508546d1ed0257ef7c128b6121b7208 \ - sha1 9344c1289f262053beb0196645b41ea5d9cda597 \ - rmd160 508d6b4f8c1283b20acf8a757d4b3dfc3b8a7961 +checksums md5 d33d2442bd34387260b1c1db3e623af0 \ + sha1 028dadd5ab60b1df12edd18af600e59fe0a83525 \ + rmd160 6b76400466b52da02ce067b3722244448fb431a8 depends_lib port:gsed port:getopt port:coreutils -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Thu Dec 4 09:51:49 2008 From: portindex at macports.org (portindex at macports.org) Date: Thu, 4 Dec 2008 09:51:49 -0800 (PST) Subject: [43089] trunk/dports/PortIndex Message-ID: <20081204175151.6875184553E@beta.macosforge.org> Revision: 43089 http://trac.macports.org/changeset/43089 Author: portindex at macports.org Date: 2008-12-04 09:51:47 -0800 (Thu, 04 Dec 2008) Log Message: ----------- Total number of ports parsed: 5186 Ports successfully parsed: 5186 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-04 17:38:14 UTC (rev 43088) +++ trunk/dports/PortIndex 2008-12-04 17:51:47 UTC (rev 43089) @@ -1683,7 +1683,7 @@ qtsharp 458 variants universal portdir devel/qtsharp description {Qt bindings for C#} homepage http://qtcsharp.sourceforge.net/ epoch 0 depends_run bin:cscc:pnet platforms darwin depends_lib {lib:libqt.3.3:qt3-mac lib:libqtc.1:qtc-qtsharp} name qtsharp maintainers nomaintainer long_description {A cross-platform GUI toolkit for Mono and Portable.Net which provides set of classes that bind any CIL language to the Qt toolkit.} version 0.7.1 categories devel revision 0 quilt 500 -variants universal portdir devel/quilt description {patch management scripts} homepage http://savannah.nongnu.org/projects/quilt/ epoch 0 platforms darwin name quilt depends_lib {port:gsed port:getopt port:coreutils} maintainers {jmr openmaintainer} long_description {Patchwork Quilt is a set of scripts designed to allow you to manage a series of patches by keeping track of the changes each patch makes. Patches can be applied, un-applied, refreshed, etc.} version 0.46 categories devel revision 1 +variants universal portdir devel/quilt description {patch management scripts} homepage http://savannah.nongnu.org/projects/quilt/ epoch 0 platforms darwin name quilt depends_lib {port:gsed port:getopt port:coreutils} maintainers {jmr openmaintainer} long_description {Patchwork Quilt is a set of scripts designed to allow you to manage a series of patches by keeping track of the changes each patch makes. Patches can be applied, un-applied, refreshed, etc.} version 0.47 categories devel revision 0 radlib 636 variants {universal mysql5 pgresql83} variant_desc {mysql5 {Includes mySQL5 database support} pgresql83 {Includes PostgreSQL database support}} portdir devel/radlib description {Rapid Application Development Library} homepage http://www.radlib.teel.ws/ epoch 0 platforms darwin name radlib maintainers mac.com:mbrooksclark long_description {radlib is a rapid application development library for unix multi-process applications. It uses SYS V IPC facilities and FIFOs to provide an RTOS-like, event-driven, distributed framework. Processes may be run as daemons or have a controlling terminal.} version 2.7.5 categories devel revision 0 rdesktop-devel 602 -------------- next part -------------- An HTML attachment was scrubbed... URL: From devans at macports.org Thu Dec 4 11:11:47 2008 From: devans at macports.org (devans at macports.org) Date: Thu, 4 Dec 2008 11:11:47 -0800 (PST) Subject: [43090] trunk/dports/x11/XFree86/Portfile Message-ID: <20081204191148.E1C828472D0@beta.macosforge.org> Revision: 43090 http://trac.macports.org/changeset/43090 Author: devans at macports.org Date: 2008-12-04 11:11:46 -0800 (Thu, 04 Dec 2008) Log Message: ----------- XFree86: disable livecheck. Modified Paths: -------------- trunk/dports/x11/XFree86/Portfile Modified: trunk/dports/x11/XFree86/Portfile =================================================================== --- trunk/dports/x11/XFree86/Portfile 2008-12-04 17:51:47 UTC (rev 43089) +++ trunk/dports/x11/XFree86/Portfile 2008-12-04 19:11:46 UTC (rev 43090) @@ -133,3 +133,5 @@ # leaving it enabled prevents the universal installation of any other ports # that depend on XFree86, even if they would otherwise succeed. See #12137. universal_variant no +# Disable livecheck +livecheck.check no -------------- next part -------------- An HTML attachment was scrubbed... URL: From devans at macports.org Thu Dec 4 11:20:43 2008 From: devans at macports.org (devans at macports.org) Date: Thu, 4 Dec 2008 11:20:43 -0800 (PST) Subject: [43091] trunk/dports/x11/XFree86/Portfile Message-ID: <20081204192044.3F21C847730@beta.macosforge.org> Revision: 43091 http://trac.macports.org/changeset/43091 Author: devans at macports.org Date: 2008-12-04 11:20:43 -0800 (Thu, 04 Dec 2008) Log Message: ----------- XFree86: change livecheck no to none. Modified Paths: -------------- trunk/dports/x11/XFree86/Portfile Modified: trunk/dports/x11/XFree86/Portfile =================================================================== --- trunk/dports/x11/XFree86/Portfile 2008-12-04 19:11:46 UTC (rev 43090) +++ trunk/dports/x11/XFree86/Portfile 2008-12-04 19:20:43 UTC (rev 43091) @@ -134,4 +134,4 @@ # that depend on XFree86, even if they would otherwise succeed. See #12137. universal_variant no # Disable livecheck -livecheck.check no +livecheck.check none -------------- next part -------------- An HTML attachment was scrubbed... URL: From devans at macports.org Thu Dec 4 11:32:05 2008 From: devans at macports.org (devans at macports.org) Date: Thu, 4 Dec 2008 11:32:05 -0800 (PST) Subject: [43092] trunk/dports/multimedia/ffmpeg/Portfile Message-ID: <20081204193206.27702847D59@beta.macosforge.org> Revision: 43092 http://trac.macports.org/changeset/43092 Author: devans at macports.org Date: 2008-12-04 11:32:04 -0800 (Thu, 04 Dec 2008) Log Message: ----------- ffmpeg: disable livecheck. Modified Paths: -------------- trunk/dports/multimedia/ffmpeg/Portfile Modified: trunk/dports/multimedia/ffmpeg/Portfile =================================================================== --- trunk/dports/multimedia/ffmpeg/Portfile 2008-12-04 19:20:43 UTC (rev 43091) +++ trunk/dports/multimedia/ffmpeg/Portfile 2008-12-04 19:32:04 UTC (rev 43092) @@ -161,3 +161,6 @@ # keep vhook as long as avfilter isnt working fully configure.args-delete --disable-vhook } + +#disable livecheck +livecheck.check none -------------- next part -------------- An HTML attachment was scrubbed... URL: From simon at macports.org Thu Dec 4 12:21:12 2008 From: simon at macports.org (simon at macports.org) Date: Thu, 4 Dec 2008 12:21:12 -0800 (PST) Subject: [43093] trunk/dports/multimedia/ffmpeg/Portfile Message-ID: <20081204202112.D6E3A849D66@beta.macosforge.org> Revision: 43093 http://trac.macports.org/changeset/43093 Author: simon at macports.org Date: 2008-12-04 12:21:12 -0800 (Thu, 04 Dec 2008) Log Message: ----------- multimedia/ffmpeg: Updated to "stable" SVN version, maintainer timeout. Modified Paths: -------------- trunk/dports/multimedia/ffmpeg/Portfile Modified: trunk/dports/multimedia/ffmpeg/Portfile =================================================================== --- trunk/dports/multimedia/ffmpeg/Portfile 2008-12-04 19:32:04 UTC (rev 43092) +++ trunk/dports/multimedia/ffmpeg/Portfile 2008-12-04 20:21:12 UTC (rev 43093) @@ -3,8 +3,7 @@ PortSystem 1.0 name ffmpeg -version 0.4.9-pre1 -revision 12 +version 15261 categories multimedia maintainers acho at macports.org openmaintainer description Digital VCR and streaming server @@ -32,7 +31,7 @@ \ libavformat is a library containing parsers and \ generators for all common audio/video formats. -homepage http://ffmpeg.sourceforge.net/ +homepage http://ffmpeg.mplayerhq.hu/ master_sites distfiles use_parallel_build yes @@ -41,7 +40,8 @@ build.cmd gmake configure.compiler gcc-4.0 -set svn_rev 14381 +set svn_rev ${version} +set libswscale_rev 27728 pre-fetch { if {[file isdirectory ${distpath}/${svn_rev}]} { @@ -55,7 +55,7 @@ if {![file isdirectory ${distpath}/${svn_rev}]} { file mkdir ${distpath}/${svn_rev} system "svn co -r${svn_rev} --ignore-externals svn://svn.mplayerhq.hu/ffmpeg/trunk ${distpath}/${svn_rev}/trunk" - system "svn co -r27349 svn://svn.mplayerhq.hu/mplayer/trunk/libswscale ${distpath}/${svn_rev}/trunk/libswscale" + system "svn co -r${libswscale_rev} svn://svn.mplayerhq.hu/mplayer/trunk/libswscale ${distpath}/${svn_rev}/trunk/libswscale" } } @@ -153,6 +153,7 @@ } } + variant avfilter requires gpl description {video filter support (replaces vhook)} { patchfiles-append patch-libswscale-Makefile.diff \ patch-configure.diff -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Thu Dec 4 12:52:06 2008 From: portindex at macports.org (portindex at macports.org) Date: Thu, 4 Dec 2008 12:52:06 -0800 (PST) Subject: [43094] trunk/dports/PortIndex Message-ID: <20081204205208.5277284A98C@beta.macosforge.org> Revision: 43094 http://trac.macports.org/changeset/43094 Author: portindex at macports.org Date: 2008-12-04 12:52:06 -0800 (Thu, 04 Dec 2008) Log Message: ----------- Total number of ports parsed: 5186 Ports successfully parsed: 5186 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-04 20:21:12 UTC (rev 43093) +++ trunk/dports/PortIndex 2008-12-04 20:52:06 UTC (rev 43094) @@ -4542,8 +4542,8 @@ variants universal portdir multimedia/dvdrip description {perl front end for transcode} homepage http://www2.exit1.org/dvdrip/ epoch 0 platforms darwin name dvdrip depends_lib {port:p5-libintl-perl port:transcode port:p5-gtk2} maintainers marioscheel at web.de long_description {dvd::rip is a full featured DVD copy program written in Perl. It provides an easy to use but feature-rich Gtk+ GUI to control almost all aspects of the ripping and transcoding process. It uses the widely known video processing swissknife transcode and many other Open Source tools.} version 0.98.8 categories multimedia revision 0 emotion 755 variants universal portdir multimedia/emotion description {A Evas smart-object library for video capabilities.} homepage http://evidence.sf.net epoch 0 platforms darwin name emotion depends_lib {lib:libX11.6:XFree86 lib:libjpeg.62:jpeg lib:libpng.3:libpng lib:libtiff.3:tiff lib:libImlib2:imlib2 lib:libesd:esound lib:libintl:gettext lib:libxine:xine-lib lib:libevas:evas lib:libecore:ecore} long_description {Emotion is an Evas smart-object library providing video capabilities. Emotion leverages libxine 1.0 and integrates seemlessly with the rest of the EFL. Because its based on libxine, any format that it supports (Theora, DiVX, MPEG2, etc) is avalible using Emotion.} maintainers nomaintainer version 0.0.1 categories {multimedia devel} revision 0 -ffmpeg 1927 -variants {darwin_i386 mmx gpl postproc lame extvorbis theora faac faad xvid x264 a52 avfilter} depends_build {bin:svn:subversion port:gmake} variant_desc {mmx {enable mmx support, experimental; does not build in gcc-4.2 or xcode 3.0 gcc-4.0} gpl {allow use of GPL code, the resulting libav* and ffmpeg will be under GPL} postproc {enable GPLed postprocessing support} lame {enable MP3 encoding via libmp3lame} extvorbis {enable Vorbis encoding via libvorbis, native implementation exists} theora {enable Theora encoding via libtheora} faac {enable FAAC support via libfaac} faad {enable FAAD support via libfaad} xvid {enable Xvid encoding via xvidcore, native MPEG-4/Xvid encoder exists} x264 {enable H.264 encoding via x264} a52 {enable GPLed liba52 support} avfilter {video filter support (replaces vhook)}} portdir multimedia/ffmpeg description {Digital VCR and streaming server} homepage http://ffmpeg.sourceforge.net/ epoch 0 platforms darwin depends_lib port:a52dec name ffmpeg main tainers {acho at macports.org openmaintainer} long_description {FFmpeg is a complete solution to record, convert and stream audio and video. It includes libavcodec, the leading audio/video codec library. The project is made of several components: ffmpeg is a command line tool to convert one video file format to another. It also supports grabbing and encoding in real time from a TV card. ffserver is an HTTP (RTSP is being developped) multimedia streaming server for live broadcasts. Time shifting of live broadcast is also supported. ffplay is a simple media player based on SDL and on the ffmpeg libraries. libavcodec is a library containing all the ffmpeg audio/video encoders and decoders. Most codecs were developped from scratch to ensure best performances and high code reusability. libavformat is a library containing parsers and generators for all common audio/video formats.} categories multimedia version 0.4.9-pre1 revision 12 +ffmpeg 1918 +variants {darwin_i386 mmx gpl postproc lame extvorbis theora faac faad xvid x264 a52 avfilter} depends_build {bin:svn:subversion port:gmake} variant_desc {mmx {enable mmx support, experimental; does not build in gcc-4.2 or xcode 3.0 gcc-4.0} gpl {allow use of GPL code, the resulting libav* and ffmpeg will be under GPL} postproc {enable GPLed postprocessing support} lame {enable MP3 encoding via libmp3lame} extvorbis {enable Vorbis encoding via libvorbis, native implementation exists} theora {enable Theora encoding via libtheora} faac {enable FAAC support via libfaac} faad {enable FAAD support via libfaad} xvid {enable Xvid encoding via xvidcore, native MPEG-4/Xvid encoder exists} x264 {enable H.264 encoding via x264} a52 {enable GPLed liba52 support} avfilter {video filter support (replaces vhook)}} portdir multimedia/ffmpeg description {Digital VCR and streaming server} homepage http://ffmpeg.mplayerhq.hu/ epoch 0 platforms darwin depends_lib port:a52dec name ffmpeg maintai ners {acho at macports.org openmaintainer} long_description {FFmpeg is a complete solution to record, convert and stream audio and video. It includes libavcodec, the leading audio/video codec library. The project is made of several components: ffmpeg is a command line tool to convert one video file format to another. It also supports grabbing and encoding in real time from a TV card. ffserver is an HTTP (RTSP is being developped) multimedia streaming server for live broadcasts. Time shifting of live broadcast is also supported. ffplay is a simple media player based on SDL and on the ffmpeg libraries. libavcodec is a library containing all the ffmpeg audio/video encoders and decoders. Most codecs were developped from scratch to ensure best performances and high code reusability. libavformat is a library containing parsers and generators for all common audio/video formats.} categories multimedia version 15261 revision 0 gnupod 742 variants {universal flac vorbis aac artwork} variant_desc {flac {Enable FLAC} vorbis {Enable Ogg/Vorbis} aac {Enable AAC} artwork {Enable artwork support}} portdir multimedia/gnupod description {GNUpod is a collection of tools which allow you to use your iPod with UNIX-like operating systems.} homepage http://blinkenlights.ch/gnupod epoch 0 platforms darwin name gnupod depends_lib {path:bin/perl:perl5 port:p5-mp3-info port:p5-digest-md5 port:p5-xml-parser port:p5-unicode-string port:p5-libwww-perl port:p5-digest-sha1 port:p5-timedate port:lame} maintainers pmq long_description {{GNUpod is a collection of tools which allow you to use your iPod with UNIX-like operating systems.}} version 0.99.7 categories {multimedia perl} revision 0 libartnet 377 -------------- next part -------------- An HTML attachment was scrubbed... URL: From devans at macports.org Thu Dec 4 14:03:43 2008 From: devans at macports.org (devans at macports.org) Date: Thu, 4 Dec 2008 14:03:43 -0800 (PST) Subject: [43095] trunk/dports/gnome/evolution-data-server/Portfile Message-ID: <20081204220343.85D3784C6A6@beta.macosforge.org> Revision: 43095 http://trac.macports.org/changeset/43095 Author: devans at macports.org Date: 2008-12-04 14:03:43 -0800 (Thu, 04 Dec 2008) Log Message: ----------- evolution-data-server: update to version 2.24.2. Modified Paths: -------------- trunk/dports/gnome/evolution-data-server/Portfile Modified: trunk/dports/gnome/evolution-data-server/Portfile =================================================================== --- trunk/dports/gnome/evolution-data-server/Portfile 2008-12-04 20:52:06 UTC (rev 43094) +++ trunk/dports/gnome/evolution-data-server/Portfile 2008-12-04 22:03:43 UTC (rev 43095) @@ -4,7 +4,7 @@ PortSystem 1.0 name evolution-data-server -version 2.24.1 +version 2.24.2 set branch [join [lrange [split ${version} .] 0 1] .] description Addressbook and calender libs for GNOME. long_description Evolution Data Server provides a central location for \ @@ -15,9 +15,9 @@ homepage http://www.gnome.org/ master_sites gnome:sources/evolution-data-server/${branch}/ -checksums md5 d613412a079aebfaf0234637c92bc7c7 \ - sha1 07d6491b05c4c97b1d4d3849f96b220058950b84 \ - rmd160 2865fdc36552b70d252e1725bb0546e78efc0023 +checksums md5 ee08e677d30fadd58e53e6e064d4ae6e \ + sha1 8c4988446c6a8552972974800766eb536fcf267c \ + rmd160 703b064095b960954ebb0621e15887731c429010 depends_lib port:gnome-platform-suite \ port:libsoup \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Thu Dec 4 14:52:01 2008 From: portindex at macports.org (portindex at macports.org) Date: Thu, 4 Dec 2008 14:52:01 -0800 (PST) Subject: [43096] trunk/dports/PortIndex Message-ID: <20081204225203.41C6384D8F3@beta.macosforge.org> Revision: 43096 http://trac.macports.org/changeset/43096 Author: portindex at macports.org Date: 2008-12-04 14:52:01 -0800 (Thu, 04 Dec 2008) Log Message: ----------- Total number of ports parsed: 5186 Ports successfully parsed: 5186 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-04 22:03:43 UTC (rev 43095) +++ trunk/dports/PortIndex 2008-12-04 22:52:01 UTC (rev 43096) @@ -2313,7 +2313,7 @@ evince 1066 variants {universal djvu} depends_build {port:gnome-doc-utils port:m4 path:bin/perl:perl5 port:pkgconfig port:rarian} variant_desc {djvu {Builds against port:djvulibre}} portdir gnome/evince description {Evince is a document viewer for multiple document formats like pdf, and many others.} homepage http://www.gnome.org/ epoch 0 platforms darwin name evince depends_lib {port:atk port:audiofile port:cairo port:dbus port:dbus-glib port:esound port:expat port:fontconfig port:freetype port:gconf port:gettext path:lib/pkgconfig/glib-2.0.pc:glib2 port:gnome-keyring port:gnome-icon-theme port:gnome-vfs port:gtk2 port:hicolor-icon-theme port:jpeg port:libart_lgpl port:libglade2 port:libgnome port:libgnomecanvas port:libgnomeui port:libiconv port:libpng port:libxml2 port:libxslt port:nautilus port:openssl path:lib/pkgconfig/pango.pc:pango port:poppler port:popt port:tiff port:zlib} long_description {{Evince is a document viewer for multiple document formats like pdf, and many others.}} maintainers nomaintainer categories {gnome print} version 2.24.1 revision 0 evolution-data-server 534 -variants {universal darwin_8 darwin_8_i386} portdir gnome/evolution-data-server description {Addressbook and calender libs for GNOME.} homepage http://www.gnome.org/ epoch 0 platforms darwin name evolution-data-server depends_lib {port:gnome-platform-suite port:libsoup port:libiconv port:nspr port:db46 port:nss port:gnome-keyring port:sqlite3} long_description {Evolution Data Server provides a central location for addressbook and calendar in the GNOME Desktop.} maintainers nomaintainer version 2.24.1 categories gnome revision 0 +variants {universal darwin_8 darwin_8_i386} portdir gnome/evolution-data-server description {Addressbook and calender libs for GNOME.} homepage http://www.gnome.org/ epoch 0 platforms darwin name evolution-data-server depends_lib {port:gnome-platform-suite port:libsoup port:libiconv port:nspr port:db46 port:nss port:gnome-keyring port:sqlite3} long_description {Evolution Data Server provides a central location for addressbook and calendar in the GNOME Desktop.} maintainers nomaintainer version 2.24.2 categories gnome revision 0 evolution-python 608 variants universal depends_build port:pkgconfig portdir gnome/evolution-python description {Conduit is a synchronization application for GNOME.} homepage http://www.conduit-project.org/wiki/evolution-python epoch 0 platforms darwin name evolution-python depends_lib {port:evolution-data-server port:py25-gobject port:py25-gtk} long_description {Conduit is a synchronization application for GNOME. It allows you to synchronize your data between online web services (Gmail, backpackit.com, Flickr, PicasaWeb, Box.net, etc) and your computer.} maintainers nomaintainer version 0.0.4 categories gnome revision 0 file-roller 608 -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Thu Dec 4 18:43:24 2008 From: blb at macports.org (blb at macports.org) Date: Thu, 4 Dec 2008 18:43:24 -0800 (PST) Subject: [43097] trunk/base/NEWS Message-ID: <20081205024324.A9F2785115B@beta.macosforge.org> Revision: 43097 http://trac.macports.org/changeset/43097 Author: blb at macports.org Date: 2008-12-04 18:43:23 -0800 (Thu, 04 Dec 2008) Log Message: ----------- NEWS - update for interesting items in 1.7.0 Modified Paths: -------------- trunk/base/NEWS Modified: trunk/base/NEWS =================================================================== --- trunk/base/NEWS 2008-12-04 22:52:01 UTC (rev 43096) +++ trunk/base/NEWS 2008-12-05 02:43:23 UTC (rev 43097) @@ -1,17 +1,38 @@ -== Overview of changes from MacPorts 1.6.0 to 1.6.1 == +== Overview of changes from MacPorts 1.6.0 to 1.7.0 == # For regular users: -* A suitable message is output when the requested port is not installed when polling its dependents; -* Fixed the "Error: Unable to open port: invalid command name "ui_prefix"" runtime error on Panther; -* Fixed the "Error: Unable to open port: invalid command name "ui_channels"" runtime error on Panther; -* Fixed a MacPorts, Panther specific build failure due to missing sqlite headers on that platform; -* Fixed a MacPorts build failure when building itself in universal fashion; +*) The resources directory (containing port group information and the mirror sites) has been moved into the ports tree, so a new MacPorts release is no longer needed to update these items +*) The error message from 'port upgrade outdated' when no ports are outdated is much improved +*) Improvement on handling of MacPorts configuration files (global and user-defined options) +*) Case-insensitive issues have been fixed +*) 'port help' is improved +*) The MacPorts mirror, distfiles.macports.org, is automatically checked when the normal sites fail to respond +*) The search command of port now searches the name, description, and long_description fields +*) Numerous improvements to dependency handling +*) Work around a bug in 10.5's Tcl environment handling +*) Fetching distfiles now tries to ping all mirror sites first in an attempt to pick the best source +*) A new option was added to uninstall: --recursive +*) The output for the port commands info, deps, dependents, and search has been improved +*) Two new options to selfupdate: --pretend and --nosync +*) A platform command has been added to port to display your platform information +*) A suitable message is output when the requested port is not installed when polling its dependents; +*) Fixed the "Error: Unable to open port: invalid command name "ui_prefix"" runtime error on Panther; +*) Fixed the "Error: Unable to open port: invalid command name "ui_channels"" runtime error on Panther; +*) Fixed a MacPorts, Panther specific build failure due to missing sqlite headers on that platform; +*) Fixed a MacPorts build failure when building itself in universal fashion; # For Portfile writers: +*) ruby port group adds a new parameter to ruby.setup for multiple ruby version support +*) New use_dmg option allows DMG-format distfiles +*) ruby.setup (part of the ruby port group) now takes a fetch type +*) git has been added as a valid fetch.type +*) On Mac OS X, MACOSX_DEPLOYMENT_TARGET is now always set to workaround various issues +*) Several universal-specific variables added to the configure.* group +*) A merge function is now available for easier merging of multiple architectures for universal support *) Pre-fabricated statements with correct checksums are output when in verbose mode if the existing ones in the Portfile are incorrect; *) "port lint" now recognizes non-canonical modelines; *) Added a 'configure.pipe' Portfile option for using pipes rather than intermediate files when compiling C/C++ based ports; -------------- next part -------------- An HTML attachment was scrubbed... URL: From noreply at macports.org Thu Dec 4 21:16:40 2008 From: noreply at macports.org (MacPorts) Date: Fri, 05 Dec 2008 05:16:40 -0000 Subject: [MacPorts] blb modified Message-ID: <20081205051750.B576428087@relay11.apple.com> Changed page "blb" by blb at macports.org from 75.163.172.33* Page URL: Diff URL: Revision 14 -------8<------8<------8<------8<------8<------8<------8<------8<-------- Index: blb ========================================================================= --- blb (version: 13) +++ blb (version: 14) @@ -3,7 +3,7 @@ == Notes == === Tcl Env Bug === Tickets #13930, #13953, #14876, #16010, #16233, #16675. Others? -=== iconv vs libiconv symbol Issue === +=== iconv vs libiconv symbol Issue === #libiconv-symbols Tickets #13055, #16648, #16862, #16892. Seems like the issue is that the port is not finding the libiconv header from MacPorts, and instead uses the one in /usr, so it believes iconv_ is the prefix to use. The fixes which work so far are to use {{{--with-libiconv-prefix=${prefix}}}} in configure.args when available, otherwise some other trick (eg, {{{-I${prefix}/include}}} for CPPFLAGS) to make sure the header is found at the right time. -------8<------8<------8<------8<------8<------8<------8<------8<-------- * The IP shown here might not mean anything if the user or the server is behind a proxy. -- MacPorts Ports system for Mac OS This is an automated message. Someone at http://www.macports.org/ added your email address to be notified of changes on blb. If it was not you, please report to . From blb at macports.org Thu Dec 4 22:18:55 2008 From: blb at macports.org (blb at macports.org) Date: Thu, 4 Dec 2008 22:18:55 -0800 (PST) Subject: [43098] trunk/dports/lang/python26/Portfile Message-ID: <20081205061855.7758C8532EB@beta.macosforge.org> Revision: 43098 http://trac.macports.org/changeset/43098 Author: blb at macports.org Date: 2008-12-04 22:18:54 -0800 (Thu, 04 Dec 2008) Log Message: ----------- lang/python26 - version bump to 2.6.1, switch to bz2 distfile Modified Paths: -------------- trunk/dports/lang/python26/Portfile Modified: trunk/dports/lang/python26/Portfile =================================================================== --- trunk/dports/lang/python26/Portfile 2008-12-05 02:43:23 UTC (rev 43097) +++ trunk/dports/lang/python26/Portfile 2008-12-05 06:18:54 UTC (rev 43098) @@ -3,8 +3,7 @@ PortSystem 1.0 name python26 -version 2.6 -revision 5 +version 2.6.1 set major [lindex [split $version .] 0] set branch [join [lrange [split ${version} .] 0 1] .] categories lang @@ -22,11 +21,11 @@ # ftp://ftp.python.jp/ftp.python.org/python/${version}/ distname Python-${version} -extract.suffix .tgz +use_bzip2 yes -checksums md5 d16d29a77db2cd3af882a591f431a403 \ - sha1 d7fd08304b66cb4020786a7ee5aa452235046ecd \ - rmd160 b44d5cc7efa198b21f41e43e1d28af60875f0a4e +checksums md5 e81c2f0953aa60f8062c05a4673f2be0 \ + sha1 419f0cb29e9713ea861dde8c43d107c51329e57b \ + rmd160 497dafaca9c150fca611b0175eeb13c2fc4d3e2d # Can be removed once MacPorts 1.7.0 is released if {![info exists applications_dir]} { -------------- next part -------------- An HTML attachment was scrubbed... URL: From noreply at macports.org Thu Dec 4 22:36:36 2008 From: noreply at macports.org (MacPorts) Date: Fri, 05 Dec 2008 06:36:36 -0000 Subject: [MacPorts] XcodeVersionInfo modified Message-ID: <20081205063746.C5EEF28088@relay14.apple.com> Changed page "XcodeVersionInfo" by blb at macports.org from 75.163.172.33* Page URL: Diff URL: Revision 3 Comment: Add Xcode 3.1.2 -------8<------8<------8<------8<------8<------8<------8<------8<-------- Index: XcodeVersionInfo ========================================================================= --- XcodeVersionInfo (version: 2) +++ XcodeVersionInfo (version: 3) @@ -37,3 +37,7 @@ === Xcode 3.1.1 === * gcc4 is 4.0.1 (Apple build 5488) * gcc42 is 4.2.1 (Apple build 5564) + +=== Xcode 3.1.2 === + * gcc4 is 4.0.1 (Apple build 5490) + * gcc42 is 4.2.1 (Apple build 5566) -------8<------8<------8<------8<------8<------8<------8<------8<-------- * The IP shown here might not mean anything if the user or the server is behind a proxy. -- MacPorts Ports system for Mac OS This is an automated message. Someone at http://www.macports.org/ added your email address to be notified of changes on XcodeVersionInfo. If it was not you, please report to . From portindex at macports.org Thu Dec 4 22:51:56 2008 From: portindex at macports.org (portindex at macports.org) Date: Thu, 4 Dec 2008 22:51:56 -0800 (PST) Subject: [43099] trunk/dports/PortIndex Message-ID: <20081205065158.4E127853762@beta.macosforge.org> Revision: 43099 http://trac.macports.org/changeset/43099 Author: portindex at macports.org Date: 2008-12-04 22:51:55 -0800 (Thu, 04 Dec 2008) Log Message: ----------- Total number of ports parsed: 5186 Ports successfully parsed: 5186 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-05 06:18:54 UTC (rev 43098) +++ trunk/dports/PortIndex 2008-12-05 06:51:55 UTC (rev 43099) @@ -3934,8 +3934,8 @@ variants {universal darwin_7 darwin_8 darwin_9 darwin_10} portdir lang/python25 description {An interpreted, object-oriented programming language} homepage http://www.python.org/ epoch 0 platforms darwin name python25 depends_lib port:gettext maintainers mww long_description {Python is an interpreted, interactive, object-oriented programming language.} version 2.5.2 categories lang revision 7 python25-doc 443 variants {universal darwin_7 darwin_8 darwin_9 puredarwin} portdir lang/python25-doc description {HTML documentation for Python 2.5} homepage http://www.python.org/ epoch 0 platforms darwin name python25-doc depends_lib {port:gettext port:python25 port:latex2html} maintainers nomaintainer long_description {HTML documentation for Python 2.5. Use by running 'pydoc2.5 TOPIC', e.g. 'pydoc2.5 NUMBERS'.} version 2.5.2 categories lang revision 0 -python26 551 -variants {universal darwin_7 darwin_9 darwin_10 ucs4} variant_desc {ucs4 {Enable support for UCS4}} portdir lang/python26 description {An interpreted, object-oriented programming language} homepage http://www.python.org/ epoch 0 platforms darwin name python26 depends_lib {port:gettext port:zlib port:openssl port:tk port:sqlite3 port:db46 port:ncurses port:gdbm port:bzip2 port:readline} maintainers {blb mcalhoun} long_description {Python is an interpreted, interactive, object-oriented programming language.} version 2.6 categories lang revision 5 +python26 553 +variants {universal darwin_7 darwin_9 darwin_10 ucs4} variant_desc {ucs4 {Enable support for UCS4}} portdir lang/python26 description {An interpreted, object-oriented programming language} homepage http://www.python.org/ epoch 0 platforms darwin name python26 depends_lib {port:gettext port:zlib port:openssl port:tk port:sqlite3 port:db46 port:ncurses port:gdbm port:bzip2 port:readline} maintainers {blb mcalhoun} long_description {Python is an interpreted, interactive, object-oriented programming language.} version 2.6.1 categories lang revision 0 python30 402 variants {universal darwin_10} portdir lang/python30 description {An interpreted, object-oriented programming language} homepage http://www.python.org/ epoch 0 platforms darwin name python30 depends_lib port:gettext maintainers mww long_description {Python is an interpreted, interactive, object-oriented programming language. This version is a BETA release!} version 3.0rc1 categories lang revision 0 python30-doc 292 -------------- next part -------------- An HTML attachment was scrubbed... URL: From devans at macports.org Thu Dec 4 23:04:28 2008 From: devans at macports.org (devans at macports.org) Date: Thu, 4 Dec 2008 23:04:28 -0800 (PST) Subject: [43100] trunk/dports/audio/libsamplerate/Portfile Message-ID: <20081205070428.9014D853A71@beta.macosforge.org> Revision: 43100 http://trac.macports.org/changeset/43100 Author: devans at macports.org Date: 2008-12-04 23:04:28 -0800 (Thu, 04 Dec 2008) Log Message: ----------- libsamplerate: update to version 0.1.4. Modified Paths: -------------- trunk/dports/audio/libsamplerate/Portfile Modified: trunk/dports/audio/libsamplerate/Portfile =================================================================== --- trunk/dports/audio/libsamplerate/Portfile 2008-12-05 06:51:55 UTC (rev 43099) +++ trunk/dports/audio/libsamplerate/Portfile 2008-12-05 07:04:28 UTC (rev 43100) @@ -3,7 +3,7 @@ PortSystem 1.0 name libsamplerate -version 0.1.3 +version 0.1.4 categories audio maintainers boeyms openmaintainer description libsamplerate (also known as Secret Rabbit Code) is a library \ @@ -13,7 +13,7 @@ platforms darwin use_parallel_build yes master_sites ${homepage} -checksums md5 3f91af22a6c4135485594d0d2c91d45d \ - sha1 4a0b493aa868fb6f9e7e8e5db2fb44cfbcd2d123 \ - rmd160 7bf12883ade8f9dd24d4ee89cb740e5df06358ec +checksums md5 f6fafd5d4971a2442352c72bc3598cbd \ + sha1 47837f4ab5f3655f3d59ce2dc9bcf032826e52e8 \ + rmd160 88fa0cef37a1dc8b8ca4d656dc5ac1ed82560c49 depends_lib port:pkgconfig port:fftw-3 port:libsndfile -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Thu Dec 4 23:51:41 2008 From: portindex at macports.org (portindex at macports.org) Date: Thu, 4 Dec 2008 23:51:41 -0800 (PST) Subject: [43101] trunk/dports/PortIndex Message-ID: <20081205075143.61634853DAF@beta.macosforge.org> Revision: 43101 http://trac.macports.org/changeset/43101 Author: portindex at macports.org Date: 2008-12-04 23:51:41 -0800 (Thu, 04 Dec 2008) Log Message: ----------- Total number of ports parsed: 5186 Ports successfully parsed: 5186 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-05 07:04:28 UTC (rev 43100) +++ trunk/dports/PortIndex 2008-12-05 07:51:41 UTC (rev 43101) @@ -375,7 +375,7 @@ liboss 368 variants universal portdir audio/liboss description {OSS emulation for Mac OS X} homepage http://liboss.sourceforge.net/ epoch 0 platforms darwin name liboss depends_lib {lib:libesd:esound lib:libaudiofile:audiofile} maintainers pguyot at kallisys.net long_description {liboss is a sound API to provide OSS support in Mac OS X.} version 0.0.1 categories audio revision 0 libsamplerate 540 -variants universal portdir audio/libsamplerate description {libsamplerate (also known as Secret Rabbit Code) is a library for performing sample rate conversion of audio data.} homepage http://www.mega-nerd.com/libsamplerate/ epoch 0 platforms darwin name libsamplerate depends_lib {port:pkgconfig port:fftw-3 port:libsndfile} maintainers {boeyms openmaintainer} long_description {{libsamplerate (also known as Secret Rabbit Code) is a library for performing sample rate conversion of audio data.}} version 0.1.3 categories audio revision 0 +variants universal portdir audio/libsamplerate description {libsamplerate (also known as Secret Rabbit Code) is a library for performing sample rate conversion of audio data.} homepage http://www.mega-nerd.com/libsamplerate/ epoch 0 platforms darwin name libsamplerate depends_lib {port:pkgconfig port:fftw-3 port:libsndfile} maintainers {boeyms openmaintainer} long_description {{libsamplerate (also known as Secret Rabbit Code) is a library for performing sample rate conversion of audio data.}} version 0.1.4 categories audio revision 0 libsdl_mixer 564 variants {universal mikmod} variant_desc {mikmod {Enable use of external libmikmod}} portdir audio/libsdl_mixer description {Audio mixer library for SDL} homepage http://www.libsdl.org/projects/SDL_mixer/ epoch 0 platforms macosx name libsdl_mixer depends_lib {port:libsdl port:smpeg port:libvorbis port:libogg} maintainers nomaintainer long_description {A sample multi-channel audio mixer library. It supports any number of simultaneously playing channels of 16 bit stereo audio, plus a single channel of music.} version 1.2.8 categories {audio devel} revision 1 libsdl_mixer-framework 488 -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Fri Dec 5 00:05:15 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Fri, 5 Dec 2008 00:05:15 -0800 (PST) Subject: [43102] trunk/dports/python Message-ID: <20081205080515.DEBAF853F64@beta.macosforge.org> Revision: 43102 http://trac.macports.org/changeset/43102 Author: mcalhoun at macports.org Date: 2008-12-05 00:05:10 -0800 (Fri, 05 Dec 2008) Log Message: ----------- py26-numpy: New Port Added Paths: ----------- trunk/dports/python/py26-numpy/ trunk/dports/python/py26-numpy/Portfile trunk/dports/python/py26-numpy/files/ trunk/dports/python/py26-numpy/files/patch-f2py_setup.py.diff trunk/dports/python/py26-numpy/files/patch-g95_link.diff Added: trunk/dports/python/py26-numpy/Portfile =================================================================== --- trunk/dports/python/py26-numpy/Portfile (rev 0) +++ trunk/dports/python/py26-numpy/Portfile 2008-12-05 08:05:10 UTC (rev 43102) @@ -0,0 +1,74 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 + +####################################################################################################### +# PortGroup python26 1.0 +####################################################################################################### +# Can be removed once MacPorts 1.7.0 is released +if {![info exists frameworks_dir]} { + set frameworks_dir ${prefix}/Library/Frameworks +} + +set python.bin ${prefix}/bin/python2.6 +set python.lib ${frameworks_dir}/Python.framework/Versions/2.6/Python +set python.pkgd ${frameworks_dir}/Python.framework/Versions/2.6/lib/python2.6/site-packages +set python.bindir ${frameworks_dir}/Python.framework/Versions/2.6/bin +set python.include ${frameworks_dir}/Python.framework/Versions/2.6/include/python2.6 + +categories python + +dist_subdir python + +depends_lib port:python26 + +use_configure no + +build.cmd ${python.bin} setup.py --no-user-cfg +build.target build + +destroot.cmd ${python.bin} setup.py --no-user-cfg +destroot.destdir --prefix=${frameworks_dir}/Python.framework/Versions/2.6 --root=${destroot} +configure.pkg_config_path ${frameworks_dir}/Python.framework/Versions/2.6/lib/pkgconfig + +set env(PATH) "${python.bindir}:$env(PATH)" + +pre-destroot { + xinstall -d -m 755 ${destroot}${prefix}/share/doc/${name}/examples +} +####################################################################################################### + +name py26-numpy +version 1.2.1 +categories python +platforms darwin +maintainers mcalhoun openmaintainer +description The core utilities for the scientific library scipy for Python +long_description ${description} + +homepage http://numpy.scipy.org/ +master_sites sourceforge:numpy +distname numpy-${version} + +checksums md5 1bc6dbddaf4b48ded8a619c6438fff37 \ + sha1 1aa706e733aea18eaffa70d93c0105718acb66c5 \ + rmd160 7eb721d0d853f3b0b9b04a4f447353873d6c0997 + +patchfiles patch-g95_link.diff \ + patch-f2py_setup.py.diff + +depends_lib-append port:fftw-3 \ + port:py26-nose + +post-patch { + reinplace "s|@@MPORTS_PYTHON_LIBRARY@@|${python.lib}|" ${worksrcpath}/numpy/distutils/fcompiler/g95.py + reinplace "s|@@MPORTS_PYTHON@@|${python.bin}|" ${worksrcpath}/numpy/f2py/setup.py +} + +post-destroot { + set branch 2.6 + ln -s ${python.bindir}/f2py ${destroot}${prefix}/bin/f2py-${branch} +} + +livecheck.distname NumPy Added: trunk/dports/python/py26-numpy/files/patch-f2py_setup.py.diff =================================================================== --- trunk/dports/python/py26-numpy/files/patch-f2py_setup.py.diff (rev 0) +++ trunk/dports/python/py26-numpy/files/patch-f2py_setup.py.diff 2008-12-05 08:05:10 UTC (rev 43102) @@ -0,0 +1,20 @@ +--- numpy/f2py/setup.py 2008-07-27 20:43:18.000000000 -0500 ++++ numpy/f2py/setup.py 2008-07-27 20:44:46.000000000 -0500 +@@ -52,7 +52,7 @@ + log.info('Creating %s', target) + f = open(target,'w') + f.write('''\ +-#!/usr/bin/env %s ++#!@@MPORTS_PYTHON@@ + # See http://cens.ioc.ee/projects/f2py2e/ + import os, sys + for mode in ["g3-numpy", "2e-numeric", "2e-numarray", "2e-numpy"]: +@@ -78,7 +78,7 @@ + print >> sys.stderr, "Unknown mode:",`mode` + sys.exit(1) + main() +-'''%(os.path.basename(sys.executable))) ++''') + f.close() + return target + Added: trunk/dports/python/py26-numpy/files/patch-g95_link.diff =================================================================== --- trunk/dports/python/py26-numpy/files/patch-g95_link.diff (rev 0) +++ trunk/dports/python/py26-numpy/files/patch-g95_link.diff 2008-12-05 08:05:10 UTC (rev 43102) @@ -0,0 +1,11 @@ +--- numpy/distutils/fcompiler/g95.py 2007-11-07 17:05:14.000000000 -0500 ++++ numpy/distutils/fcompiler/g95.py 2008-01-30 21:26:47.000000000 -0500 +@@ -21,7 +21,7 @@ + 'compiler_f77' : ["g95", "-ffixed-form"], + 'compiler_fix' : ["g95", "-ffixed-form"], + 'compiler_f90' : ["g95"], +- 'linker_so' : ["","-shared"], ++ 'linker_so' : ["","-dynamiclib @@MPORTS_PYTHON_LIBRARY@@"], + 'archiver' : ["ar", "-cr"], + 'ranlib' : ["ranlib"] + } -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Dec 5 00:17:03 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 5 Dec 2008 00:17:03 -0800 (PST) Subject: [43103] trunk/dports/www Message-ID: <20081205081708.83E0285408F@beta.macosforge.org> Revision: 43103 http://trac.macports.org/changeset/43103 Author: ryandesign at macports.org Date: 2008-12-05 00:16:56 -0800 (Fri, 05 Dec 2008) Log Message: ----------- php5, php5-devel: remove --enable-memory-limit configure arg since it is always on since php 5.2.1; see #14859 Modified Paths: -------------- trunk/dports/www/php5/Portfile trunk/dports/www/php5-devel/Portfile Modified: trunk/dports/www/php5/Portfile =================================================================== --- trunk/dports/www/php5/Portfile 2008-12-05 08:05:10 UTC (rev 43102) +++ trunk/dports/www/php5/Portfile 2008-12-05 08:16:56 UTC (rev 43103) @@ -169,8 +169,7 @@ if { ![variant_isset apache] && ![variant_isset apache2] } { configure.args-append \ --enable-fastcgi \ - --enable-force-cgi-redirect \ - --enable-memory-limit + --enable-force-cgi-redirect } } @@ -423,8 +422,7 @@ if { [variant_isset apache] || [variant_isset apache2] } { configure.args-append \ --enable-fastcgi \ - --enable-force-cgi-redirect \ - --enable-memory-limit + --enable-force-cgi-redirect ui_msg "$UI_PREFIX Configuring ${name} again for fastcgi" command_exec configure ui_msg "$UI_PREFIX Building ${name} again for fastcgi" Modified: trunk/dports/www/php5-devel/Portfile =================================================================== --- trunk/dports/www/php5-devel/Portfile 2008-12-05 08:05:10 UTC (rev 43102) +++ trunk/dports/www/php5-devel/Portfile 2008-12-05 08:16:56 UTC (rev 43103) @@ -164,8 +164,7 @@ if { ![variant_isset apache] && ![variant_isset apache2] } { configure.args-append \ --enable-fastcgi \ - --enable-force-cgi-redirect \ - --enable-memory-limit + --enable-force-cgi-redirect } } @@ -429,8 +428,7 @@ if { [variant_isset apache] || [variant_isset apache2] } { configure.args-append \ --enable-fastcgi \ - --enable-force-cgi-redirect \ - --enable-memory-limit + --enable-force-cgi-redirect ui_msg "$UI_PREFIX Configuring ${name} again for fastcgi" command_exec configure ui_msg "$UI_PREFIX Building ${name} again for fastcgi" -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Fri Dec 5 00:20:24 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Fri, 5 Dec 2008 00:20:24 -0800 (PST) Subject: [43104] trunk/dports/python Message-ID: <20081205082024.8D6918541B7@beta.macosforge.org> Revision: 43104 http://trac.macports.org/changeset/43104 Author: mcalhoun at macports.org Date: 2008-12-05 00:20:24 -0800 (Fri, 05 Dec 2008) Log Message: ----------- py26-libxml2: New Port Added Paths: ----------- trunk/dports/python/py26-libxml2/ trunk/dports/python/py26-libxml2/Portfile trunk/dports/python/py26-libxml2/files/ trunk/dports/python/py26-libxml2/files/patch-setup.py.diff Added: trunk/dports/python/py26-libxml2/Portfile =================================================================== --- trunk/dports/python/py26-libxml2/Portfile (rev 0) +++ trunk/dports/python/py26-libxml2/Portfile 2008-12-05 08:20:24 UTC (rev 43104) @@ -0,0 +1,78 @@ +# -*- Mode: Tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 + +####################################################################################################### +# PortGroup python26 1.0 +####################################################################################################### +# Can be removed once MacPorts 1.7.0 is released +if {![info exists frameworks_dir]} { + set frameworks_dir ${prefix}/Library/Frameworks +} + +set python.bin ${prefix}/bin/python2.6 +set python.lib ${frameworks_dir}/Python.framework/Versions/2.6/Python +set python.pkgd ${frameworks_dir}/Python.framework/Versions/2.6/lib/python2.6/site-packages +set python.bindir ${frameworks_dir}/Python.framework/Versions/2.6/bin +set python.include ${frameworks_dir}/Python.framework/Versions/2.6/include/python2.6 + +categories python + +dist_subdir python + +depends_lib port:python26 + +use_configure no + +build.cmd ${python.bin} setup.py --no-user-cfg +build.target build + +destroot.cmd ${python.bin} setup.py --no-user-cfg +destroot.destdir --prefix=${frameworks_dir}/Python.framework/Versions/2.6 --root=${destroot} +configure.pkg_config_path ${frameworks_dir}/Python.framework/Versions/2.6/lib/pkgconfig + +set env(PATH) "${python.bindir}:$env(PATH)" + +pre-destroot { + xinstall -d -m 755 ${destroot}${prefix}/share/doc/${name}/examples +} +####################################################################################################### + +name py26-libxml2 +version 2.6.21 +categories python textproc +platforms darwin +maintainers mcalhoun openmaintainer +description Python bindings for libxml2 +long_description ${description} + +homepage http://xmlsoft.org/python.html +master_sites ftp://xmlsoft.org/libxml2/python/ +distname libxml2-python-${version} + +checksums md5 229dd2b3d110a77defeeaa73af83f7f3 \ + sha1 2d395e8a5e9accd68f4e78ac2391431ef884e9d5 \ + rmd160 d4973576c33e0e65c4fc41b31ee3df5f803abfad + +patchfiles patch-setup.py.diff + +depends_lib-append port:libxml2 \ + port:zlib + +build.env LDFLAGS=-L${prefix}/lib + +post-patch { + reinplace "s|@PREFIX@|$prefix|" ${worksrcpath}/setup.py +} + +post-destroot { + set docdir ${prefix}/share/doc/${name}-${version} + xinstall -d ${destroot}${docdir} + xinstall -m 0644 -W ${worksrcpath} README TODO \ + ${destroot}${docdir} +} + +livecheck.check md5 +livecheck.url ftp://xmlsoft.org/libxml2/python/ +livecheck.md5 a2cc31311f1b3fb52a08cf1056efda11 Added: trunk/dports/python/py26-libxml2/files/patch-setup.py.diff =================================================================== --- trunk/dports/python/py26-libxml2/files/patch-setup.py.diff (rev 0) +++ trunk/dports/python/py26-libxml2/files/patch-setup.py.diff 2008-12-05 08:20:24 UTC (rev 43104) @@ -0,0 +1,57 @@ +--- setup.py.orig 2007-10-11 15:24:20.000000000 +0200 ++++ setup.py 2007-10-11 15:24:54.000000000 +0200 +@@ -56,11 +56,7 @@ + # - iconv.h + # - libxslt/xsltconfig.h + includes_dir = [ +-"/usr/include", +-"/usr/local/include", +-"/opt/include", +-os.path.join(ROOT,'include'), +-HOME ++"@PREFIX@/include", + ]; + + xml_includes="" +@@ -85,7 +81,7 @@ + + # those are added in the linker search path for libraries + libdirs = [ +-os.path.join(ROOT,'lib'), ++"@PREFIX@/lib" + ] + + xml_files = ["libxml2-api.xml", "libxml2-python-api.xml", +@@ -122,32 +118,6 @@ + result.close() + + with_xslt=0 +-if missing("libxslt-py.c") or missing("libxslt.py"): +- if missing("xsltgenerator.py") or missing("libxslt-api.xml"): +- print "libxslt stub generator not found, libxslt not built" +- else: +- try: +- import xsltgenerator +- except: +- print "failed to generate stubs for libxslt, aborting ..." +- print sys.exc_type, sys.exc_value +- else: +- head = open("libxsl.py", "r") +- generated = open("libxsltclass.py", "r") +- result = open("libxslt.py", "w") +- for line in head.readlines(): +- if WITHDLLS: +- result.write(altImport(line)) +- else: +- result.write(line) +- for line in generated.readlines(): +- result.write(line) +- head.close() +- generated.close() +- result.close() +- with_xslt=1 +-else: +- with_xslt=1 + + if with_xslt == 1: + xslt_includes="" -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Dec 5 00:22:07 2008 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 5 Dec 2008 00:22:07 -0800 (PST) Subject: [43105] trunk/dports/www/php5/Portfile Message-ID: <20081205082208.1C8D085426F@beta.macosforge.org> Revision: 43105 http://trac.macports.org/changeset/43105 Author: ryandesign at macports.org Date: 2008-12-05 00:22:07 -0800 (Fri, 05 Dec 2008) Log Message: ----------- php5: update to 5.2.7 Modified Paths: -------------- trunk/dports/www/php5/Portfile Modified: trunk/dports/www/php5/Portfile =================================================================== --- trunk/dports/www/php5/Portfile 2008-12-05 08:20:24 UTC (rev 43104) +++ trunk/dports/www/php5/Portfile 2008-12-05 08:22:07 UTC (rev 43105) @@ -3,8 +3,7 @@ PortSystem 1.0 name php5 -version 5.2.6 -revision 2 +version 5.2.7 categories www lang php maintainers ryandesign jwa homepage http://www.php.net/ @@ -32,9 +31,9 @@ http://se.php.net/distributions/ checksums \ - md5 7380ffecebd95c6edb317ef861229ebd \ - sha1 2a2b1afa657a7739a23784c869d57c3e0a7ad6b4 \ - rmd160 27f730d4b1ceb1c42ff03618dbfa0dc87a00990b + md5 9ffc42edbb7faad965699666ddd559bc \ + sha1 ffd64523c140594da7aa45d017c459b59c55d161 \ + rmd160 f5f34065436bb91277edde1e2a7d99f4b35ae477 depends_build \ port:pkgconfig \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Fri Dec 5 00:27:51 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Fri, 5 Dec 2008 00:27:51 -0800 (PST) Subject: [43106] trunk/dports/python Message-ID: <20081205082752.15B7D85438F@beta.macosforge.org> Revision: 43106 http://trac.macports.org/changeset/43106 Author: mcalhoun at macports.org Date: 2008-12-05 00:27:51 -0800 (Fri, 05 Dec 2008) Log Message: ----------- py26-cairo: New Port Added Paths: ----------- trunk/dports/python/py26-cairo/ trunk/dports/python/py26-cairo/Portfile Added: trunk/dports/python/py26-cairo/Portfile =================================================================== --- trunk/dports/python/py26-cairo/Portfile (rev 0) +++ trunk/dports/python/py26-cairo/Portfile 2008-12-05 08:27:51 UTC (rev 43106) @@ -0,0 +1,58 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 + +name py26-cairo +set my_name pycairo +version 1.6.4 +categories python x11 +platforms darwin +maintainers mcalhoun +description Pycairo is set of Python bindings for the cairo graphics library + +long_description \ + ${description} + +homepage http://cairographics.org/pycairo +master_sites http://cairographics.org/releases +distname ${my_name}-${version} + +checksums \ + md5 2c3aa21e6e610321498f9f81f7b625df \ + sha1 d3b3ecb6e999cc7b4a6ebcad00ae8d82c253c21c \ + rmd160 6197427df3d10b708847503f975670e3d02d57e5 + +depends_build port:pkgconfig +depends_lib port:python26 \ + port:cairo \ + port:py26-numpy + +configure.python ${prefix}/bin/python2.6 + +# Can be removed once MacPorts 1.7.0 is released +if {![info exists frameworks_dir]} { + set frameworks_dir ${prefix}/Library/Frameworks +} + +configure.pre_args-delete --prefix=${prefix} +set python_prefix ${frameworks_dir}/Python.framework/Versions/2.6 +configure.pre_args-append --prefix=${python_prefix} +configure.args-append --includedir=${python_prefix}/include/python2.6 + +platform darwin 9 { + post-patch { + reinplace "s| -export-symbols-regex.*||g" ${worksrcpath}/cairo/Makefile.in + } +} + +post-destroot { + set docdir ${prefix}/share/doc/${name} + xinstall -d ${destroot}${docdir} + xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING NEWS doc/NOTES doc/FAQ README \ + ${destroot}${docdir} +} + +livecheck.check regex +livecheck.url http://cairographics.org/releases/ +livecheck.regex LATEST-pycairo-(\\d+(?:\\.\\d+)*) -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Fri Dec 5 00:43:15 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Fri, 5 Dec 2008 00:43:15 -0800 (PST) Subject: [43107] trunk/dports/python Message-ID: <20081205084315.584DB85475D@beta.macosforge.org> Revision: 43107 http://trac.macports.org/changeset/43107 Author: mcalhoun at macports.org Date: 2008-12-05 00:43:14 -0800 (Fri, 05 Dec 2008) Log Message: ----------- py26-gobject: New Port Added Paths: ----------- trunk/dports/python/py26-gobject/ trunk/dports/python/py26-gobject/Portfile Added: trunk/dports/python/py26-gobject/Portfile =================================================================== --- trunk/dports/python/py26-gobject/Portfile (rev 0) +++ trunk/dports/python/py26-gobject/Portfile 2008-12-05 08:43:14 UTC (rev 43107) @@ -0,0 +1,64 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 + +name py26-gobject +platforms darwin +set my_name pygobject +version 2.14.2 +set branch [join [lrange [split ${version} .] 0 1] .] +categories python gnome +maintainers mcalhoun openmaintainer +description Python bindings for GObject. + +long_description \ + PyGObject provides a convenient wrapper for the GObject+ library \ + for use in Python programs, and takes care of many of the boring details \ + such as managing memory and type casting. \ + When combined with PyGTK, PyORBit and gnome-python, \ + it can be used to write full featured Gnome applications. + +homepage http://www.pygtk.org/ +master_sites gnome:sources/${my_name}/${branch}/ +distname ${my_name}-${version} +use_bzip2 yes + +checksums md5 0e9e9300e81847f4f7266f49d3bebbaf \ + sha1 e891c3f1ad0d6f737d6c51b9be3eb363f7d11cbc \ + rmd160 c9894695d745a9d859f3edfb9e2946ad8b4fec3d + +depends_build port:pkgconfig +depends_lib path:${prefix}/lib/pkgconfig/glib-2.0.pc:glib2 \ + port:libxslt \ + port:gettext \ + port:libiconv \ + port:libffi \ + port:python26 + +# Can be removed once MacPorts 1.7.0 is released +if {![info exists frameworks_dir]} { + set frameworks_dir ${prefix}/Library/Frameworks +} +set python_prefix ${frameworks_dir}/Python.framework/Versions/2.6 + +configure.pre_args-delete --prefix=${prefix} +configure.pre_args-append --prefix=${python_prefix} +configure.args-append \ + --includedir=${python_prefix}/include/python2.6 + +configure.python ${prefix}/bin/python2.6 + +post-destroot { + set docdir ${prefix}/share/doc/${name} + xinstall -d ${destroot}${docdir} + xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS README \ + ${destroot}${docdir} + xinstall -d ${destroot}${prefix}/share/gtk-doc/html + system "ln -s ${python_prefix}/share/${my_name} ${destroot}${prefix}/share/${my_name}26" + system "ln -s ${python_prefix}/share/gtk-doc/html/${my_name} ${destroot}${prefix}/share/gtk-doc/html/${my_name}26" +} + +livecheck.check regex +livecheck.url http://ftp.gnome.org/pub/gnome/sources/${my_name}/${branch}/ +livecheck.regex {LATEST-IS-(\d+(?:\.\d+)*)} -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Fri Dec 5 00:44:12 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Fri, 5 Dec 2008 00:44:12 -0800 (PST) Subject: [43108] trunk/dports/python/py26-libxml2/Portfile Message-ID: <20081205084412.4D9978547F6@beta.macosforge.org> Revision: 43108 http://trac.macports.org/changeset/43108 Author: mcalhoun at macports.org Date: 2008-12-05 00:44:11 -0800 (Fri, 05 Dec 2008) Log Message: ----------- py26-libxml2: Change format line. Modified Paths: -------------- trunk/dports/python/py26-libxml2/Portfile Modified: trunk/dports/python/py26-libxml2/Portfile =================================================================== --- trunk/dports/python/py26-libxml2/Portfile 2008-12-05 08:43:14 UTC (rev 43107) +++ trunk/dports/python/py26-libxml2/Portfile 2008-12-05 08:44:11 UTC (rev 43108) @@ -1,4 +1,4 @@ -# -*- Mode: Tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:et:sw=4:ts=4:sts=4 +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 # $Id$ PortSystem 1.0 -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Dec 5 00:52:17 2008 From: portindex at macports.org (portindex at macports.org) Date: Fri, 5 Dec 2008 00:52:17 -0800 (PST) Subject: [43109] trunk/dports/PortIndex Message-ID: <20081205085219.7FDC18548EE@beta.macosforge.org> Revision: 43109 http://trac.macports.org/changeset/43109 Author: portindex at macports.org Date: 2008-12-05 00:52:17 -0800 (Fri, 05 Dec 2008) Log Message: ----------- Total number of ports parsed: 5190 Ports successfully parsed: 5190 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-05 08:44:11 UTC (rev 43108) +++ trunk/dports/PortIndex 2008-12-05 08:52:17 UTC (rev 43109) @@ -7830,8 +7830,16 @@ variants universal portdir python/py25-zopeinterface description {Python interfaces for Zope} homepage http://www.zope.org/Products/ZopeInterface epoch 0 platforms darwin depends_lib port:python25 name py25-zopeinterface maintainers mww long_description {{Python interfaces for Zope}} categories {python zope} version 3.3.0 revision 0 py25-zsi 634 variants universal portdir python/py25-zsi description {Zolera SOAP Infrastructure is a Python implementation of SOAP} homepage http://pywebsvcs.sourceforge.net/ epoch 0 platforms darwin depends_lib port:python25 name py25-zsi maintainers stechert at macports.org long_description {ZSI, the Zolera SOAP Infrastructure, is a pure-Python module that provides an implementation of SOAP messaging, as described in The SOAP 1.1 Specification. It can also be used to build applications using SOAP Messages with Attachments. ZSI is intended to make it easier to write web services in Python.} categories {python net} version 2.0-rc3 revision 0 +py26-cairo 458 +variants {universal darwin_9} depends_build port:pkgconfig portdir python/py26-cairo description {Pycairo is set of Python bindings for the cairo graphics library} homepage http://cairographics.org/pycairo epoch 0 platforms darwin depends_lib {port:python26 port:cairo port:py26-numpy} name py26-cairo maintainers mcalhoun long_description {{Pycairo is set of Python bindings for the cairo graphics library}} version 1.6.4 categories {python x11} revision 0 +py26-gobject 722 +variants universal depends_build port:pkgconfig portdir python/py26-gobject description {Python bindings for GObject.} homepage http://www.pygtk.org/ epoch 0 platforms darwin depends_lib {{path:\${prefix}/lib/pkgconfig/glib-2.0.pc:glib2} port:libxslt port:gettext port:libiconv port:libffi port:python26} name py26-gobject maintainers {mcalhoun openmaintainer} long_description {PyGObject provides a convenient wrapper for the GObject+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyGTK, PyORBit and gnome-python, it can be used to write full featured Gnome applications.} version 2.14.2 categories {python gnome} revision 0 +py26-libxml2 365 +variants universal portdir python/py26-libxml2 description {Python bindings for libxml2} homepage http://xmlsoft.org/python.html epoch 0 platforms darwin depends_lib {port:python26 port:libxml2 port:zlib} name py26-libxml2 maintainers {mcalhoun openmaintainer} long_description {{Python bindings for libxml2}} categories {python textproc} version 2.6.21 revision 0 py26-nose 628 variants universal portdir python/py26-nose description {A Python unittest extension.} homepage http://somethingaboutorange.com/mrl/projects/nose/ epoch 0 platforms darwin depends_lib port:py26-setuptools name py26-nose maintainers {mcalhoun openmaintainer} long_description {A unittest extension offering automatic test suite discovery, simplified test authoring, and output capture. Nose provides an alternate test discovery and running process for unittest, one that is intended to mimic the behavior of py.test as much as is reasonably possible without resorting to magic.} categories {python www} version 0.10.4 revision 0 +py26-numpy 416 +variants universal portdir python/py26-numpy description {The core utilities for the scientific library scipy for Python} homepage http://numpy.scipy.org/ epoch 0 platforms darwin depends_lib {port:python26 port:fftw-3 port:py26-nose} name py26-numpy maintainers {mcalhoun openmaintainer} long_description {{The core utilities for the scientific library scipy for Python}} categories python version 1.2.1 revision 0 py26-openssl 617 variants {universal doc} variant_desc {doc {build html documentation}} portdir python/py26-openssl description {python wrapper around the OpenSSL library} homepage http://pyopenssl.sourceforge.net/ epoch 0 platforms {darwin freebsd} depends_lib {port:python26 port:openssl} name py26-openssl maintainers {mcalhoun openmaintainer} long_description {This python module is a rather thin wrapper around (a subset of) the OpenSSL library. With thin wrapper a lot of the object methods do nothing more than calling a corresponding function in the OpenSSL library.} categories {python devel security} version 0.8 revision 0 py26-pygments 549 @@ -9685,7 +9693,7 @@ php4 1416 variants {universal darwin_6 darwin_7 macosx no_web apache apache2 apache20 mysql3 mysql4 mysql5 postgresql8 ldap gmp dbase imap pspell xslt readline t1lib} depends_build port:pkgconfig variant_desc {no_web {Don't include any web server support} apache {Add Apache 1 web server module} apache2 {Add Apache 2.2 web server module (default)} apache20 {Add Apache 2.0 web server module} mysql3 {MySQL 3 functions} mysql4 {MySQL 4 functions} mysql5 {MySQL 5 functions} postgresql8 {add support for PostgreSQL databases} ldap {enable LDAP support} gmp {Add GNU MP functions} dbase {Add dBase file format support} imap {enable operatin with IMAP protocol} pspell {Add pspell spell-checking functions} xslt {a processor independent API to XSLT transformations} readline {Add GNU readline functions} t1lib {Add PostScript Type 1 font support with t1lib}} portdir www/php4 description {PHP: Hypertext Preprocessor} homepage http://www.php.net/ epoch 0 platforms {darwin freebsd} depends_lib {port:li biconv port:expat port:gettext port:zlib port:openssl port:tiff port:libxml2 port:libtool port:mhash port:libmcrypt port:curl port:gd2 port:jpeg port:libpng port:freetype port:apache2} name php4 maintainers {jwa ryandesign} long_description {PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.} categories {www php lang} version 4.4.9 revision 3 php5 1886 -variants {universal darwin_6 darwin_7 macosx no_web apache apache2 fastcgi gmp dbase imap pspell tidy mssql snmp macports_snmp mysql3 mysql4 mysql5 oracle postgresql82 postgresql83 sqlite ipc pcntl pear readline sockets t1lib} depends_build {port:pkgconfig port:autoconf213} variant_desc {no_web {Don't include any web server support} apache {Add Apache 1 web server module} apache2 {Add Apache 2.2 web server module (default)} fastcgi {Add FastCGI web server binary} gmp {Add GNU MP functions} dbase {Add dBase file format support} imap {enable operation with IMAP protocol} pspell {Add pspell spell-checking functions} tidy {add Tidy support} mssql {add support for MS-SQL server} snmp {use Apple snmp} macports_snmp {use MacPorts snmp} mysql3 {build MySQL 3 support} mysql4 {build MySQL 4 support} mysql5 {build MySQL 5 support} oracle {Add Oracle oci8 database functions with the Oracle Instant Client} postgresql82 {provide postgresql82 support} postgresql83 {provide postgresql83 sup port} sqlite {build sqlite support} ipc {build IPC support} pcntl {provide process control} pear {add pear stuff} readline {Add GNU readline functions} sockets {Add socket communication functions} t1lib {Add PostScript Type 1 font support with t1lib}} portdir www/php5 description {PHP: Hypertext Preprocessor} homepage http://www.php.net/ epoch 0 platforms {darwin freebsd} depends_lib {port:libtool port:libxml2 port:libxslt port:openssl port:zlib port:bzip2 port:libiconv port:expat port:gettext port:tiff port:mhash port:libmcrypt port:curl port:pcre port:gd2 port:jpeg port:libpng port:freetype path:apache2/bin/apxs:apache2} name php5 maintainers {ryandesign jwa} long_description {PHP is a widely-used general-purpose scripting language that is especially suited for developing web sites, but can also be used for command-line scripting.} categories {www lang php} version 5.2.6 revision 2 +variants {universal darwin_6 darwin_7 macosx no_web apache apache2 fastcgi gmp dbase imap pspell tidy mssql snmp macports_snmp mysql3 mysql4 mysql5 oracle postgresql82 postgresql83 sqlite ipc pcntl pear readline sockets t1lib} depends_build {port:pkgconfig port:autoconf213} variant_desc {no_web {Don't include any web server support} apache {Add Apache 1 web server module} apache2 {Add Apache 2.2 web server module (default)} fastcgi {Add FastCGI web server binary} gmp {Add GNU MP functions} dbase {Add dBase file format support} imap {enable operation with IMAP protocol} pspell {Add pspell spell-checking functions} tidy {add Tidy support} mssql {add support for MS-SQL server} snmp {use Apple snmp} macports_snmp {use MacPorts snmp} mysql3 {build MySQL 3 support} mysql4 {build MySQL 4 support} mysql5 {build MySQL 5 support} oracle {Add Oracle oci8 database functions with the Oracle Instant Client} postgresql82 {provide postgresql82 support} postgresql83 {provide postgresql83 sup port} sqlite {build sqlite support} ipc {build IPC support} pcntl {provide process control} pear {add pear stuff} readline {Add GNU readline functions} sockets {Add socket communication functions} t1lib {Add PostScript Type 1 font support with t1lib}} portdir www/php5 description {PHP: Hypertext Preprocessor} homepage http://www.php.net/ epoch 0 platforms {darwin freebsd} depends_lib {port:libtool port:libxml2 port:libxslt port:openssl port:zlib port:bzip2 port:libiconv port:expat port:gettext port:tiff port:mhash port:libmcrypt port:curl port:pcre port:gd2 port:jpeg port:libpng port:freetype path:apache2/bin/apxs:apache2} name php5 maintainers {ryandesign jwa} long_description {PHP is a widely-used general-purpose scripting language that is especially suited for developing web sites, but can also be used for command-line scripting.} categories {www lang php} version 5.2.7 revision 0 php5-devel 1959 variants {universal darwin_6 darwin_7 macosx no_web apache apache2 fastcgi gmp dbase imap pspell tidy mssql snmp macports_snmp mysql3 mysql4 mysql5 mysqlnd oracle postgresql82 postgresql83 sqlite ipc pcntl pear readline sockets t1lib} depends_build {port:pkgconfig port:autoconf213} variant_desc {no_web {Don't include any web server support} apache {Add Apache 1 web server module} apache2 {Add Apache 2.2 web server module (default)} fastcgi {Add FastCGI web server binary} gmp {Add GNU MP functions} dbase {Add dBase file format support} imap {enable operation with IMAP protocol} pspell {Add pspell spell-checking functions} tidy {add Tidy support} mssql {add support for MS-SQL server} snmp {use Apple snmp} macports_snmp {use MacPorts snmp} mysql3 {build MySQL 3 support} mysql4 {build MySQL 4 support} mysql5 {build MySQL 5 support} mysqlnd {build MySQL Native Driver support for MySQL 4.1 and up} oracle {Add Oracle oci8 database functions with the Oracle Instant Client} postgresq l82 {provide postgresql82 support} postgresql83 {provide postgresql83 support} sqlite {build sqlite support} ipc {build IPC support} pcntl {provide process control} pear {add pear stuff} readline {Add GNU readline functions} sockets {Add socket communication functions} t1lib {Add PostScript Type 1 font support with t1lib}} portdir www/php5-devel description {PHP: Hypertext Preprocessor} homepage http://qa.php.net/ epoch 0 platforms {darwin freebsd} depends_lib {port:libtool port:libxml2 port:libxslt port:openssl port:zlib port:bzip2 port:libiconv port:expat port:gettext port:tiff port:mhash port:libmcrypt port:curl port:pcre port:gd2 port:jpeg port:libpng port:freetype port:apache2} name php5-devel maintainers {ryandesign jwa} long_description {PHP is a widely-used general-purpose scripting language that is especially suited for developing web sites, but can also be used for command-line scripting.} categories {www lang php} version 5.3.0alpha1 revision 1 php5-eaccelerator 1139 -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcalhoun at macports.org Fri Dec 5 01:14:17 2008 From: mcalhoun at macports.org (mcalhoun at macports.org) Date: Fri, 5 Dec 2008 01:14:17 -0800 (PST) Subject: [43110] trunk/dports/x11/xorg-cf-files/Portfile Message-ID: <20081205091418.DC044854BCB@beta.macosforge.org> Revision: 43110 http://trac.macports.org/changeset/43110 Author: mcalhoun at macports.org Date: 2008-12-05 01:14:13 -0800 (Fri, 05 Dec 2008) Log Message: ----------- xorg-cf-files: Fix Typo. Modified Paths: -------------- trunk/dports/x11/xorg-cf-files/Portfile Modified: trunk/dports/x11/xorg-cf-files/Portfile =================================================================== --- trunk/dports/x11/xorg-cf-files/Portfile 2008-12-05 08:52:17 UTC (rev 43109) +++ trunk/dports/x11/xorg-cf-files/Portfile 2008-12-05 09:14:13 UTC (rev 43110) @@ -25,7 +25,7 @@ rmd160 dc42aa06d7fb5bc073d51958763bf1bfcfd22926 post-configure { - #ensure that X11 libraries and inludes are found + #ensure that X11 libraries and includes are found reinplace s|${prefix}|${x11prefix}|g ${worksrcpath}/site.def reinplace s|${prefix}|${x11prefix}|g ${worksrcpath}/site.def -------------- next part -------------- An HTML attachment was scrubbed... URL: From blb at macports.org Fri Dec 5 02:07:11 2008 From: blb at macports.org (blb at macports.org) Date: Fri, 5 Dec 2008 02:07:11 -0800 (PST) Subject: [43111] trunk/dports/math/gunits/Portfile Message-ID: <20081205100711.A8F088550CA@beta.macosforge.org> Revision: 43111 http://trac.macports.org/changeset/43111 Author: blb at macports.org Date: 2008-12-05 02:07:10 -0800 (Fri, 05 Dec 2008) Log Message: ----------- math/gunits - version bump to 1.87 Modified Paths: -------------- trunk/dports/math/gunits/Portfile Modified: trunk/dports/math/gunits/Portfile =================================================================== --- trunk/dports/math/gunits/Portfile 2008-12-05 09:14:13 UTC (rev 43110) +++ trunk/dports/math/gunits/Portfile 2008-12-05 10:07:10 UTC (rev 43111) @@ -3,8 +3,7 @@ PortSystem 1.0 name gunits -version 1.86 -revision 1 +version 1.87 categories math maintainers nomaintainer description Unit conversion and calculation @@ -18,9 +17,9 @@ platforms darwin master_sites gnu:units distname units-${version} -checksums md5 e27f580474702e9138b332acbafafe5b \ - sha1 f6386d7fb476ffc808c6658af53a66f8f1027b1f \ - rmd160 d54d8074445bbe60832301174544c40192a50dd7 +checksums md5 8cf47adf29e38a9aa744e8d5246d1bec \ + sha1 106f9751fab6de4fc1fe27e735a1080262ba372a \ + rmd160 5d68a98e6bb773cc5d9f12b7d46d7d49e8fe0c8c configure.cflags -I${prefix}/include configure.ldflags -L${prefix}/lib @@ -35,3 +34,4 @@ livecheck.check regex livecheck.url http://ftp.gnu.org/gnu/units/?C=M&O=D livecheck.regex units-(\\d+\\.\\d+) + -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Dec 5 02:51:54 2008 From: portindex at macports.org (portindex at macports.org) Date: Fri, 5 Dec 2008 02:51:54 -0800 (PST) Subject: [43112] trunk/dports/PortIndex Message-ID: <20081205105156.B3D4285558A@beta.macosforge.org> Revision: 43112 http://trac.macports.org/changeset/43112 Author: portindex at macports.org Date: 2008-12-05 02:51:52 -0800 (Fri, 05 Dec 2008) Log Message: ----------- Total number of ports parsed: 5190 Ports successfully parsed: 5190 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-05 10:07:10 UTC (rev 43111) +++ trunk/dports/PortIndex 2008-12-05 10:51:52 UTC (rev 43112) @@ -4307,7 +4307,7 @@ gts 448 variants universal description {The GNU Triangulated Surface library} portdir math/gts homepage http://gts.sourceforge.net/ epoch 0 platforms darwin name gts long_description {GTS stands for the GNU Triangulated Surface Library. It is an Open Source Free Software Library intended to provide a set of useful functions to deal with 3D surfaces meshed with interconnected triangles.} maintainers nomaintainer categories math version 0.7.6 revision 0 gunits 569 -variants universal portdir math/gunits description {Unit conversion and calculation} homepage http://www.gnu.org/software/units/ epoch 0 platforms darwin name gunits depends_lib {port:ncurses port:readline} maintainers nomaintainer long_description {GNU units converts quantities expressed in various scales to their equivalents in other scales. Units can only handle multiplicative scale changes. For example, it cannot convert Celsius to Fahrenheit but it can convert temperature differences between those temperature scales.} version 1.86 categories math revision 1 +variants universal portdir math/gunits description {Unit conversion and calculation} homepage http://www.gnu.org/software/units/ epoch 0 platforms darwin name gunits depends_lib {port:ncurses port:readline} maintainers nomaintainer long_description {GNU units converts quantities expressed in various scales to their equivalents in other scales. Units can only handle multiplicative scale changes. For example, it cannot convert Celsius to Fahrenheit but it can convert temperature differences between those temperature scales.} version 1.87 categories math revision 0 isabelle 731 variants universal portdir math/isabelle description {Isabelle is a popular generic theorem proving environment.} homepage http://www.cl.cam.ac.uk/Research/HVG/Isabelle/ epoch 0 platforms darwin name isabelle depends_lib port:polyml maintainers mww long_description {Isabelle is a generic proof assistant. It allows mathematical formulas to be expressed in a formal language and provides tools for proving those formulas in a logical calculus. The main application is the formalization of mathematical proofs and in particular formal verification, which includes proving the correctness of computer hardware or software and proving properties of computer languages and protocols.} version 2008 categories {math lang ml} revision 0 isabelle-devel 797 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Dec 5 06:37:48 2008 From: jmr at macports.org (jmr at macports.org) Date: Fri, 5 Dec 2008 06:37:48 -0800 (PST) Subject: [43113] trunk/dports/_resources/port1.0/group/python26-1.0.tcl Message-ID: <20081205143749.0F63A857233@beta.macosforge.org> Revision: 43113 http://trac.macports.org/changeset/43113 Author: jmr at macports.org Date: 2008-12-05 06:37:45 -0800 (Fri, 05 Dec 2008) Log Message: ----------- Add python26 portgroup. Added Paths: ----------- trunk/dports/_resources/port1.0/group/python26-1.0.tcl Added: trunk/dports/_resources/port1.0/group/python26-1.0.tcl =================================================================== --- trunk/dports/_resources/port1.0/group/python26-1.0.tcl (rev 0) +++ trunk/dports/_resources/port1.0/group/python26-1.0.tcl 2008-12-05 14:37:45 UTC (rev 43113) @@ -0,0 +1,59 @@ +# et:ts=4 +# python26-1.0.tcl +# +# $Id$ +# +# Copyright (c) 2008 The MacPorts Project, +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of Apple Computer, Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# + +set prefix ${frameworks_dir}/Python.framework/Versions/2.6 + +set python.bin ${prefix}/bin/python2.6 +set python.lib ${prefix}/lib/libpython2.6.dylib +set python.libdir ${prefix}/Python +set python.pkgd ${prefix}/lib/python2.6/site-packages +set python.include ${prefix}/include/python2.6 + +categories python + +dist_subdir python + +depends_lib port:python26 + +use_configure no + +build.cmd ${python.bin} setup.py +build.target build + +destroot.cmd ${python.bin} setup.py +destroot.destdir --prefix=${prefix} --root=${destroot} + +pre-destroot { + xinstall -d -m 755 ${destroot}${prefix}/share/doc/${name}/examples +} -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Dec 5 06:46:07 2008 From: jmr at macports.org (jmr at macports.org) Date: Fri, 5 Dec 2008 06:46:07 -0800 (PST) Subject: [43114] trunk/dports/_resources/port1.0/group/python26-1.0.tcl Message-ID: <20081205144608.0372F8573B6@beta.macosforge.org> Revision: 43114 http://trac.macports.org/changeset/43114 Author: jmr at macports.org Date: 2008-12-05 06:46:07 -0800 (Fri, 05 Dec 2008) Log Message: ----------- pythin26 portgroup: use --no-user-cfg, set frameworks_dir if necessary Modified Paths: -------------- trunk/dports/_resources/port1.0/group/python26-1.0.tcl Modified: trunk/dports/_resources/port1.0/group/python26-1.0.tcl =================================================================== --- trunk/dports/_resources/port1.0/group/python26-1.0.tcl 2008-12-05 14:37:45 UTC (rev 43113) +++ trunk/dports/_resources/port1.0/group/python26-1.0.tcl 2008-12-05 14:46:07 UTC (rev 43114) @@ -32,6 +32,10 @@ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # +# Can be removed once MacPorts 1.7.0 is released +if {![info exists frameworks_dir]} { + set frameworks_dir ${prefix}/Library/Frameworks +} set prefix ${frameworks_dir}/Python.framework/Versions/2.6 set python.bin ${prefix}/bin/python2.6 @@ -48,10 +52,10 @@ use_configure no -build.cmd ${python.bin} setup.py +build.cmd ${python.bin} setup.py --no-user-cfg build.target build -destroot.cmd ${python.bin} setup.py +destroot.cmd ${python.bin} setup.py --no-user-cfg destroot.destdir --prefix=${prefix} --root=${destroot} pre-destroot { -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Dec 5 06:55:03 2008 From: jmr at macports.org (jmr at macports.org) Date: Fri, 5 Dec 2008 06:55:03 -0800 (PST) Subject: [43115] trunk/dports/python Message-ID: <20081205145503.B61388575EB@beta.macosforge.org> Revision: 43115 http://trac.macports.org/changeset/43115 Author: jmr at macports.org Date: 2008-12-05 06:55:01 -0800 (Fri, 05 Dec 2008) Log Message: ----------- New port: py26-pil Modified Paths: -------------- trunk/dports/python/py26-pil/Portfile Added Paths: ----------- trunk/dports/python/py26-pil/ Property changes on: trunk/dports/python/py26-pil ___________________________________________________________________ Added: svn:mergeinfo + Modified: trunk/dports/python/py26-pil/Portfile =================================================================== --- trunk/dports/python/py25-pil/Portfile 2008-12-05 10:51:52 UTC (rev 43112) +++ trunk/dports/python/py26-pil/Portfile 2008-12-05 14:55:01 UTC (rev 43115) @@ -1,35 +1,37 @@ # $Id$ -PortSystem 1.0 -PortGroup python25 1.0 +PortSystem 1.0 +# HACK: change to 'PortGroup python26 1.0' when MP 1.7 is released +source ${portpath}/../../_resources/port1.0/group/python26-1.0.tcl -name py25-pil -version 1.1.6 -maintainers stechert at macports.org -description Python Imaging Library -long_description The Python Imaging Library (PIL) adds image \ - processing capabilities to your Python interpreter. \ - This library supports many file formats, and \ - provides powerful image processing and graphics \ - capabilities. -categories-append graphics -platforms darwin freebsd -homepage http://www.pythonware.com/ -master_sites http://effbot.org/downloads/ -distname Imaging-${version} -checksums md5 3a9b5c20ca52f0a9900512d2c7347622 -patchfiles patch-setup.py +name py26-pil +version 1.1.6 +maintainers jmr openmaintainer +description Python Imaging Library +long_description The Python Imaging Library (PIL) adds image \ + processing capabilities to your Python interpreter. \ + This library supports many file formats, and \ + provides powerful image processing and graphics \ + capabilities. +categories-append graphics +platforms darwin freebsd +homepage http://www.pythonware.com/products/pil/ +master_sites http://effbot.org/downloads/ +distname Imaging-${version} +checksums md5 3a9b5c20ca52f0a9900512d2c7347622 \ + sha1 952d241e4af8ba09f74e6926108b7c0c748d0f89 +patchfiles patch-setup.py -depends_lib-append port:jpeg \ - port:freetype \ - port:zlib +depends_lib-append port:jpeg \ + port:freetype \ + port:zlib post-patch { - reinplace s,__PREFIX__,${prefix},g ${worksrcpath}/setup.py + reinplace s,__PREFIX__,${prefix},g ${worksrcpath}/setup.py } post-destroot { - xinstall -d -m 0755 ${destroot}${prefix}/share/doc/${name} - xinstall -m 0644 -W ${worksrcpath} BUILDME CHANGES CONTENTS README \ - ${destroot}${prefix}/share/doc/${name} + xinstall -d -m 0755 ${destroot}${prefix}/share/doc/${name} + xinstall -m 0644 -W ${worksrcpath} BUILDME CHANGES CONTENTS README \ + ${destroot}${prefix}/share/doc/${name} } -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Dec 5 07:52:02 2008 From: portindex at macports.org (portindex at macports.org) Date: Fri, 5 Dec 2008 07:52:02 -0800 (PST) Subject: [43116] trunk/dports/PortIndex Message-ID: <20081205155203.C8994858053@beta.macosforge.org> Revision: 43116 http://trac.macports.org/changeset/43116 Author: portindex at macports.org Date: 2008-12-05 07:52:02 -0800 (Fri, 05 Dec 2008) Log Message: ----------- Total number of ports parsed: 5191 Ports successfully parsed: 5191 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2008-12-05 14:55:01 UTC (rev 43115) +++ trunk/dports/PortIndex 2008-12-05 15:52:02 UTC (rev 43116) @@ -7842,6 +7842,8 @@ variants universal portdir python/py26-numpy description {The core utilities for the scientific library scipy for Python} homepage http://numpy.scipy.org/ epoch 0 platforms darwin depends_lib {port:python26 port:fftw-3 port:py26-nose} name py26-numpy maintainers {mcalhoun openmaintainer} long_description {{The core utilities for the scientific library scipy for Python