1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-20 08:27:15 +00:00
Commit Graph

359738 Commits

Author SHA1 Message Date
Antoine Brodin
a3d803c7cf Mark BROKEN: Fails to build
/usr/local/bin/perl5 /usr/local/lib/perl5/5.18/ExtUtils/xsubpp  -typemap /usr/local/lib/perl5/5.18/ExtUtils/typemap -typemap typemap  API.xs > API.xsc && mv API.xsc API.c
Could not find a typemap for C type 'grn_ctx *'.
The following C types are mapped by the current typemap:
'AV *', 'Boolean', 'CV *', 'FILE *', 'FileHandle', 'HV *', 'I16', 'I32', 'I8', 'IV', 'InOutStream', 'InputStream', 'NV', 'OutputStream', 'PerlIO *', 'Result', 'STRLEN', 'SV *', 'SVREF', 'SysRet', 'SysRetLong', 'Time_t *', 'U16', 'U32', 'U8', 'UV', 'bool', 'bool_t', 'caddr_t', 'char', 'char *', 'char **', 'const char *', 'const grn_logger_info *', 'const short *', 'const unsigned char *', 'const void *', 'double', 'float', 'grn_array *', 'grn_bool', 'grn_content_type', 'grn_ctx_info *', 'grn_db_create_optarg *', 'grn_expr_flags', 'grn_hash *', 'grn_id', 'grn_info_type', 'grn_obj_flags', 'grn_operator', 'grn_selector_func', 'grn_table_delete_optarg *', 'grn_table_sort_key *', 'int', 'long', 'long long int', 'long long unsigned int', 'short', 'short *', 'size_t', 'ssize_t', 'time_t', 'unsigned', 'unsigned char', 'unsigned char *', 'unsigned int', 'unsigned int *', 'unsigned long', 'unsigned long *', 'unsigned short', 'va_list', 'void *', 'wchar_t', 'wchar_t *'
 in API.xs, line 24
*** Error code 1

Reported by:	pkg-fallout
2015-02-21 07:40:56 +00:00
Antoine Brodin
4ca965b1ca Mark BROKEN: Fails to build
CXX    garbage_collector.lo
garbage_collector.cc:176:38: error: no member named 'min' in namespace 'std'
                min_timestamp = std::min(qst, min_timestamp);
                                ~~~~~^
garbage_collector.cc:180:36: error: no member named 'min' in namespace 'std'
                min_offline = std::min(oft, min_offline);
                              ~~~~~^
2 errors generated.

Reported by:	pkg-fallout
2015-02-21 07:37:57 +00:00
Antoine Brodin
9939b90892 Mark BROKEN: Fails to link, tries to use internal fltk symbols
c++ -o seaview   seaview.o custom.o use_mase_files.o regions.o load_seq.o align.o xfmatpt.o comlines.o resource.o nexus.o viewasprots.o racnuc_fetch.o concatenate.o statistics.o trees.o treedraw.o addbootstrap.o least_squares_brl.o pseudoterminal.o unrooted.o pdf_or_ps.o svg.o threads.o Fl_Native_File_Chooser_FLTK.o raa_acnuc.o parser.o md5.o zsockr.o misc_acnuc.o dnapars.o protpars.o seq.o phylip.o lwl.o bionj.o phyml_util.o  \
      -L/usr/local/lib -lfltk_images -lfltk  \
     -lXft -lXext -lfontconfig -ljpeg -lpng -lXinerama -L/usr/local/lib -lpdf \
         -lX11 -lm -lz -pthread
seaview.o: In function `clipboard_contains_alignment(char const*)':
seaview.cxx:(.text+0x1c14): undefined reference to `fl_selection_buffer'

Reported by:	pkg-fallout
2015-02-21 07:35:32 +00:00
Thomas Zander
4b57e7c1d0 - Update to upstream version 1.2.6
- New maintainer: Chris Hutchinson <portmaster@bsdforge.com>

PR:		195520
Submitted by:	portmaster@bsdforge.com (maintainer)
Reviewed by:	koobs, riggs
2015-02-21 07:29:50 +00:00
Kubilay Kocak
ef4c872460 devel/py-twistedCore: Create OPTION for service_identity
service_identity is an optional dependency that hasn't yet been added
to setup.py upstream as an extras_require [1]

Create a VERIFY option to make the dependency optional, as it adds
a decent number [~9] of subsequent dependencies that aren't needed
in most cases.

