Commit Graph

66998 Commits

Author SHA1 Message Date
ajacoutot
36da24ee45 Minor update to gstreamer-plugins-good-0.10.30. 2011-06-16 09:10:10 +00:00
ajacoutot
79f28364c7 Minor update to gstreamer-plugins-base-0.10.35. 2011-06-16 09:09:15 +00:00
ajacoutot
74088076cd Minor update to gstreamer-0.10.35. 2011-06-16 09:08:47 +00:00
sthen
0c0f030952 Remove patch which was removing various -W flags. The updated timestamp on
the file triggers an attempt to rebuild autoconf files, which breaks the build
if automake-1.11 is installed.  Worked out by Nigel Taylor.

Fix typo in DESCR while there.  The patch was there because these flags
broke the build in an earlier version of libnice, but are no longer needed
(checked gcc 3 and 4; port didn't build on gcc 2 arch anyway).  ok jasper@
2011-06-16 08:58:32 +00:00
jasper
230e15d043 - update to naken430asm 2011-05-30 2011-06-16 08:53:36 +00:00
jasper
cdf8b4208a - update mspdebug to 0.16 2011-06-16 08:51:07 +00:00
ajacoutot
e453bd7077 Maintenance update to gtk+2-2.24.5. 2011-06-16 08:38:41 +00:00
dcoppa
89820803c0 Unbreak the "no_smb" flavor.
OK ajacoutot@
2011-06-16 08:38:20 +00:00
rpointel
a6b1e21ba3 Added a patch from eric4 (IDE) which fixes a problem with foreign characters.
Added MODPY_WANTLIB and bump revision for -python.
ok jasper@.
2011-06-16 08:11:12 +00:00
sthen
3b3edd9bee Handle the dlopen()'d libavcodec the same way as transcode does with xvidcore;
move it from a BUILD+RUN_DEPENDS to WANTLIB+LIB_DEPENDS so that the dependency
is tracked and opal gets updated if the FFmpeg API changes. Comment to explain
why check-lib-depends says it's extra. Pointed out by Brad, ajacoutot@ hates
it but is ok with it.
2011-06-16 08:07:20 +00:00
ajacoutot
fea2b2d5ba Fix icon display in menu. 2011-06-16 06:59:13 +00:00
rpointel
e912f2fbe9 Python2.6 is hardcoded, modify patch to use MODPY_VERSION. Bump revision.
ok sthen@ landry@ edd@.
2011-06-16 04:24:17 +00:00
rpointel
d75a0ded95 Removed RUN_DEPENDS, bump revision.
Spotted by Piotr Sikora, ok fgsch@.
2011-06-16 04:14:56 +00:00
sthen
b13f5eb09d update iodbc to 3.52.7, maintainer timeout
- while there, tweak the sample installed ini files to give
examples that can work with ODBC drivers available in ports

- take maintainer
2011-06-16 01:29:57 +00:00
sthen
5cafe8835d move WANTLIB+=${MODPY_WANTLIB} within the .if ${FLAVOR:L:Mpython} block;
no package change as the python module is only included if the python
flavour is selected (and unless that's included, MODPY_WANTLIB is blank),
but it's clearer this way.

side-note, python bindings should probably be split into a subpackage
sometime, there seems to be no need to have a separate flavour for this.
2011-06-15 23:33:00 +00:00
sthen
d3e2db6d34 revert last and add xvidcore to WANTLIB instead, allowing the
library dependency to be tracked properly. even though it's
dlopen(3)'d not linked directly, we still need to make sure the
package is compatible with the library.

it will show as Extra in lib-depends-check, that's not important
(but add a comment to make sure people don't think it can be removed).

pointed out by jakemsr and discussed with brad and espie.
2011-06-15 23:16:15 +00:00
sthen
7ae2e1c91d Build the bsd-user emulation binaries; they're still early work-in-progress
upstream, but this brings the port closer to a default qemu build. From Brad.
2011-06-15 21:13:33 +00:00
rpointel
0066d00c25 +py-virtualenv. 2011-06-15 19:50:24 +00:00
sthen
a3d5e24e83 vim's tar support requires GNU tar to operate correctly; patch the relevant
script to use "gtar" not "tar". This is not added as a run dep to avoid
pulling in extra dependencies, especially xz which requires gcc3+ so is
not available on some arch and is more difficult to build on others.
(There's a clear error message at runtime if gtar is unavailable.)
ok dcoppa@ ckuethe@
2011-06-15 19:43:10 +00:00
robert
dd75e16ee2 Use MODPY_VERSION instead of hardcoding 2.6 which is not the case anymore
since we default to python 2.7
2011-06-15 19:41:02 +00:00
rpointel
1fa4a8cf32 Import virtualenv, a tool to create isolated Python environments.
From Wen Heping (MAINTAINER).
ok fgsch@ benoit@.
2011-06-15 19:36:38 +00:00
sthen
2426dbb54a update to samba 3.5.9, from maintainer Ian McWilliam 2011-06-15 19:34:45 +00:00
sthen
bd39729c99 The installed apr-util on my desktop dates from before nawk was removed
from base causing a build failure in apr-util (as there's been nothing
changed since then to trigger an update). Set cache value to autoconf
to make sure nawk isn't picked up if for some reason it's hanging
around, though the REVISION bump alone is probably enough to take
care of most problems.
2011-06-15 19:13:48 +00:00
sthen
0b72bbee04 +asm6 2011-06-15 18:25:27 +00:00
sthen
9623292047 import ports/devel/asm6, from Anthony J. Bentley, ok landry@
Asm6 is another 6502 assembler. It was built to do NES development, but
you can probably use it for just about anything. It was written because
the author thought most other assemblers either were too finicky, had
weird syntax, took too much work to set up, or were too bug-ridden to be
useful.
2011-06-15 18:25:03 +00:00
sthen
389677daa5 transcode does dlopen(libxvidcore) at runtime rather than link against it,
so it isn't a WANTLIB. Therefore the LIB_DEPENDS entry for multimedia/xvidcore
gets stripped out of the packing list at package build time. This means that
A) the dependency isn't pulled in directly (though as it's provided by other
deps the package does work OK) and B) print-package-signature doesn't
match pkg_info -S, triggering unnecessary rebuilds with dpb -R.

Move xvidcore from LIB_DEPENDS to BUILD+RUN_DEPENDS to fix this.
From Nigel Taylor.
2011-06-15 18:11:16 +00:00
ajacoutot
9f01263238 Zap bogus enum. 2011-06-15 17:01:07 +00:00
espie
3fde18c238 zap old legacy compat with old depends with lots of leading ::: 2011-06-15 16:31:11 +00:00
espie
a307462266 fix some limitations of _print-package-args
* cut it into separate targets for readability and better testing
* filter libraries more efficiently
* use internal variable for resolve-lib

create two targets for solving wantlib: one (_fake-wantlib-args) which uses
the information under the fake directory and installed packages, and another
(_port-wantlib-args) which walks packing-lists. The second one can be used
to collect meta-info even when nothing is installed, and thus provide better
package-signature accuracy, or help with lib-depends-check.
The first one uses what's actually in place when a package is built.
For now, we're paranoid and use both when building a package, erroring out
if they don't match, even though _port-wantlib-args is somewhat slower.
2011-06-15 16:29:48 +00:00
ajacoutot
e543ce6329 Bugfix update to dbus-1.4.12. 2011-06-15 16:26:07 +00:00
sthen
64715a249a the Mozilla ports don't need Python at runtime, so set MODPY_RUNDEP=No.
(Firefox was already set this way). ok/reminder about sunbird landry@
2011-06-15 16:16:10 +00:00
sthen
78b691e4f1 sync WANTLIB; ok naddy@ 2011-06-15 16:11:25 +00:00
sthen
c1c7e36e9a Add backup MASTER_SITES. Upstream developer is another of those who
make life harder for OS packagers by refusing to keep old versions.
From Gonzalo (maintainer).
2011-06-15 15:19:05 +00:00
ajacoutot
a6295a6c9c Extend the section about assistive technologies.
While here, conform to the README template.
2011-06-15 13:33:01 +00:00
sthen
a0d19f416b update p5-WWW-Curl to a non-ancient version and extend DESCR.
(this is a fast www module for Perl; it's an XS binding to libcurl).
2011-06-15 13:31:44 +00:00
ajacoutot
8094f0cd34 Explain why we don't enable the monotonic clock. 2011-06-15 12:42:31 +00:00
ajacoutot
d9768049fa Typo. 2011-06-15 12:41:33 +00:00
sthen
b9215b7edb regenerate patches 2011-06-15 12:27:06 +00:00
sthen
1a418855cc zap old MASTER_SITES line too.. 2011-06-15 11:46:00 +00:00
sthen
da65ce5776 switch to working MASTER_SITES 2011-06-15 11:45:04 +00:00
sthen
14f62e7927 switch to working MASTER_SITES 2011-06-15 11:37:59 +00:00
landry
4e225dd68a Update to rabbitmq 2.5.0, from MAINTAINER Piotr Sikora.
Regress target still SIGBUSes on sparc64..
2011-06-15 11:02:59 +00:00
robert
38c1147a8d update to chromium-12.0.742.100 2011-06-15 10:59:55 +00:00
jasper
0866dea6e5 - bugfix update to json-glib 0.12.6 2011-06-15 10:29:38 +00:00
espie
2cf4d84ffd fix a long-standing bug: add LIB_DEPENDS to the RUN_DEPENDS of a port, as
there's a safeguard against self-depends anyways.
This prevents ports from getting moved from "built" to "installable"
prematurely.

For instance, devel/libsoup,-gnome doesn't directly depend on
net/glib2-networking, but it depends on devel/libsoup,-main which has
the net/glib2-networking.

Without this patch, dependencies on devel/libsoup,-gnome would often build
prematurely and build net/glib2-networking with them.
2011-06-15 10:09:31 +00:00
espie
755907c973 parse regression info if present 2011-06-15 10:06:22 +00:00
jasper
2d3653a499 adjust comment 2011-06-15 09:46:40 +00:00
ajacoutot
2d8e0d0172 Remove useless patches, sync WANTLIB and bump. 2011-06-15 09:33:02 +00:00
sthen
0d13795c70 patch not needed; doesn't change the package. pointed out by Jan Stary. 2011-06-15 09:29:48 +00:00
ajacoutot
00d59ab2b0 Sync, prodded by jasper@ 2011-06-15 08:48:52 +00:00