Commit Graph

65576 Commits

Author SHA1 Message Date
jasper
613a1ee084 - bugfix update to 2011-04-28 2011-04-29 06:46:06 +00:00
jasper
4540d7cb07 libm has nearbyint() in libm now.
ok sebastia@ (MAINTAINER)
2011-04-29 06:39:54 +00:00
jasper
39a4143af0 libm has nearbyintf() now.
ok jakemsr@
2011-04-29 06:38:34 +00:00
jasper
a8ed53e972 - update to 0.4.7
i386 build test by sthen@, thanks
2011-04-28 22:02:44 +00:00
jasper
1b30818661 usage of SUBST_CMD wasn't needed here, so use MAKE_FLAGS instead. prevents
unneeded substitutions in PLIST too.
2011-04-28 21:27:31 +00:00
jasper
6b93577fce - update to 2011-04-23 2011-04-28 21:18:47 +00:00
dhill
fc71d3791d update to 0.3.
ok jasper@
2011-04-28 20:50:11 +00:00
landry
360aefae1c Let's use a common DIST_SUBDIR for all mozilla ports so that it's easier
to clean the gigabytes of src tarballs previously piling up in distfiles/.
Update distinfo accordingly.
Looks sane to jasper@.
2011-04-28 20:44:47 +00:00
sthen
27836bb7f9 - add a HOMEPAGE
- set license markers ("without fee" Lucent/Bell license)
- bump REVISION
2011-04-28 19:28:15 +00:00
jasper
398bd7cda9 make build logs a lot easier to read by zapping the
"<malloc.h> is obsolete, use <stdlib.h>" warnings.
2011-04-28 19:18:22 +00:00
sthen
d7447e777f - remove patch now we have FE_TONEAREST in fenv.h 2011-04-28 19:11:51 +00:00
jasper
78f9b820e1 - enable rdf and sgml libraries now that libc has swprintf() 2011-04-28 18:59:18 +00:00
jasper
8f29c06fe1 - we have nearbyintf() in libm now 2011-04-28 18:38:40 +00:00
jasper
372a7d3edf - we have nearbyint() in libm now. 2011-04-28 18:38:04 +00:00
kili
59f395ba1c Enable unicode again.
ok landry
2011-04-28 17:51:50 +00:00
kili
9aa729f18e Enable unicode even with wprintf() available but not wscanf().
ok sthen@, landry@
2011-04-28 17:50:43 +00:00
kili
a183052f5d + hs-ansi-terminal 2011-04-28 17:35:13 +00:00
kili
45679cc987 ANSI terminal support for Haskell, which allows:
* Cursor movement
* Screen and line clearing
* Color output
* Showing or hiding the cursor
* Changing the console title (though this is not strictly part of
  ANSI, it is widely supported in Unix)

It is compatible with Windows (via an emulation layer) and those
Unixes with ANSI terminals.

ok jasper@
2011-04-28 17:31:57 +00:00
ajacoutot
a5a6bdf7f6 Sync WANTLIB. 2011-04-28 17:29:37 +00:00
ajacoutot
52767e827a Use the gtk-print stock icon instead of the ugly cups one. 2011-04-28 17:21:17 +00:00
shadchin
6892c620f3 Update to 3.0.2
ok jasper@
2011-04-28 17:06:11 +00:00
sthen
22b70aa246 - update to 2.02, from jung (maintainer).
- add a patch to fix a user-after-free, maintainer ok
2011-04-28 16:17:21 +00:00
dhill
5277a7f217 update to 0.9.5
ok sthen@
2011-04-28 15:37:10 +00:00
ajacoutot
7088cee7da Use the gnome MODULE.
ok jasper@
2011-04-28 13:58:36 +00:00
jasper
35114d20c6 - update to 0.25.16
- set SHARED_ONLY

ok aja@
2011-04-28 13:49:48 +00:00
jasper
903d68ac21 - update to 0.7.10
- change MASTER_SITES to ftp.gnome.org
- take maintainership
2011-04-28 13:49:38 +00:00
rpointel
0e67b39b23 Update trac to 0.12.2.
ok sthen@.
2011-04-28 13:36:41 +00:00
ajacoutot
ef8aef2f3a -eggdbus 2011-04-28 13:12:03 +00:00
ajacoutot
46e27e8b33 Remove, deprecated and not needed by anything anymore.
ok jasper@
2011-04-28 13:11:36 +00:00
ajacoutot
9413dc5c08 Regen dependencies after recent updates: drop eggdbus dependency.
(this will also fix a symbol conflict between libeggdbus and glib2)