Set the VERIFY option to be a OPTIONS_DEFAULT *for now* since a few
consumers (and their ports) bail out with an error if its not installed
(deluge) [2].

For these cases, the port should instead depend on service_identity
directly, as in www/calendarserver.

While I'm here:

 - Strip shared libraries
 - Tweak COMMENT

[1] http://twistedmatrix.com/trac/ticket/3696
[2] http://svnweb.freebsd.org/ports?view=revision&revision=375833

Approved by:	python (hat)
2015-02-21 03:28:15 +00:00
Dmitry Marakasov
b56cad82bb - Remove @dirrm* from and add empty directories to plists 2015-02-21 03:25:27 +00:00
Jan Beich
8c781b51ec Move icons under hicolor (fallback) theme
Strip ending / (slash) when copying hicolor directory to avoid
installing icons under a theme with empty name. This should unbreak
expanding Icon in .desktop file by gtk_icon_theme_lookup_icon().

While here, add missing / to WWW per Porter's Handbook.

Note, the historic behavior of |cp -R foo/ bar| == |cp -R foo/. bar|
was disabled by NetBSD and OpenBSD years ago to match POSIX. Other
cp(1) implementations don't seem to be affected.
2015-02-21 03:22:10 +00:00
Sergey A. Osokin
11f341192e Upgrade from 3.0.0-rc3 to 3.0.0-rc4.
<ChangeLog>

--[ Redis 3.0.0 RC4 (version 2.9.104) ] Release date: 13 feb 2015

Upgrade urgency: High for Redis if you use LRU eviction, low otherwise.

This is the 4th release candidate of Redis 3.0.0, it fixes problems with
LRU eviction that are not present in older release (2.8.x is not affected)
and adds new tools to inspect latency and load-test LRU.

>> General changes

* [FIX] redis-cli CSV output NIL spurious newline removed. (Matt Collier)
* [FIX] Memory efficiency test in unit test is now much faster: it affacted
        the total "make test" execution time in a bad way.  (Salvatore
        Sanfilippo)
* [FIX] Fixes and improvements to dict.c and LRU eviction. Redis 3.0.0 new
        LRU eviction had bugs creating high latency spikes when LRU was
        happening during the keys dictionary rehashing. This bug is not
        present into 2.8, was 3.0 specific. As a side effect of this issue
        dict.c is now improved, and LRU algorithm is more precise (better
        approximates true LRU). This was a joint effort, see issue
         for details. (Oran Agra, Sun He, Salvatore Sanfilippo).
        Thanks to Charsyam for spotting an integer overflow.

* [NEW] New latency tool: redis-cli --latency-dist is able to show an
        xterm-256 based spectrum of latencies over time. (Salvatore Sanfilippo)
* [NEW] redis-cli --lru-test implemented (cache workload simulator). (Salvatore
        Sanfilippo)
* [NEW] redis-cli --stat now shows LOAD when Redis is loading data.
* [NEW] Support "1G" etc. units in CONFIG SET. (Chris Lamb, Salvatore
        Sanfilippo)

>> Cluster changes

* None.

>> Sentinel changes

* None.

</ChangeLog>
2015-02-21 02:47:43 +00:00
Jung-uk Kim
879cdc9041 Fix build with old Mesa3D. r378494 fixed new Mesa3D but it broke old ones. 2015-02-21 01:33:00 +00:00
Steve Wills
665d9f2530 Add Ruby 2.2.0
Differential Revision:	D1457
Submitted by:	sunpoet
Reviewed by:	swills (myself)
2015-02-20 23:51:55 +00:00
Jimmy Olgeni
0c3f6e495f Upgrade to version 17.4.1. 2015-02-20 23:37:01 +00:00
Rene Ladan
739773cb91 www/chromium: update to 40.0.2214.115 (bugfix release)
Changelog:	https://chromium.googlesource.com/chromium/src/+log/40.0.2214.111..40.0.2214.115
MFH:		2015Q1
2015-02-20 23:27:20 +00:00
Rene Ladan
6fe46c3063 www/chromium: fixup last commit
- Make __FreeBSD_versoin check actually work
- Implement OS::GetCurrnetThreadId on FreeBSD 8
- Move DragonFly's condtional to its own #elif for clarity
- Add NetBSD conditional for reference
Differential Revision:	https://reviews.freebsd.org/D1857
Submitted by:	jbeich
Reviewed by:	marino, myself
MFH:		2015Q1
2015-02-20 23:24:23 +00:00
Cy Schubert
fd26b4ca89 Fix broken rpath.
Submitted by:	hrs
2015-02-20 20:59:08 +00:00
Jung-uk Kim
a9ba86c4c8 - Update to 4.3.6.
- Enable GIO when GTK2 or GTK3 is enabled. [1]

