Commit Graph

83719 Commits

Author SHA1 Message Date
fgsch
11b9dee85e update to ibus 1.5.2.
ajacoutot@ ok
2013-05-07 07:59:25 +00:00
ajacoutot
851cfa86db Update to gtk3mm-3.8.1. 2013-05-07 07:31:57 +00:00
giovanni
390b57f2d4 Add a missing build dependency
spotted and ok naddy@
2013-05-07 07:09:53 +00:00
jasper
c7e6384282 - update to emacs 24.3
- rework flavors and make gtk3 the default (as per upstream)

from jca (MAINTAINER)
ports-wise ok sthen@
2013-05-07 07:06:42 +00:00
jasper
024221a0ec add rcs id 2013-05-07 07:00:20 +00:00
ajacoutot
cc5f1a3edd Update to dbus-1.6.10. 2013-05-07 07:00:01 +00:00
jasper
484c392291 update to coffeescript 1.6.2 2013-05-07 06:54:55 +00:00
jasper
ef222239f0 Security fix for CVE-2013-1944 curl: Cookie domain suffix match vulnerability
ok naddy@ (MAINTAINER)
2013-05-07 06:53:26 +00:00
ajacoutot
017e31dfd7 Sync dbus-launch test with what we do in xenocara. 2013-05-07 06:44:47 +00:00
jasper
47a4c5c7d5 update to directory_watcher-1.4.1 2013-05-07 06:44:22 +00:00
ajacoutot
2b792359b2 Update to libnettle-2.7. 2013-05-07 06:39:41 +00:00
ajacoutot
a11e7a85f3 Update to p11-kit-0.18.1. 2013-05-07 06:38:59 +00:00
ajacoutot
92449198ae Update to libtasn1-3.3. 2013-05-07 06:23:52 +00:00
ajacoutot
3f97859356 Update to latexila-2.8.1. 2013-05-07 06:09:50 +00:00
benoit
4cb1a4a1d2 - update py-asn1 to 0.1.7 2013-05-07 05:58:52 +00:00
zhuk
5ab62297f4 Add MODPERL_BIN_ADJ and MODPERL_ADJ_FILES, similar to other port modules.
Tested with the upcoming print/texlive/base big shebang adjustment patch.

"Makes sense" sthen@
2013-05-06 21:16:18 +00:00
naddy
df276b3a76 add 5.3 release song 2013-05-06 19:22:23 +00:00
zhuk
8956c3b65c No need for pre-configure here: file being patched does not go to binary
package, and is not called as executable script but as
"$(TCLSH) gv_doc_writer.tcl" instead.

okay edd@ (MAINTAINER)
2013-05-06 18:50:47 +00:00
naddy
06fb5f2660 avoid picking up bash in a sub-configure started during the build stage 2013-05-06 17:49:37 +00:00
fgsch
40cfb78e39 enter py-flask-sqlalchemy and py-mongo 2013-05-06 16:20:11 +00:00
fgsch
ecaf79f8d2 import py-mongo, a python driver for mongodb.
ok benoit@
2013-05-06 16:18:33 +00:00
fgsch
d90163d6b5 import py-flask-sqlalchemy, sqlalchemy support for flask.
correction and ok from benoit@
2013-05-06 16:16:30 +00:00
espie
c07d468caa if the filesystem is fast enough, there is a race condition while building
also annotate "force" targets as phony to make sure they actually get
built.
2013-05-06 13:53:40 +00:00
benoit
9b952d4db8 - update py-docutils to 0.10
- regen PLIST

from David Hill, "look ok" Ben Lovett (Maintainer)
2013-05-06 12:05:52 +00:00
jasper
444eaec26b having MASTER_SITES_BACKUP is implied, so no need to make it explicit. 2013-05-06 12:01:17 +00:00
jasper
0436d2f211 MASTER_SITES=${HOMEPAGE} is no good when there's no HOMEPAGE. 2013-05-06 12:00:54 +00:00
jasper
8d6c3e103e provide a mirror for the extra distfiles 2013-05-06 11:57:09 +00:00
jasper
459f608237 partially revert previous update and update to 0.4.2 instead as jekyll
doesn't play nice with pygments.rb > 0.4.2 yet.