ok jasper@
2011-04-28 13:10:57 +00:00
ajacoutot
b0a17f9b03 Update to polkit-qt4-0.99.0
ok jasper@
2011-04-28 13:10:24 +00:00
ajacoutot
ec4e13283a Update to polkit-gnome-0.101.
Revert the upstream commit that removed the autostart file for now,
because desktop sessions have not yet have time to deal with it.
Explicitely use gtk+2.

ok jasper@
2011-04-28 13:09:59 +00:00
ajacoutot
ca4ec51287 Fix detection of SCM_RIGHTS for fd passing.
from eric@
ok jasper@
2011-04-28 13:09:32 +00:00
ajacoutot
af6b7de546 Update to polkit-0.101.
Merge several patches from upstream to fix CVE-2011-1485.

ok jasper@
2011-04-28 13:09:07 +00:00
ajacoutot
03b8f5bd01 Update to consolekit-0.4.4.
Make sure we don't try and use /proc.
s/KERN_PROC2/KERN_PROC

ok jasper@
2011-04-28 13:08:33 +00:00
ajacoutot
8c8429a47c Workaround the fact that we cannot pass SCM_CREDS over unix sockets:
implement the "intended" SCM_CREDS stack as if we had support for that
in the kernel (by-pass it almost completely).
send/recv a single null byte without creds, but on recv, just do a
getsockopt(SO_PEERCRED) and return that as if it coming from the cmsg.
This works as long as creds are not retreived from an fd which has
already been handed over to a different process via SCM_RIGHTS. It will
probably not be enough in the future but we'll see then.
all this work done by eric@ (thanks!) and tested by myself

Enable support for g_credential*
Fix a couple of warnings.

ok eric@ jasper@
2011-04-28 13:07:53 +00:00
dcoppa
d5af7c5855 Update to gecko-mediaplayer-1.0.3.
dconf clue stick by ajacoutot@

Tested by Antti Harri on YouTube using the flashvideoreplacer
extension for firefox (thanks!)

please go ahead fgsch@
2011-04-28 11:49:56 +00:00
dcoppa
3a453a240c Update to gnome-mplayer-1.0.3.
This now uses gsettings/dconf configuration system.
Most of my local patches have been merged upstream.

dconf clue stick by ajacoutot@

Tested by Antti Harri on YouTube using the flashvideoreplacer
extension for firefox (thanks!)

please go ahead fgsch@
2011-04-28 11:47:48 +00:00
landry
1ad242809d Various fixes from Piotr Sikora (maintainer) :
- simplify rabbitmqctl diff, use su to make sure command is run as ${RABBITUSER}
- change _rabbitmq shell to /sbin/nologin,
- remove redundant setting of PYTHON,
- remove unnecessary SUBST_CMD calls,
- remove trailing space in MAKE_ENV.
discussed with maintainer and ajacoutot@
2011-04-28 11:28:43 +00:00
dcoppa
e40d49da43 Unbreak on a clean box: asciidoc requires docbook* stuff.
OK jasper@, sthen@, robert@ (maintainer)
2011-04-28 11:12:37 +00:00
jasper
272f2dd622 sync 2011-04-28 10:51:26 +00:00
jasper
3c2756e182 import libsocialweb
Social data server which will fetch data from the "social web", such as
blog posts and photos, upcoming events, recently played tracks, and
pending auctions. It also provides a service to update status on
supported web services such as Facebook and Twitter. Libsocialweb can be
accessed via D-Bus, or with a custom socialweb client.

ok aja@
2011-04-28 10:50:46 +00:00
jasper
70c89c7b6f - adjust to new rest API
- adjust dependencies now that rest depends on libsoup,-gnome

ok landry@ (for a previous revision of the diff), aja@
2011-04-28 10:49:15 +00:00
jasper
f44163b5ee - update to 0.7.9
- enable gnome and introspection support

ok landry@ (for a previous revision of the diff), aja@
2011-04-28 10:48:38 +00:00
dcoppa
88753aa14e Clarify license marker.
Remove useless @sample.

Suggested by, ok sthen@
Ok benoit@ (maintainer)
2011-04-28 10:31:16 +00:00
ajacoutot
43c5044259 Set proper AUTOCONF_VERSION, from Brad. 2011-04-28 09:57:01 +00:00
dcoppa
63bbce5232 I take maintainership, david@ agrees.
While here, add a fix to not warp workspaces with only one workspace
(from upstream git)
2011-04-28 09:52:48 +00:00
landry
875bead908 Fix AUTOCONF_VERSION, from brad. 2011-04-28 09:51:33 +00:00
sthen
ccf144d5ea - add an rc script for igmpproxy
- tweak Makefile while there
ok markus@
2011-04-28 09:45:39 +00:00
dcoppa
6579c5d0ce Remove david@ as maintainer, as per his request. 2011-04-28 09:45:14 +00:00