Submitted by:	tijl [1]
2015-02-20 20:26:23 +00:00
Jung-uk Kim
8131d5abf3 Update to 0.5.0. 2015-02-20 20:23:03 +00:00
Mikhail Teterin
08b0c7bd52 Update from 4.0.2.1 to 4.0.3.2 released on yesterday:
http://permalink.gmane.org/gmane.linux.terminal-server.x2go.announce/159
2015-02-20 20:15:17 +00:00
Jason Helfman
40bd69303a - update MASTER_SITE
- update dependency,  python version

Reported by:	koobs
2015-02-20 20:03:49 +00:00
Ganael LAPLANCHE
253a5b9ec0 Add missing dependency to sudo 2015-02-20 19:57:49 +00:00
Brooks Davis
7adedb68bf Update to rc4. 2015-02-20 19:23:56 +00:00
Pawel Pekala
841c85b43b Update toversion 20140915
PR:		197397
Submitted by:	mark@foster.cc (maintainer)
2015-02-20 19:22:17 +00:00
Pawel Pekala
d6a5072cd2 Update to version 20150206
PR:		197392
Submitted by:	Nikolai Lifanov <lifanov@mail.lifanov.com> (maintainer)
2015-02-20 19:08:12 +00:00
Jason Helfman
199e743009 - over to new maintainer
Reported by:	cpet (via irc)
2015-02-20 18:36:15 +00:00
Jung-uk Kim
e4c2376904 Update to 0.12.0. 2015-02-20 18:25:50 +00:00
Pawel Pekala
ae5ca81717 Update to version 20150130
PR:		197303
Submitted by:	Koichiro IWAO <meta+ports@vmeta.jp> (maintainer)
2015-02-20 18:16:57 +00:00
Jason Helfman
3a37304f36 - back to the heap 2015-02-20 18:08:53 +00:00
John Marino
7f1ce9d964 science/paraview: No, it's still broken
A while back, the happily building paraview stopped building because
libGL was updated.  The other ports that suffered breakage for the same
reasons were updated to the latest API.  Paraviews libGL callouts were
never fixed, so this port never should not have had it's BROKEN definition
removed as it was not fixed despite the claim.  It's still breaking on all
platforms including DragonFly on clang, gcc47 and gcc50.  Errors from
FreeBSD look like:

In file included from /wrkdirs/usr/ports/science/paraview/work/ParaView-
  v4.1.0/VTK/Rendering/OpenGL/vtkXOpenGLRenderWindow.cxx:31:
In file included from /usr/local/include/GL/glx.h:333:
/usr/local/include/GL/glxext.h:480:143: error: unknown type name 'GLintptr'
  typedef void ( *PFNGLXCOPYBUFFERSUBDATANVPROC) (Display *dpy, GLXContext
readCtx, GLXContext writeCtx, GLenum readTarget, GLenum writeTarget,
  GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size);
typedef void ( *PFNGLXCOPYBUFFERSUBDATANVPROC) (Display *dpy, GLXContext
  readCtx, GLXContext writeCtx, GLenum readTarget, GLenum writeTarget,
  GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size);
/usr/local/include/GL/glxext.h:480:186: error: unknown type name
  'GLsizeiptr'; did you mean 'GLsizei'?
typedef void ( *PFNGLXCOPYBUFFERSUBDATANVPROC) (Display *dpy, GLXContext
  readCtx, GLXContext writeCtx, GLenum readTarget, GLenum writeTarget,
  GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size);
2015-02-20 18:01:10 +00:00
Pawel Pekala
76f2aa292e - Update to version 2.5.2 [1]
- Remove GH_PROJECT, GH_TAGNAME - they are set to correct values
  by ports framework by default

PR:		197292 [1]
Submitted by:	lapo@lapo.it (maintainer) [1]
2015-02-20 17:45:53 +00:00
Bartek Rutkowski
81aa259219 www/tengine: multiple fixes
- Fix building issue when using custom port options
- Fix problem with agentzh modules moved by upstream to openresty repo
- Convert to @dir usage
- Add LICENSE FILE
- Pet portlint