set epoch.
2013-05-06 07:02:45 +00:00
jasper
e3f580ce58 update to highline-1.6.18 2013-05-06 06:33:13 +00:00
jasper
7601fe694f update to ruby-pygments.rb-0.5.0 2013-05-06 06:30:05 +00:00
rpe
cbcf0f7a68 update nagios to 3.5.0
- remove REVISION-main
- use ${PREFIX-web} instead of /var/www in CONFIGURE_ARGS
- use --with-htmurl, --with-httpd-conf, --with-log-dir to have
  (almost) identical CONFIGURE_ARGS for nagios and icinga
- make post-install block more compact
- move the apache config file snippet from nagios-main to nagios-web
- add a pkg-readme

with feedback and ok sthen@
2013-05-05 22:13:48 +00:00
rpe
6bffaa3b9b update to 0.44
ok sthen@
2013-05-05 21:21:43 +00:00
brad
34b80ff727 - Simplify sndio configure check based on feedback from upstream
- Remove X LP64 patch as the bug was fixed upstream awhile ago

ok sthen@
2013-05-05 21:11:32 +00:00
edd
15b88e2fa0 Improve BSDmakefile distributed with arduino libs:
- Adds the utility/ directory as an include path for each library imported.
   Needed to build, for example, the SD library.

 - Add example settings for an arduino mega.

 - Add example of how to use the SD library.

 - Use -ffunction-sections -fdata-sections and link with
   -Wl,--gc-sections, as the official arduino toolchain does[1].
   This makes smaller hex files. I put the -f stuff in CTUNING, which
   was previously defined but unused. Commented the unused def out for now.

 - Implement __cxa_pure_virtual so the user does not have to[1][2].

 - Deal with the creation and removal of the utility/ directory
   automatically. The comment that explained this was actually wrong
   anyway. It said to create a 'utilities' directory, but it meant
   'utility'. Anyway, manage this automatically, why not.

[1] http://stackoverflow.com/questions/920500/what-is-the-purpose-of-cxa-pure-virtual
[2] http://playground.arduino.cc/OpenBSD/CLI

OK jasper@
2013-05-05 20:51:40 +00:00
espie
5dc4c786af new version, features:
- shows most reverse dependencies, as asked by sthen@ (a bit tricky thx to
canonical paths)
- canonicalize paths, e.g. path/x11/kde/libs3 will redirect to
path/x11/kde/libs3,-main
2013-05-05 20:18:10 +00:00
jasper
256c0ea000 modules.sample/ always lives in /var/www, so no need for ${PREFIX} here.
as discussed with aja@
2013-05-05 19:24:13 +00:00
jasper
9730e57cf4 sync, 8014 unzels. 2013-05-05 19:13:31 +00:00
jasper
a8a89df0a5 update to yad-0.20.3 2013-05-05 19:07:44 +00:00
jasper
c18e848826 update to ruby-gir_ffi-0.5.2 2013-05-05 19:02:44 +00:00
jasper
ffe8ce6c4a - update to ruby-maruku-0.6.1 2013-05-05 18:58:35 +00:00
jasper
d2602e91b8 Fix compatibility with Gtk+ 2.x
from upstream
2013-05-05 18:50:21 +00:00
jasper
6017dac3c5 - update to smtp-vilter 1.3.8
prompted by marc balmer (upstream)
2013-05-05 17:37:00 +00:00
edd
d68719c45d Update to avrdude-5.11.
This is gonzalo's work he posted to ports@ a while back. I have just
remerged the diff for -current.

Tested on an arduino mega (clone) and an arduino uno.

OK gonzalo@
2013-05-05 16:48:08 +00:00
gonzalo
22df031095 Update for Ejabberd to 2.1.12:
Mostly bugfixes

https://github.com/processone/ejabberd/blob/master/doc/release_notes_2.1.12.txt

Ok aja@ abieber@
2013-05-05 16:17:19 +00:00
gonzalo
226df9aef1 Update for Spectrwm to 2.3.0.
Bugfixes and others.

Just go ahead sthen@
2013-05-05 16:09:38 +00:00
bcallah
6c748f947a Change MASTER_SITES, as upstream changed the location of the tarball.
ok espie@
2013-05-05 13:03:59 +00:00
ajacoutot
33260547ba Update to gnome-keyring-3.8.2. 2013-05-05 05:56:49 +00:00
ajacoutot
340e716ba7 Update to gcr-3.8.2. 2013-05-05 05:50:18 +00:00
sthen
22a9c3b4b3 update to p5-Audio-Scan 0.93 2013-05-04 22:34:12 +00:00
pascal
dfa7352337 Update to GDB 7.6. 2013-05-04 21:27:11 +00:00