PR:		196002
2015-02-20 17:22:28 +00:00
Tilman Keskinoz
18321e192f Improve previous commit: Fix unused bug and disable Werror while here
Suggested by:   marino
2015-02-20 17:16:12 +00:00
Nicola Vitale
cc33b4c3c2 - Update to 1.9.17 2015-02-20 17:11:58 +00:00
Vsevolod Stakhov
ef4e1d3389 - One more fix for i386 assembly.
- Bump revision (package is changed).
2015-02-20 16:58:45 +00:00
Sean Bruno
26cfacc528 Fix directory creation so that a armv6-unknown-freebsd directory is created
instead of an arm-unkonwn-freebsd to be friendlier with freebsd pkg tools.

PR:		197581
Submitted by:	mikael.urankar@gmail.com
Approved by:	tphilipp@potion-studios.com (maintainer)
2015-02-20 16:58:23 +00:00
Pawel Pekala
1b6717f8ce - Update to version 1.4.3 [1]
- Convert to USES=execinfo

PR:		197254 [1]
Submitted by:	lightside@gmx.com [1]
Approved by:	maintainer timeout
2015-02-20 16:55:50 +00:00
Tilman Keskinoz
0920f20dda Remove Werror to allow compilation with latest clang
PR:		196460
2015-02-20 16:47:29 +00:00
Pawel Pekala
bff25072b2 Support non default ports path.
PR:		194423
Submitted by:	myself
Approved by:	maintainer timeout (4 months), trivial - just fix it
2015-02-20 16:30:26 +00:00
Tilman Keskinoz
f8d8b56ea0 Add -Wno-unused to prevent Werror from triggering with gcc48
PR:             197284
Submitted by:   dewayne@heuristicsystems.com.au
2015-02-20 16:25:32 +00:00
Pawel Pekala
2e0241e197 Update to version 5.9.1
--- 5.9.1 2015/02/06

Fix 0 ptr reference for OPAC records from XML YAZ-822
2015-02-20 16:19:20 +00:00
Sunpoet Po-Chuan Hsieh
19242c2c12 - Use USES=twisted
With hat:	python
2015-02-20 15:49:05 +00:00
Sunpoet Po-Chuan Hsieh
0ac943bd1a - Use USES=twisted
- While I'm here, use single space after WWW:

With hat:	python
2015-02-20 15:48:57 +00:00
Sunpoet Po-Chuan Hsieh
5f950b6198 - Use USES=twisted
- While I'm here:
  - Add LICENSE [1]
  - Use single space after WWW:

With hat:	python
Approved by:	portmgr (blanket) [1]
2015-02-20 15:48:52 +00:00
Sunpoet Po-Chuan Hsieh
3904503350 - Update to 2.12.2
Changes:	https://github.com/guard/guard/releases
2015-02-20 15:48:47 +00:00
Sunpoet Po-Chuan Hsieh
a6e5146d04 - Update to 1.29.0
Changes:	https://github.com/fog/fog-core/blob/master/changelog.md
2015-02-20 15:48:41 +00:00
Sunpoet Po-Chuan Hsieh
9b86cd5a0c - Update to 0.08726
Changes:	http://search.cpan.org/dist/PkgConfig/Changes
2015-02-20 15:48:36 +00:00
Tilman Keskinoz
39085fae18 Drop Maintainership
PR:		197402
Submitted by:	Timothy Beyer
2015-02-20 15:42:44 +00:00
John Marino
faa6eb7860 x11/eaglemode: set make enviroment for do-build target
PR:		197848
Submitted by:	marino
Approved by:	maintainer (amdmi3)
2015-02-20 14:58:49 +00:00
Ryan Steinmetz
6d443bd621 - Bring back lost patch to fix memory usage calculations
- Bump PORTREVISION

PR:		148339
2015-02-20 14:52:01 +00:00
John Marino
842cc113e6 x11-themes/thewidgetfactory: #include <string.h> 2015-02-20 14:06:06 +00:00
Alex Dupre
d859043302 Switch default PHP version to 5.6.x.
- Update PHP 5.4 to 5.4.38 release
- Update PHP 5.5 to 5.5.22 release
- Update PHP 5.6 to 5.6.6 release

PR:		195604
Approved by:	portmgr
2015-02-20 13:56:11 +00:00
John Marino
fae67ba03e audio/slv2: Set the make environment on the do-build target
While here, unmask all the build and install commands.
2015-02-20 13:51:53 +00:00