Commit graph

13027 commits

Author SHA1 Message Date
Vanilla I. Shu
faaf517bcf Stagify.
Approved by:	portmgr@
2014-06-17 12:45:52 +00:00
Vanilla I. Shu
3cd87497d5 Stagify.
Approved by:	portmgr@
2014-06-17 12:41:42 +00:00
Vanilla I. Shu
94029b630a 1: Stagify.
2: new syntax of LIB_DEPENDS
3: switch to USES=libtool

Approved by:	portmgr@
2014-06-17 12:35:11 +00:00
Vanilla I. Shu
c22fbe8bb6 Stagify. 2014-06-17 12:18:07 +00:00
Antoine Brodin
53857e7276 - Create symlinks for non-ABI-suffixed python*-config and ABI-suffixed python-*.pc
- Fix DISABLED_EXTENSIONS extension patch, autoconf is not used so configure has to be patched

Phabric:	D225
Reviewed by:	koobs
2014-06-16 17:46:41 +00:00
David Naylor
5ef3704c89 Pet portlint and add local-distfiles for lang/pypy-devel.
PR:		190881
Submitted by:	ports@robakdesign.com
2014-06-16 09:52:57 +00:00
Rene Ladan
c8f5b88949 Remove expired ports:
2014-06-12 databases/py-cmemcache: Deprecated upstream
2014-06-13 games/mangos: Broken for more than 6 months
2014-06-14 lang/clojure-contrib: monolithic contrib library is obsolete
2014-06-14 devel/bzapi: Bugzilla has a native REST API, see https://wiki.mozilla.org/BMO/REST
2014-06-15 18:26:12 +00:00
Johan van Selst
88cdfe844e Our automatic dependency tracking is too intelligent,
but should have all bases covered now.
2014-06-15 15:22:24 +00:00
John Marino
5e065a93b7 lang/perl5*: Remove absolute path to makewhatis in pkg-plist
Generally absolutely paths are not used with @exec in pkg-plist.
In this case, the path /usr/bin/makewhatis doesn't work on DragonFly
where the binary is located at /usr/sbin/makewhatis.  Removing the
full path is a no-op on FreeBSD and fixes perl man page installation
on DragonFly.  No revbump required.

Approved by:	portmgr (bapt)
2014-06-15 12:40:42 +00:00
Johan van Selst
ca25ebcc62 - Revert USE_AUTOTOOLS=libtool that was removed in previous commit
because libtool was not found, 12 library files were not build
- Bump PORTREVISION

Reported by:	jenkins via swills
2014-06-15 12:33:34 +00:00
Johan van Selst
0b8f294fc3 Avoid creating a history file in the user's (root) homedir during build
Reported by:	jenkins via swills
2014-06-14 20:52:22 +00:00
Thomas Zander
4e590ba522 - Take maintainership upon dhn's request on the ports mailing list [1]
- Update to latest upstream release 20131017
- MMIX development is now hosted at http://mmix.cs.hm.edu
  - Update MASTER_SITES accordingly
  - Update pkg-descr accordingly
- Add LICENSE
  - Provide text file containing the license via ${FILESDIR}/LICENSE.txt

Approved by:	mentors (implicit), dhn [1]
2014-06-14 12:12:33 +00:00
Johan van Selst
d08dc7af62 Update gforth to 0.7.3 (bugfix release) 2014-06-14 10:45:29 +00:00
Martin Wilke
03c2f48939 - Fix build with i386
PR:		190900
Submitted by:	ports fury
2014-06-14 05:49:29 +00:00
Gerald Pfeifer
9828435db4 Update to the 20140611 snapshot of GCC 4.9.1. 2014-06-13 04:55:45 +00:00
Mathieu Arnold
efcd879e04 Fix plist orphans
Noticed by:	miwi
Sponsored by:	Absolight
2014-06-12 14:33:28 +00:00
Gerald Pfeifer
907f4eb0cf Update to the 20140608 snapshot of GCC 4.10. 2014-06-12 01:11:42 +00:00
John Marino
d0bb05930a Reset the 99 ports still listed under sylvio@
Sylvio's last commit was 17 months ago, a full 5 months after all of his
ports could have been reset per policy.  Given the push to complete
staging (48 ports are still unstaged, something like 70+ have already
been staged by other committers) and given that PRs are automatically
assigned but never addressed, it's better just to reset all the ports and
PRs so that it's clear to others that these ports are free to maintain.

Approved by:	portmgr (implicit)
2014-06-11 18:55:29 +00:00
Tijl Coosemans
9f8b4bcde3 Support LIBS like LDFLAGS.
- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS.  Also remove references to
  PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
  required additional patches.

Somewhat simplified a linker command line looks like:

${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}

where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us.  If possible -L and -l flags need to be
added to LIBS to make sure they appear after any -L and -l flags set by
upstream.  Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this
may appear too early on the command line causing installed libraries to
be linked in instead of freshly built ones.

Additional changes:
benchmarks/netio: Replace WITH_IPV6 with an IPV6 option.
comms/gnokii: Replace some patches with USES=pathfix.  Also remove -fPIC.
graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR.
graphics/visionworkbench: Remove FreeBSD 7 support.
multimedia/libmovtar: New LIB_DEPENDS syntax.
multimedia/opencinematools: Use standard do-build.
net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins)
net-mgmt/nagios: Remove -fPIC.
net-mgmt/nagios4: Remove -fPIC.
print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036.
security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with
ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS.  This skips a test
in configure that falsely detects pthread_mutexattr_init in our libc.
sysutils/dar: Fix iconv detection.
x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD
hack and use $CXX as linker as on other platforms.

PR:		190592
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2014-06-11 14:49:59 +00:00
Nicola Vitale
2b9c499171 - Remove leading, undefined article from COMMENT
- Use options helpers
- Add support for stage dir
- Update link of WWW site
2014-06-11 05:12:13 +00:00
John Marino
e3a3698100 lang/ocaml: Remove DEF_OPT option (non-default option)
The option reacts poorly with ocamlp4, and phasing out DEF_OPT
completely will prevent a lot of breakage with ports that also
interact with ocamlp4.

PR:		189176
Submitted by:	Anil Madhavapeddy
Prepared by:	maintainer (Michael Gruenewald)
2014-06-10 23:40:37 +00:00
Carlo Strub
9b305e9b7b Unbreak in HEAD
PR:		190501
Submitted by:	vmagerya@gmail.com (maintainer)
2014-06-10 21:48:33 +00:00
David Naylor
84fe0976a8 Update lang/pypy-devel to 2.3.1.
ChangeLog:
 * The built-in struct module was renamed to _struct, solving issues with
   IDLE and other modules
 * Support for compilation with gcc-4.9
 * A CFFI-based version of the gdbm module is now included in our binary bundle
 * Many issues were resolved since the 2.3 release on May 8
2014-06-10 18:12:55 +00:00
Mathieu Arnold
61de712f46 Remove all the bootstrap files (.bs) from the plists.
Starting with perl 5.20, they're not installed any more if empty,
and on FreeBSD, they're (always ?) empty.

PR:		190681
Submitted by:	mat
Exp-Run by:	antoine
Sponsored by:	Absolight
2014-06-10 12:14:12 +00:00
Kurt Jaeger
15ecc3b4e3 lang/perl5.18: fix warning in Math/BigInt.pm
See also https://rt.cpan.org/Public/Bug/Display.html?id=80182

PR:             ports/185541
Approved-by:    tobez (maintainer timeout), jadawin (mentor)
2014-06-10 09:22:26 +00:00
Kurt Jaeger
9560eaa378 lang/perl5.16: fix warning in Math/BigInt.pm
See also https://rt.cpan.org/Public/Bug/Display.html?id=80182

PR:             ports/185541
Approved-by:    tobez (maintainer timeout), jadawin (mentor)
2014-06-10 09:21:22 +00:00
Kurt Jaeger
11ca3d7bbe lang/perl5.20: fix warning in Math/BigInt.pm
See also https://rt.cpan.org/Public/Bug/Display.html?id=80182

PR:             ports/185541
Approved-by:    tobez (maintainer timeout), jadawin (mentor)
2014-06-10 08:28:44 +00:00
Mark Linimon
02104a6160 Reset maintainership.
PR:		190858
PR:		190859
PR:		190860
PR:		190861
PR:		190862
PR:		190863
PR:		190864
Submitted by:	former maintainer
Approved by:	portmgr (blanket)
2014-06-10 06:31:43 +00:00
Akinori MUSHA
642a2ee173 Update project information and COMMENT. 2014-06-10 04:47:32 +00:00
Akinori MUSHA
fc8b99278d Update to 1.13.2, remove NO_STAGE and drop XEmacs support. 2014-06-10 04:46:10 +00:00
Gerald Pfeifer
12e97d4035 Update to the 20140605 snapshot of GCC 4.8.4.
Add support for "-fstack-protector-strong".  This extends the
WITH_SSP_PORTS Makefile option in FreeBSD which adds "-fstack-protector"
and "-fstack-protector-all" command-line options that add extra code to
check for buffer overflows to ports built that way, cf.
https://gcc.gnu.org/onlinedocs/gcc-4.8.3/gcc/Optimize-Options.html

While this was a good first step, those switches offer too little
protection or too much overhead and so Google contributed a balanced
"-fstack-protector-strong". [1]

PR:		186852 [1]
Submitted by:	software-freebsd@interfasys.ch [1]
2014-06-10 02:11:30 +00:00
Jimmy Olgeni
55dc0f983a Remove all space characters from Makefile assignments.
No functional changes included.

CR:		D193 (except math/sedumi)
Approved by:	portmgr (bapt)
2014-06-08 19:51:27 +00:00
Antoine Brodin
f7cf2435ca Fix LIB_DEPENDS 2014-06-08 14:16:57 +00:00
Jimmy Olgeni
ac30cb067f Remove indefinite articles from COMMENT where I'm maintainer. 2014-06-08 13:14:42 +00:00
Jimmy Olgeni
f8537de986 Upgrade to version 9.2.
- On FreeBSD < 9 (amd64) it will USE_GCC to get a newer assembler.
- Add LICENSE.
- Upgrade LIB_DEPENDS format.
2014-06-08 10:12:58 +00:00
Vanilla I. Shu
2806cce176 Stagify. 2014-06-08 07:02:48 +00:00
Vanilla I. Shu
3ef85d598a Stagify. 2014-06-08 06:57:17 +00:00
Vanilla I. Shu
2994016b1f 1: Upgrade to 9.5.1.
2: Stagify.
3: add USE_GCC
2014-06-08 05:38:08 +00:00
Johan van Selst
6a6637fba6 Fix compilation issue with (certain versions of) clang 2014-06-07 14:50:56 +00:00
Marcus von Appen
00cf5a8d86 Micro Python is a lean and fast implementation of the Python 3 programming
language that is optimised to run on a microcontroller.

WWW: http://www.micropython.org
2014-06-07 11:16:08 +00:00
Johan van Selst
e673bfdd9b Make Caudium version automatically depend on the version of Pike 7.8 2014-06-07 10:00:54 +00:00
Johan van Selst
6e8832f17d Update to Pike 7.8.866 (stable release) 2014-06-07 09:49:30 +00:00
Guido Falsi
f5eb8a5c76 - Update to 1.9.2
- Stagify

PR:		190385
Submitted by:	lichray@gmail.com (maintainer)
2014-06-06 21:06:12 +00:00
Baptiste Daroussin
c4201de7e6 Fix license perms to allow package distribution
Reported by:	theraven
2014-06-06 14:37:25 +00:00
Gerald Pfeifer
cf0a779a73 Update to the 20140604 snapshot of GCC 4.9.1. 2014-06-06 14:31:28 +00:00
Carlo Strub
858ba02fba - Support staging
- Strip binaries
- Pet portlint

PR:		190504
Submitted by:	vmagerya@gmail.com (maintainer)
2014-06-05 21:55:01 +00:00
Dag-Erling Smørgrav
aeeef46ff9 Add CPE information.
With hat:	ports-secteam
2014-06-04 16:54:52 +00:00
Dag-Erling Smørgrav
8fcb1fe02b Add CPE information.
With hat:	ports-secteam
2014-06-04 16:54:47 +00:00
Dag-Erling Smørgrav
8d617af08f Add CPE information.
With hat:	ports-secteam
2014-06-04 16:54:43 +00:00
Dag-Erling Smørgrav
634abfe2bd Add CPE information.
With hat:	ports-secteam
2014-06-04 16:54:38 +00:00
Dag-Erling Smørgrav
5ac95923a4 Add CPE information.
With hat:	ports-secteam
2014-06-04 16:54:32 +00:00
Dag-Erling Smørgrav
ce9d32b17c Add CPE information.
With hat:	ports-secteam
2014-06-04 16:54:27 +00:00
Dag-Erling Smørgrav
fcb2a2b3b9 Add CPE information.
With hat:	ports-secteam
2014-06-04 16:54:22 +00:00
Martin Wilke
4ce62690b6 - Update to 1.71.17
PR:		189651
Approved by:	maintaner timeout
2014-06-04 10:31:58 +00:00
Vanilla I. Shu
59f65c82ef Upgrade v8-devel to 3.27.7. 2014-06-03 12:45:27 +00:00
Alex Dupre
0d50cb1e16 Update to 5.4.29 release. 2014-06-03 12:17:51 +00:00
Alex Dupre
08c4cb2e68 Update to 5.5.13 release. 2014-06-03 12:17:37 +00:00
Alex Dupre
8988ca1666 Update to 2.11.1 release. 2014-06-03 10:52:04 +00:00
Alex Dupre
ac69796de9 Update to 2.11.1 release.
PR:		190089
Submitted by:	maintainer
2014-06-03 10:51:48 +00:00
Pietro Cerutti
e35cf64a81 - Update to 05_20140601
* The compiler has been refactored. Code has been moved from s7c.sd7
    to several compiler libraries. The compiler libraries are licensed
    with the GPL and can be found in seed7/lib/comp. The refactored
    compiler is the first compiler of the 3.0 series.
  * The chapter in the manual about the foreign function interface has
    been improved.
  * Checks for parse and str have been added to chkflt.sd7 and
    chkint.sd7.
  * In chkccomp.c code has been moved from main() to the new functions
    numericSizes and numericProperties.
  * Usages of the macro logError have been added to cmd_rtl.c and
    cmd_unx.c.
  * The stack size defined in mk_mingc.mak, mk_mingw.mak, mk_msys.mak
    and mk_nmake.mak has been changed from 4194304 to 8388608.
  * The function cstri_buf_to_stri has been added to striutl.c.
  * The generation of float literals in the compiler has been improved
    to avoid that precision is lost.
  * Interpreter and compiler have been improved to support the actions
    BLN_EQ and BLN_NE.
2014-06-03 08:07:48 +00:00
Dmitry Marakasov
217f3a76de - Convert USE_XZ to USES
- Switch to USES=libtool, drop .la files
- Strip libraries
- Fix broken shebang
2014-06-03 01:24:32 +00:00
Dmitry Sivachenko
0e33c724df Update python34 port 3.4.0 --> 3.4.1.
Reviewed by:	koobs
2014-06-02 12:36:51 +00:00
Johan van Selst
a27b9cc455 Update SWI Prolog to 6.6.6 2014-06-02 11:44:33 +00:00
Gerald Pfeifer
18c5873dfa Update to the 20140601 snapshot of GCC 4.10.
This has a workaround for clang pretending to be GCC but not being
compatible, so we no longer need to require GCC to build, even on
amd64.
2014-06-02 06:54:29 +00:00
Gerald Pfeifer
f491366803 Update to the 20140528 snapshot of GCC 4.9.1. 2014-06-02 00:46:52 +00:00
Cy Schubert
86fb5f8490 Specify defaults for amd64. This resolves an object.d not found error. 2014-06-01 22:02:54 +00:00
Cy Schubert
f41e4b369c Correct dmd1.conf filename. 2014-06-01 21:46:06 +00:00
Ruslan Makhmatkhanov
abf3f59479 lang/python-doc-html: remove python31 remnants 2014-06-01 19:24:51 +00:00
Rene Ladan
6f35db0a8b Remove lang/python31, it expired on 2014-06-01 2014-06-01 15:46:59 +00:00
Pawel Pekala
70c9af17a6 - Add staging support
- Unmute install commands
2014-06-01 14:26:42 +00:00
Pawel Pekala
393c4306b3 - Add staging support, allow it as normal user
- Remove leading article from COMMENT
2014-06-01 14:18:40 +00:00
Rene Ladan
5ee7fa75d6 Remove expired ports:
2014-06-01 lang/ocaml-doc: Documentation is now included in lang/ocaml
2014-06-01 lang/ocaml-examples: Outdated and discontinued; new examples are in lang/ocaml
2014-06-01 lang/gnat-aux: Superceded by gcc4.9-based lang/gcc-aux, use it instead
2014-06-01 14:16:40 +00:00
Pawel Pekala
8a41ef31ee - Add staging support, strip binaries
- Remove leading article from COMMENT
- Use canonical names for patches
2014-06-01 14:02:15 +00:00
Pawel Pekala
c22c291886 - Add staging support
- Remove leading article from COMMENT
2014-06-01 13:27:31 +00:00
Pawel Pekala
b1d06a5e25 Add staging support 2014-06-01 13:26:35 +00:00
Pawel Pekala
0581283bc5 One OPTIONS_DEFINE too much 2014-06-01 13:10:23 +00:00
Pawel Pekala
bca05c2bf2 - Add staging support
- Define available options
2014-06-01 13:07:52 +00:00
Pawel Pekala
0be4595fc2 Add staging support 2014-06-01 12:50:31 +00:00
Pawel Pekala
93bd830d2d - Port is stage safe
- Remove leading article from COMMENT
- Use options helpers
2014-06-01 12:46:53 +00:00
Pawel Pekala
73d9870236 Add staging support 2014-06-01 12:35:40 +00:00
Pawel Pekala
0a88efc19b - Port is stage safe
- Use options subs, helpers
2014-06-01 12:34:53 +00:00
Pawel Pekala
5df9af412a - Add staging support
- Convert to new options framework
- Drop RUN_DEPENDS on javavmwrapper, pulled in by java port
- Use PORDATA instead of generated plist
- Fix WWW line
2014-06-01 11:49:31 +00:00
Pawel Pekala
e28e8e0e5d - Add staging support
- Convert to new options framework
- Use DATADIR, DOCSDIR to make things simplier
2014-06-01 11:47:14 +00:00
Pawel Pekala
9265ea3c6e Add staging support 2014-06-01 11:45:28 +00:00
Pawel Pekala
e7f6bc453c - Fix build on 10+ by respecting CC, CFLAGS
- Add staging support
- Convert to new options framework

MFH:		2014Q2
2014-06-01 09:07:52 +00:00
Antoine Brodin
02fe5fe0cc Mark BROKEN: Dysfunctional
All ports depending on this one fail to build:
    devel/asdlgen
    devel/ml-doc
    devel/sml_tk
    math/isabelle
    textproc/sml-fxp

Reported by:	pkg-fallout
With hat:	portmgr
2014-06-01 09:00:05 +00:00
John Marino
551b6c6c9b lang/gcc410: Turn off JAVA option completely for DragonFly
Recently DragonFly was added as an officially supported platform on
GCC, providing OOTB support for C, C++, ObjC, and Fortran.  However,
the Java lang does not build, even if the first failure (boehm-gc) is
fixed.

Adding Makefile.DragonFly is the cleanest and least intrusive way I could
remove the JAVA option (there is no EXCLUDE_OPTION_${OPSYS} support in
bsd.options.mk)

Approved by:	maintainer (gerald@)
2014-05-31 23:09:39 +00:00
Pawel Pekala
dd070abe1a Add staging support 2014-05-31 20:17:58 +00:00
Pawel Pekala
a6587a5a45 - Add staging support
- Convert to USES=tar:bzip2
2014-05-31 20:00:55 +00:00
Pawel Pekala
8b733f875c - Add staging support
- Convert to new options framework
- Use new LIB_DEPENDS format, USES=tar:bzip2
2014-05-31 19:59:23 +00:00
Pawel Pekala
599724f3bd - Add staging support
- Convert to new options framework
2014-05-31 19:33:48 +00:00
Pawel Pekala
87a2c9b1d2 - Add staging support
- Remove leading article from COMMENT
2014-05-31 19:30:59 +00:00
Pawel Pekala
0d2ace070a - Add staging suport, allow it as normal user
- Remove leading article from COMMENT
- Strip library
2014-05-31 19:20:37 +00:00
Tim Bishop
a7a73047d3 Stage support.
PR:		ports/190384
Submitted by:	Julian H. Stacey <jhs@berklix.com> (maintainer)
2014-05-30 22:08:55 +00:00
Steve Wills
1eafa82762 - Remove uneeded include of bsd.port.options.mk
Reported by:	antoine
Pointyhat to:	swills
2014-05-30 19:20:24 +00:00
Steve Wills
07e2d47f53 - Force use of libreadline from ports rather than base, in order to avoid
unexpectedly getting readline from ports if it's already installed.
- Add patch to work with newer libreadline
- Provide an option to use libedit from ports, avoiding the libedit in base.
- Note 1: The patch to work with newer libreadline is only applied in the
  libreadline case since it actually breaks building with libedit.
- Note 2: libreadline is not BSD licensed and while libedit would be
  preferable, it seems to have issues with UTF8 still, see ruby bug 9204. Once
  that's resolved, we can make libedit the default.

PR:		ports/187928 [1] (based on)
PR:		ports/188077 [2] (based on)
Submitted by:	Shin-ya Murakami <murashin@gfd-dennou.org> [1]
Submitted by:	Christoph Moench-Tegeder <cmt@burggraben.net> [2]
Obtained from:	http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/readline/readline.c?r1=43458&r2=45225 (ruby upstream)
MFH:		2014Q2
2014-05-30 18:34:29 +00:00
Andrej Zverev
7abf4c90e9 revert previous changes
Requested by:	mat@
2014-05-30 03:55:51 +00:00
Andrej Zverev
91f65ad907 Restore behavior for internal EU::MM - make copy .bs files even if they
are empty.
2014-05-29 18:58:08 +00:00
John Marino
ac4ac4ee84 lang/clisp: Unbreak by specifying proper iconv
Adding a configure argument for libiconv make clisps build with either
libc or libiconv as appropriate.  Fix verified on Redports on all supported
platforms.

PR:		ports/187282
Submitted by:	Robert Cina
Fixed by:	marino
Approved by:	maintainer timeout (due to impending death of port)
Approved by:	portmgr (implicit)

Note that this port is still going to die in a few weeks, so I am not
bothering to stage it.
2014-05-29 09:07:21 +00:00
Brooks Davis
a6cc458d9b Update to a new snapshot including CHERI stack fixes from the weekend. 2014-05-28 16:47:30 +00:00
Dmitry Marakasov
4810808278 - Stagify
- Convert to USES=libtool
- Use new LIB_DEPENDS syntax
- Optionize docs installation
- Use canonical patch names
2014-05-27 19:54:28 +00:00
Mathieu Arnold
d20471ec4f I Forgot to update the CONFLICTS.
Submitted by:	az
Sponsored by:	Absolight
2014-05-27 19:41:58 +00:00
Dmitry Marakasov
811f3747d9 - Switch to USES=libtool
- Strip libraries
2014-05-27 13:19:50 +00:00
Baptiste Daroussin
248847f341 Switch to USES=scons 2014-05-27 12:23:36 +00:00
Mathieu Arnold
ca7f62bffc Add perl 5.20.0.
Changes:	http://search.cpan.org/dist/perl-5.20.0/pod/perldelta.pod
Sponsored by:	Absolight
2014-05-27 12:19:24 +00:00
Baptiste Daroussin
2ece4105ac Fix tolua++ symlink 2014-05-27 08:39:50 +00:00
Mathieu Arnold
e78d28a488 Ship Perl with its real licenses, and not the stock ones.
While there, sort the plist according to makeplist.

Sponsored by:	Absolight
2014-05-26 22:55:50 +00:00
Antoine Brodin
38406fbf26 Unbreak index 2014-05-26 22:16:18 +00:00
Gerald Pfeifer
f87a3fc41b On amd64 systems with clang, we still need to build with GCC for the time
being since clang pretends it is GCC, but cannot cope with all GCC specific
input.

Reported by:	Andrzej Tobola <ato@iem.pw.edu.pl>
Tested with:	redports
2014-05-26 21:11:38 +00:00
Baptiste Daroussin
a1a7034808 Add forgotten patch
Reported by:	many
2014-05-26 18:29:33 +00:00
Antoine Brodin
125764e022 Attempt to fix INDEX
With hat:	portmgr
2014-05-26 17:31:43 +00:00
Baptiste Daroussin
d4abd5db0f LUA_BINDIR is not defined anymore given that lua is install in "normal" bindir 2014-05-26 16:17:26 +00:00
Baptiste Daroussin
e836ab008a Replace lang/lua with the new lang/lua51
lang/lua51 is working the same way lang/lua52, chase ports using lua 5.1
Make the default lua lua52
Make all lua ports using USES=lua

Approved by:	portmgr (implicit)
2014-05-26 15:28:28 +00:00
Martin Wilke
e2e772bd2a - Convert gmake,bzip2 to USES
Approved by:	portmgr
2014-05-26 14:47:56 +00:00
Baptiste Daroussin
87e16ac3ef Let's remove one hidden bsd.*.mk superseeded by USES=mono 2014-05-26 13:32:32 +00:00
Baptiste Daroussin
d1e4387ae1 Convert to USES=mono
With hat:	portmgr
2014-05-26 13:11:43 +00:00
Gerald Pfeifer
2a4457785f Update to the 20140525 snapshot of GCC 4.10.
This now again builds with clang, so we don't require GCC to build any
more.  (There was a latent non-determinism in GCC that lead to different
compilations.)
2014-05-26 13:09:06 +00:00
Baptiste Daroussin
28ec87158b Convert to USES=libtool
Use USES=compiler:c11 to enforce modern compiler (and clang version > 3.3)
Drop printing pkg-message it is done automatically by stage
Sharpen the sed on configure to fix in case of isinf it was making __thread testing hanging
Remove useless include of bsd.mono.mk
2014-05-26 12:55:44 +00:00
Gerald Pfeifer
a1ca7d805c Update to the 20140522 snapshot of GCC 4.8.4 which is pretty much the
GCC 4.8.3 release.
2014-05-26 12:23:18 +00:00
Baptiste Daroussin
1e279835ef Convert to USES=dos2unix
With hat:	portmgr
2014-05-26 08:44:34 +00:00
Gerald Pfeifer
b9416a1194 Update to the 20140514 snapshot of GCC 4.9.1. 2014-05-26 00:03:29 +00:00
Sunpoet Po-Chuan Hsieh
c13a4d1112 - Mark CONFLICTS_INSTALL with lang/guile2 2014-05-25 17:34:38 +00:00
Sunpoet Po-Chuan Hsieh
acc36afd2f - Add guile 2.0.11
- While I'm here:
  - Add PKGNAMESUFFIX to avoid PKGNAME collision
  - Mark CONFLICTS_INSTALL with lang/guile

GUILE, GNU's Ubiquitous Intelligent Language for Extension,
is a library that implements the Scheme language plus various
convenient facilities. It's designed so that you can link it
into an application or utility to make it extensible.  Our
plan is to link this library into all GNU programs that call for
extensibility.

WWW: http://www.gnu.org/software/guile/

PR:		ports/189239
Submitted by:	Muhammad Moinur Rahman <5u623l20@gmail.com>
2014-05-25 17:32:59 +00:00
John Marino
0ffe02b817 lang/gnat_util: Carry impunit.ad[bs] source files
The GNAT Programming Studio needs the impunit.ad[bs] files in order
to create a menu based on the gnat source code.  Just carry these
source files with the others that are used to build gnat_util and then
use the GPS port makefile to pull it in as needed.  A quick check with
poudriere indicates that ports dependent on gnat_util still build fine.
2014-05-24 21:46:07 +00:00
John Marino
364ab8781f lang/gnat_util: Add set_std_prefix and update_path symbols
Rather than require each user of libgnat_util to link in set_std_prefix
and update_path functions, let's assume each user needs the same version
of these functions and just add them directly to the library.

Adjust gnatcoll accordingly -- hack no longer necessary.
2014-05-22 21:44:51 +00:00
Martin Wilke
11cc13b23e - Update to 3.7
PR:		189235
Submitted by:	Maintainer
2014-05-21 05:26:27 +00:00
Tijl Coosemans
f191d6b887 Quote ${CC} and similar variables in MAKE_ARGS.
Reported by:	Dominic Fandrey <kamikaze@bsdforen.de>
2014-05-20 19:32:39 +00:00
Johan van Selst
98bce956f4 Deprecate Pike 7.6 in favour of Pike 7.8
Don't bother with staging

Approved by:	portmgr (implicit)
2014-05-20 18:11:35 +00:00
Alex Dupre
1fcbe508a4 Improve pkg-message for mod_php5.
Submitted by:	POINSOT Julien <poinsot.julien@gmail.com>
2014-05-19 15:41:29 +00:00
Pietro Cerutti
031ec1d25b - Update to 05_20140518
Changes:

  * Errors in con_wat.c and drw-dos.c have been fixed (thanks to
    "Rugxulo" for the help to fix them).
  * The function str in duration.s7i has been improved to work for
    negative durations.
  * The library tar.s7i has been improved to work with the old file
    format that does not use the magic value "ustar".
  * The function bigToInt16 has been added to big_rtl.c and big_gmp.c.
  * The macros with format strings in common.h have been renamed.
    Now the macros have shorter names (starting with FMT_ and F_).
    The macros define formats for various integer sizes. This formats
    are independend from the actual C compiler and C runtime library.
  * The function bigLog10 in big_rtl.c has been improved to work
    correctly when BIGDIGIT_SIZE is small.
  * The program chkccomp.c has been improved to define
    LOCALTIME_WORKS_SIGNED, when localtime can process negative times.
  * The program chkccomp.c has been improved to write the define
    directives to the file specified with the first parameter.
  * The function intParse in int_rtl.c has been improved to accept the
    most negative number.
  * The function timSetLocalTZ in tim_rtl.c has been changed to avoid
    raising an exception when LOCALTIME_WORKS_SIGNED is not defined and
    the time is before 1970-01-01. In this case the daylight saving
    time flag is set to FALSE.
2014-05-19 09:42:31 +00:00
Gerald Pfeifer
7808b54f13 Update to the 20140518 snapshot of GCC 4.10.
This includes the merger of the GCC wide-int development branch and fails
to build with clang on 10-i386 and 10-amd64 with two rather different
failure modes (stage 2/3 comparison failure and simple compilation error,
respectively) so for the time being require building with GCC while I am
working with upstream.
2014-05-19 03:11:42 +00:00
Carlo Strub
c07f138a13 PORTREVISION bump due to previous commit 2014-05-18 20:22:52 +00:00
Carlo Strub
17a9160297 Patch for 10.0-RELEASE and later build failures. Fixes a problem in bundled
Boehm GC configure script, which mistakes FreeBSD 1* for FreeBSD 1.* and
disables dynamic libraries.

PR:		ports/189004
Submitted by:	Jason Bacon <jwbacon@tds.net> (maintainer)
MFH:		2014Q2
2014-05-18 20:21:18 +00:00
Lev A. Serebryakov
0178d30e00 STAGEfy 2014-05-18 20:07:43 +00:00
Rui Paulo
3eefe378c6 Update clojure-mode.el to 2.1.1.
Reviewed by:	bapt
2014-05-18 19:26:23 +00:00
Wen Heping
2119f614d2 - Stage support
- Reset maintainer to ports@
2014-05-18 14:28:35 +00:00
Martin Wilke
b81ee0c6e5 - Package was rerolled in order to update manpages and documentation
PR:		187496
Submitted by:	ports fury
2014-05-18 06:33:34 +00:00
Eitan Adler
4b266091e0 Correctly handle lang/dmd1: the port should *not* define LEGAL_PORT but should instead correctly define NO_PACKAGE 2014-05-17 07:28:44 +00:00
John Marino
795fc4961d lang/asis: Upgrade version 2013 => 2014
The annual Adacore release happened!
2014-05-15 18:40:10 +00:00
Alex Dupre
59476aaaf8 Fix build of xmlrpc extension. 2014-05-15 08:08:23 +00:00
Jimmy Olgeni
76aba72b29 Deprecate clojure-contrib. It was replaced upstream by the new
modular contrib libraries.
2014-05-14 13:20:58 +00:00
Alex Dupre
f998262c11 Fix build of a few extensions. 2014-05-14 10:31:49 +00:00
Alex Dupre
127fd80e2a Fix builds of a few extensions. 2014-05-14 10:20:08 +00:00
John Marino
2ba2db697e lang/gcc-aux: Bring in latest diffs-*
I should have done this when I bumped the port port earlier.  A few
of the changes to the diff-* files directly affect FreeBSD although
most are results of other platforms (NetBSD, OpenBSD mainly)

The most invasive change was exchanging strcpy and printf for their
"n" versions.  It was to make OpenBSD happy but the code is better
for it.
2014-05-13 21:19:35 +00:00
Edwin Groothuis
71642c89c1 Fix stagification 2014-05-13 21:13:31 +00:00
David Naylor
6cf2ade1f7 Update lang/pypy-devel to 2.3.
Due to reported regressions, only 2.3.1 will be merged to stable lang/pypy.

ChangeLog:
This release updates the stdlib from 2.7.3, jumping directly to 2.7.6.

This release also contains several bugfixes and performance improvements,
many generated by real users finding corner cases. CFFI has made it easier
than ever to use existing C code with both cpython and PyPy, easing the
transition for packages like cryptography, Pillow(Python Imaging Library
[Fork]), a basic port of pygame-cffi, and others.
2014-05-13 19:01:16 +00:00
John Marino
5b38eae64f lang/gcc-aux: Require latest binutils for DF 3.6 and earlier
Based on observations from pkgsrc and recent failures on Dragonfly 3.6,
it appears that GCC 4.9 requires a linker from binutils 2.23 or later.
DF 3.6 uses binutils 2.22 while the master branch uses 2.24 by default.
This adds the binutils requirement for DF 3.6 and earlier.
2014-05-13 18:47:42 +00:00
Jimmy Olgeni
43b74b2b8b Add staging support and pet portlint. 2014-05-13 15:02:08 +00:00
Max Brazhnikov
2ec6f2d5e4 math/facile:
- bump PORTREVISION to trigger repackaging after recent ocaml update:
  the package is usable only with ocaml which was used to compile facile.

lang/ocaml:
- add upgrading notes for committers
2014-05-13 07:25:54 +00:00
Rui Paulo
5f71ca1dbd Fix spelling
Submitted by:	eadler
2014-05-13 07:16:42 +00:00
Pietro Cerutti
0b545030ba - Update to 05_20140420
Changes

  * The answer concerning Unicode support in the FAQ has been improved.
  * The chapters in the manual that describe the types integer,
    bigInteger, rational, bigRational and float have been improved.
  * The function log10 has been added to the libraries integer.s7i and
    bigint.s7i. This function computes the truncated base 10 logarithm.
  * The operator sci has been added to the libraries integer.s7i,
    bigInteger.s7i, bigrat.s7i and rational.s7i. This operator converts
    a number to a string in scientific notation. Halfway cases are
    rounded away from zero.
  * The function round10 has been added to the libraries rational.s7i
    and bigrat.s7i. It rounds halfway cases away from zero.
  * The function str has been improved in the libraries rational.s7i
    and bigrat.s7i. Now the function converts to a string with a
    decimal representation (e.g.: "1.25"). When repeating decimals are
    recognizend they are enclosed in parentheses.
  * The operator digits has been improved in the libraries rational.s7i
    and bigrat.s7i. Now the operator rounds halfway cases away from
    zero.
  * Documentation comments have been improved in bigint.s7i, float.s7i,
    rational.s7i, bigrat.s7i, char.s7i, big_gmp.c and fltlib.c.
  * Definitions of the constants integer.first and integer.last have
    been added to integer.s7i.
  * In bigrat.s7i and rational.s7i the function reduce has been
    improved to accept Infinity and NaN.
  * The function strDateTime has been added to time.s7i.
  * A definition of INTTYPE_DECIMAL_SIZE has been added to s7c.sd7 and
    common.h.
  * The function bigGcd in big_rtl.c has been improved to make sure
    that the greatest common divisor is positive or zero.
  * Checks for log10, **, +:= and -:= have been added to chkbig.sd7.
  * The checks for log2 have been improved and checks for log10 have
    been added to chkint.sd7.
  * Checks for the function str have been added to chkflt.sd7.
  * The compiler has been improved to use the functions
    bigIPowSignedDigit and bigGrowSignedDigit to optimize the operators
    **, +:= and -:= for bigInteger operands.
  * The compiler has been improved to support the actions INT_LOG10 and
    BIG_LOG10.
  * The function isPureFunction in the compiler has been improved.
  * The functions bigGrowSignedDigit and bigLog10 have been added to
    big_rtl.c and big_gmp.c.
  * The program chkccomp.c has been improved to write definitions of
    the macros isinf, DOUBLE_DECIMAL_EXPONENT_DIGITS, FLOAT_STR_FORMAT,
    FLOAT_STR_LARGE_NUMBER, DOUBLE_STR_FORMAT, DOUBLE_STR_LARGE_NUMBER,
    FLOAT_MANTISSA_FACTOR, FLOAT_MANTISSA_SHIFT, DOUBLE_MANTISSA_FACTOR
    and DOUBLE_MANTISSA_SHIFT.
  * The functions fltDgts and fltSci in flt_rtl.c have been changed to
    raise RANGE_ERROR when the precision is negative.
  * The function fltStri in flt_rtl.c has been improved to write a
    reasonable number of fractional digits.
  * The functions getMantissaAndExponent, setMantissaAndExponent and
    doubleToCharBuffer have been added to flt_rtl.c.
  * The function intLog10 has been added to int_rtl.c.
  * The function stri_to_wstri has been renamed to stri_to_utf16.
  * The functions stri_to_wstri_buf and wstri_buf_to_stri have been
    added to striutl.c.
2014-05-12 10:15:07 +00:00
Gerald Pfeifer
27403d6a03 Update to the 20140508 snapshot of GCC 4.8.3. 2014-05-12 00:14:24 +00:00
Antoine Brodin
03fa644557 Fix packaging after IODBC / UNIXODBC changes
Reported by:	pkg-fallout
2014-05-11 20:13:14 +00:00
Rui Paulo
76842920af Add a new port py-clojure.
A implementation of Clojure in pure (dynamic) Python.

Reviewed by:	bapt
Approved by:	bapt
2014-05-11 17:12:11 +00:00
Jimmy Olgeni
5d9d62d8d5 LICENSE is actually GPLv3. 2014-05-11 15:41:32 +00:00
Jimmy Olgeni
fa47c71025 Upgrade to version 10.6.0.
- Add LICENSE
- Use new LIB_DEPENDS syntax
- Remove stray MAN1
2014-05-11 15:37:54 +00:00
Jimmy Olgeni
0a88c3bd82 Upgrade to version 1.3.1; take over maintainership.
PR:		ports/187853
Submitted by:	olgeni
Approved by:	maintainer timeout
2014-05-11 14:13:06 +00:00
Antoine Brodin
636287c888 Maintainer no longer wishes to maintain those ports
With hat:	portmgr
2014-05-10 22:06:22 +00:00
Gerald Pfeifer
a7541ebddc Update to the 20140507 snapshot of GCC 4.9.1. 2014-05-10 21:38:56 +00:00
Stephen Montgomery-Smith
a3e0d7eda7 - Chase revision 353604 to graphics/plotutils.
See:    http://svnweb.freebsd.org/ports?view=revision&revision=353604
2014-05-10 21:17:45 +00:00
Gerald Pfeifer
ae64303b5c Update to the 20140504 snapshot of GCC 4.10. 2014-05-10 21:11:27 +00:00
Max Brazhnikov
90e380e1cb KDE/FreeBSD team presents KDE SC 4.12.5 and KDE Workspace 4.11.9!
deskutils/kdepim4:
- Remove no longer needed patch, the problem was fixed since Qt 4.8.4.

The area51 repository features commits by rakuco and makc.
2014-05-10 19:43:14 +00:00
Antoine Brodin
2abc8d688e Reset a few maintainers
<adam.freebsd@fastmail.fm>: host in1-smtp.messagingengine.com[66.111.4.72]
    said: 550 5.1.1 <adam.freebsd@fastmail.fm>: Recipient address rejected:
    User unknown in local recipient table (in reply to RCPT TO command)

<dnscheckengine-port@academ.com>: host ASPMX.L.GOOGLE.com[74.125.131.26] said:
    550-5.1.1 The email account that you tried to reach does not exist. Please

<kawahara@nlp.kuee.kyoto-u.ac.jp>:
Sorry, no mailbox here by that name. (#5.1.1)

<hnsmaster@h14m.org>: Host or domain name not found. Name service error for
    name=h14m.org type=AAAA: Host found but no data record of requested type

    <jre@vineyard.net>: Recipient address rejected: User unknown in virtual
    mailbox table (in reply to RCPT TO command) (in reply to RCPT TO command)

<gawrilow@math.tu-berlin.de>: host mail.tu-berlin.de[130.149.7.33] said: 550
    Recipient verify failed (in reply to RCPT TO command)

<mico@bsd.hu>: host mail.datacast.hu[195.70.49.210] said: 550 5.1.1
    <mico@bsd.hu>: Recipient address rejected: User unknown in virtual mailbox

<gogo@cs.uni-sb.de>: host mail.cs.uni-sb.de[134.96.254.200] said: 550 5.1.1
    <gogo@cs.uni-sb.de>... User unknown (in reply to RCPT TO command)

<mickey@enforcer.cc>: Host or domain name not found. Name service error for
    name=keep.yourmail.yuk type=AAAA: Host not found

<lucio@zetasolucoes.com.br>: host ASPMX.L.GOOGLE.COM[2607:f8b0:400c:c01::1a]
    said: 550-5.1.1 The email account that you tried to reach does not exist.

<luke@novum.am.lublin.pl>: Host or domain name not found. Name service error
    for name=novum.am.lublin.pl type=AAAA: Host not found

<aihal@users.sourceforge.net>: host mx.sourceforge.net[216.34.181.68] said: 550
    unknown user (in reply to RCPT TO command)

With hat:	portmgr
2014-05-10 17:48:13 +00:00
Antoine Brodin
26e41fa9ff Maintainer no longer wishes to maintain those ports
With hat:	portmgr
2014-05-10 16:09:48 +00:00
Dmitry Marakasov
ae38952ef3 - Support staging
- Optionize
2014-05-10 00:23:49 +00:00
Dmitry Marakasov
59b098fcb3 - Support staging
- Convert USE_GMAKE to USES
- Use new LIB_DEPENDS syntax
- Remove redundant OPTIONS_DEFAULT
- Convert single-line pkg-plist to PLIST_FILES
- Remove Author lines
2014-05-09 23:28:12 +00:00
Sunpoet Po-Chuan Hsieh
5dab9dc944 - Add LICENSE
- Pass maintainership to submitter

PR:		ports/189335
Submitted by:	Muhammad Moinur Rahman <5u623l20@gmail.com>
2014-05-09 03:51:22 +00:00
Sunpoet Po-Chuan Hsieh
f20ebf7c68 - Add LICENSE
- Pass maintainership to submitter

PR:		ports/189334
Submitted by:	Muhammad Moinur Rahman <5u623l20@gmail.com>
2014-05-09 03:51:17 +00:00
Johan van Selst
b9034d8ac2 - Update to Pike 7.8.852
- Stagify
2014-05-08 17:00:41 +00:00
Dmitry Marakasov
dd660ea58d - Convert USE_BZIP2 to USES 2014-05-07 18:21:33 +00:00
Johan van Selst
b79f8d8602 - Move lang/open-cobol to lang/gnu-cobol to reflect project changes
- Adopt port
2014-05-07 16:13:10 +00:00
Johan van Selst
a6e11f3927 - Deprecate obsolete ocaml-doc and -examples ports
- Stagify, because it is not allowed to depcrecate unstaged ports
2014-05-07 15:23:18 +00:00
John Marino
c1d7b20915 lang/ocaml: Fix NO_PROFILE setting and native compiler for DragonFly
The ocaml port was not respecting a NO_PROFILE definition in make.conf,
which causes a stage check failure (missing files) if it is set. Improve
that logic and patch the configure script in numerous places to support
building the native code compiler on DragonFly.  This is one of those
famous ports that think all BSDs have the pattern "bsd" in their target
triplet.

Continued under PR: ports/188158
2014-05-07 08:27:28 +00:00
John Marino
bf118c8e9d lang/gnat-aux: Update deprecation message to reflect current affairs
The latest gcc-aux compiler is now based on gcc 4.9.  The 4.7-based
compiler is still available at lang/gcc47-aux though.  Note that
this port will be deleted in less than one month from now.
2014-05-06 19:06:47 +00:00
Brooks Davis
bde4517707 Update to pick up recent LLDB and MIPS assembler improvements.
Mark broken on platforms where the C++11 compiler isn't clang as gcc is
currently failing and current consumers almost certainly run 10.
2014-05-05 22:09:48 +00:00
Johan van Selst
213ca65426 Update to Yorick 2.2.03 2014-05-05 19:56:24 +00:00
Baptiste Daroussin
f4f46a920e Fix unixODBC vs libiodbc conflicts
Always rely on unixODBC each time a port is looking for libodbc.so
Remove odbc compat from libiodbc
This allows to install both kde and gnome at the same time

While here:
- Convert libiodbc to USES=libtool
- Convert a bunch of libiodbc dependencies to USES=libtool
- Chase libiodbc.so shlib change
- Stagify some ports
- Convert some ports to USES=pgsql

Discussed with:	rakuco (kde)
With hat:	portmgr
2014-05-05 16:24:00 +00:00
John Marino
4991917f1b lang/rust: Couple OPSYS with OSVERSION (Unbreaks DragonFly) 2014-05-05 15:31:20 +00:00
Pietro Cerutti
474f608c9d - Use the sample configuration file if the actual one is not available.This
makes the wrapper usable right after make install.

PR:		189359
Submitted by:	Thierry Thomas <thierry@FreeBSD.org>
2014-05-05 13:57:35 +00:00
Baptiste Daroussin
4a4ec28d37 Convert all :U to :tu and :L to :tl
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)

bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore

Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier

With hat:	portmgr
2014-05-05 09:45:36 +00:00
Rene Ladan
32e92194b7 Remove expired ports:
2014-04-30 x11-toolkits/gigi: Does not compile on 10 or higher
2014-04-30 net/asterisk-oh323: Depends on broken and unsupported asterisk14
2014-04-30 net/asterisk14: Broken and unsupported
2014-04-30 net/asterisk14-addons: Depends on broken and unsupported asterisk14
2014-04-30 ports-mgmt/pkg_install: Replaced by ports-mgmt/pkg
2014-05-01 x11-drivers/xf86-input-magictouch: Does not compile
2014-05-01 x11-drivers/xf86-video-cyrix: requires pciVideoPtr typedef
2014-05-01 x11-drivers/xf86-video-sis-intel: requires pciVideoPtr typedef
2014-05-01 net/py-spreadmodule: Depends on expired net/spread
2014-05-01 net/p5-Spread-Message: Depends on expired net/spread
2014-05-01 net/p5-POE-Component-Spread: Depends on expired net/spread
2014-05-01 net/p5-Spread-Session: Depends on expired net/spread
2014-05-01 sysutils/wmmemload: Broken
2014-05-01 lang/ml-pnet: Alpha-quality abandonware - Decommissioned Dec 2012 - Use mono
2014-05-01 lang/treecc: PNET dependency decommissioned Dec 2012
2014-05-01 lang/pnetlib: Alpha-quality abandonware - Decommissioned Dec 2012 - Use mono
2014-05-01 lang/pnet-base: Alpha-quality abandonware - Decommissioned Dec 2012 - Use mono
2014-05-01 benchmarks/pnetmark: PNET dependency decommissioned Dec 2012
2014-05-01 lang/pnet: Alpha-quality abandonware - Decommissioned Dec 2012 - Use mono
2014-05-01 x11-wm/stumpwm: Broken for more than 4 months
2014-05-01 sysutils/cpupowerd: Not maintained from upstream anymore and only supports ancient AMD K8.
2014-05-01 net/pchar: Obsolete, abandoned
2014-05-03 x11-fonts/texcm-ttf: Should be replaced by x11-fonts/stix-fonts
2014-05-04 10:51:02 +00:00
Tijl Coosemans
ff57a36a58 audio/sdl_sound:
- USES=libtool.
- Strip library.
- Replace patch+reinplace with a single reinplace.
- Remove a patch so we use the upstream library name again.  Bump
  PORTREVISION on all dependent ports.

games/alephone:
- USES=gmake tar:bzip2.
- Remove unneeded PKG_CONFIG variable.
- Staging.
- New LIB_DEPENDS syntax.

games/asc:
- USES=libtool.

games/gltron:
- New LIB_DEPENDS syntax.
- USES=gmake.
- Remove references to PTHREAD_CFLAGS and PTHREAD_LIBS.
- Use option helpers.
- Staging.

lang/kroc: (still BROKEN due to use of "python" command)
- New LIB_DEPENDS syntax.
- USES=pathfix tar:bzip2.
- Staging.
- Replace patches with post-patch.
- Replace MAKE with MAKE_CMD.

lang/smalltalk:
- USES=libtool tar:xz.
- Use BROKEN_sparc64.
2014-05-03 18:58:57 +00:00
Johan van Selst
2b79a7cec5 Update to SWI Prolog 6.6.5 2014-05-03 14:40:24 +00:00
Gerald Pfeifer
f7315739d9 Update to the 20140430 snapshot of GCC 4.9.1. 2014-05-02 21:59:15 +00:00
Florian Smeets
e9fa73c505 - Fix CVE-2014-0185 via patch until 5.3.29 is released
- Use DEFAULT_VERSIONS [1]

PR:		ports/188061 [1]
Submitted by:	Spil <spil.oss@gmail.com> [1]
MFH:		2014Q2
2014-05-02 17:48:14 +00:00
Tijl Coosemans
dd6f9aecd2 Convert graphics/sdl_gfx to USES=libtool. Also set USE_AUTOTOOLS because
upstream forgot to regenerate the build scripts.  This makes the build use
the correct version information and causes a library version bump.  Use
this opportunity to use USES=libtool instead of USES=libtool:oldver.
Bump PORTREVISION on all dependent ports and convert them to USES=libtool
where needed.  Also use USES=(gmake, pathfix, tar) and new LIB_DEPENDS
syntax here and there.

games/freedink-engine:
- Option helpers.
- Staging.
- Use dirrmtry for locale directories.

games/oolite:
- Staging.
- Replace ECHO with ECHO_CMD.
- Don't use GNUSTEP_PREFIX to install files because it expands to
  LOCALBASE rather than PREFIX.

games/openssn:
- Remove USES=desktop-file-utils.  No MimeType field in desktop file.
- Staging.
- Install files in standard DATADIR.

games/xblast:
- Use proper options.
- Staging.
- Patch configure so normal make install can be used instead of do-install.
- Replace TAR | TAR with COPYTREE_SHARE.
2014-05-02 14:16:49 +00:00
Andrey A. Chernov
a932229a98 Back out prev commit since it does nothing, because F_OGETLK/F_OSETLK are
hidden under names F_GETLK/F_SETLK here.
2014-05-02 06:36:57 +00:00
Alex Dupre
3b1e743b3a Update to 5.4.28 release. 2014-05-02 06:18:30 +00:00
Andrey A. Chernov
a5b7b50d70 For i386 add missing field to flock struct (already done for amd64) 2014-05-02 06:03:10 +00:00
Andrey A. Chernov
231f75037c Fix building with clang on i386 (clang assume -Wl,-rpath and not -R) 2014-05-01 14:00:05 +00:00
Alex Dupre
df6451a093 Update to 5.5.12 release. 2014-05-01 10:36:34 +00:00
Baptiste Daroussin
fd1bb952c7 Partially revert r352688 to actually do what was stated in the commit log
With hat:	portmgr
Pointyhat to:	bapt
2014-04-30 16:55:22 +00:00
Baptiste Daroussin
ee4b32ebad chase libedit change with a simple bump as the port build system does not seems to support destdir at all
With hat:	portmgr
2014-04-30 16:52:58 +00:00
Gerald Pfeifer
84c431b34d Merge updates from lang/gcc47 (and similarly lang/gcc48):
- Add pkg-message that references the need to use -Wl,-rpath=... . [1]

 - Replace USE_BZIP2 by USES=tar:bzip2.

 - No longer install rebuild-gcj-db47 (which requires bash among others)
   and its man page.

Bump PORTREVISION.

PR:		185902 [1]
2014-04-29 23:53:07 +00:00
Gerald Pfeifer
ee2c172bf7 Update to the 20140427 snapshot of GCC 4.10. 2014-04-29 22:23:53 +00:00
Sunpoet Po-Chuan Hsieh
0368e54506 - Add LICENSE
- Add NLS option
- Pass maintainership to submitter
- While I'm here:
  - Simplify GUILE_VER
  - Remove OPTIONS_DEFAULT
  - USe NLS_CONFIGURE_ENABLE

PR:		ports/189115
Submitted by:	Muhammad Moinur Rahman <5u623l20@gmail.com>
2014-04-29 21:16:02 +00:00
Gerald Pfeifer
62770bd993 Update to the 20140424 snapshot of GCC 4.8.3. 2014-04-29 15:07:19 +00:00
Mark Linimon
dd65b2a458 Mark net-im/pidgin-facebookchat and lang/clisp as deprecated: upstream
development as ceased.  Reset maintainer.

Submitted by:	former maintainer
Approved by:	portmgr (antoine)
2014-04-29 02:13:29 +00:00
Gerald Pfeifer
f307be9612 Welcome GCC 4.10 aka lang/gcc410. This has recently branched from
GCC 4.9 development and is feature equivalent at this point.

The coming months, during stage 1 of GCC developemtn, there will be
many invasive and partially destablizing changes.  Any outfall will
be addressed in the second half of the release cylce.  Until then,
use at your own risk and file any bugs upstream.
2014-04-28 21:19:17 +00:00
Koop Mast
4b2a51b2c6 This is a three-part for building guile with clang (or with any other
modern compiler):

1) Use -fwrap in CFLAGS, since guile depends on integer overflows.
2) Fix grep + sed logic in guile-snarf.in to be compatible with the output
   of clang's preprocessor.  This is achieved by adding additional newlines
   before the ^^ delimiters, which guile-snarf depends on.
3) Similarly, in c-tokenize.c, clang's preprocessor outputs EOLs and hash
   marks in different places, confusing the lexer.  Simply don't output
   them to fix the problem.

While here strip binaries and libraries.

Submitted by:	dim@
2014-04-28 15:58:06 +00:00
Pietro Cerutti
1eb9d015ab - Fix packaging with non-standard OPTIONS 2014-04-28 09:08:58 +00:00
Pietro Cerutti
ac795fefd9 - Fix PLIST with non-standard OPTIONS
PR:		188712
Submitted by:	Allen Hewes <rallenh@hotmail.com>
2014-04-28 08:17:49 +00:00
Steve Wills
3321d2c734 - Update to 0.10
- Remove deprecated rustpkg functionality
- Stage improvements
- Add 10.x and 11.x compability
- Pet portlint

PR:		ports/188800
Submitted by:	Bartek Rutkowski <ports@robakdesign.com>
Approved by:	Jyun-Yan You <jyyou@cs.nctu.edu.tw> (maintainer)
2014-04-27 08:02:10 +00:00
John Marino
26df46ea63 lang/ocaml: Fix plist issues
These missing man page issues were seen on Redports and reported, then
disappeared after the final patch.  Unfortunately they weren't actually
addresses, so it's a mystery why Redports didn't continue to catch the
problem, nor the extra ocamldoc/custom directory (which is why the
ocamldoc/custom/.keep file original existed).

Add the 15 missing man pages to the plist and remove the empty directory
in the post-install target.  Strangely enough, Redports still shows an
8x pass.  I'm losing a lot of confidence in Redports results...

While here, remove the muting from the post-install target.  This is
against convention.

PR: ports/188158
2014-04-26 21:39:06 +00:00
John Marino
ae5ca3bbc1 lang/ocaml: Upgrade version 4.00.1 to 4.01.0 and stage
This is a significant update from the maintainer.  Not only has stage
support been added (and verified with an 8x pass on RedPorts), but
installed binaries are no longer stripped which was the cause of the
coccinelle malfunction seen on DragonFly.

Licensing was also defined, and the X11 build failure caused by the
use of the -R linker flag without the -Wl prefix has also been
rectified. [2]

PR:		ports/188158 [1]
Submitted by:	maintainer (Michael Gruenewald)

PR:		ports/188330 [2]
Submitted by:	madpilot
Approved by:	maintainer
2014-04-26 17:20:32 +00:00
John Marino
0ecd0495a8 lang/gcc-aux: Update from RC1 to Release 4.9.0
This should be the last update until Release 4.9.1 - the source tarballs
have been switched from snapshots to releases.
2014-04-26 09:57:01 +00:00
Rene Ladan
ce5e8e1754 Remove expired ports:
2014-04-23 emulators/mupen64-sdlinput: Use mupen64plus instead
2014-04-23 emulators/mupen64-sdlaudio: Use mupen64plus instead
2014-04-23 emulators/mupen64-tr64: Use mupen64plus instead
2014-04-23 emulators/mupen64-gln64: Use mupen64plus instead
2014-04-23 emulators/mupen64-sound: Use mupen64plus instead
2014-04-23 emulators/mupen64-rsp: Use mupen64plus instead
2014-04-23 emulators/mupen64-input: Use mupen64plus instead
2014-04-23 emulators/mupen64-glide: Use mupen64plus instead
2014-04-23 emulators/mupen64: Use mupen64plus instead
2014-04-23 emulators/mupen64-softgfx: Use mupen64plus instead
2014-04-23 emulators/mupen64-dummyaudio: Use mupen64plus instead
2014-04-23 emulators/mupen64-base: Use mupen64plus instead
2014-04-24 x11/emu: Broken, not staged
2014-04-24 lang/ruby-doc-stdlib: Upstream rerolls frequently, online docs work well
2014-04-24 21:44:24 +00:00
David Naylor
a39d5573ba Update my ports to be compliant with new USES framework and fix other issues.
Changes:
 * various: migrate USE_BZIP2 to USES=tar:bzip2
 * various: migrate USE_XZ to USES=tar:xz
 * multimedia/py-ffmpeg: add and prefer github (GH) as master site
 * ports-mgmt/portbuilder: specify license as BSD2CLAUSE (instead of just BSD)

Most ports are updated infrequently so a single batch commit is preferred over
collating changes per port.
2014-04-24 20:11:01 +00:00
Dmitry Marakasov
bd2a202a54 - Fix build w/clang
MFH:		2014Q2
2014-04-24 17:24:53 +00:00
Mathieu Arnold
cf28d260c6 Remove the last @comment $FreeBSD$ from plists.
With hat:	portmgr
Sponsored by:	Absolight
2014-04-24 16:26:48 +00:00
Brooks Davis
c2caee2b5b Actually use the python interpreter found by cmake. 2014-04-24 15:22:59 +00:00
Gerald Pfeifer
d88c741a38 Update to the 20140423 snapshot of GCC 4.9.1. This is basically the
GCC 4.9.0 release, but since we did not yet use the new way of labeling
snapshots as part of PORTVERSION we could not update to that directly
without using PORTEPOCH.  Going forward that will be possible.

Adjust DISTVERSION and GCC_VERSION to the new PORTVERSION scheme.
2014-04-24 00:03:48 +00:00
Brooks Davis
d96375b603 Don't install conflicting std*.h and varargs.h files. 2014-04-23 20:59:59 +00:00
Brooks Davis
9609fb978d Update to a new snapshot.
Add LLDB to the package now that is supports stage.

Add missing swig dependancy.

Fix wrapper script for prefixed command links.
2014-04-23 18:22:33 +00:00
Tijl Coosemans
aad09bc5e2 When linking a library libA with a library libB using libtool, if libB.la
exists, libtool will add all libraries libB.la refers to (dependency_libs
field) to the linker command line and store them in the dependency_libs
field of libA.la.  So everything that subsequently links with libA will also
link to these extra libraries.  This causes too much overlinking.

This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs
field in .la libraries during staging.  However, because .la libraries have
very limited use when dependency_libs is empty it makes sense to completely
remove them during staging.

So with this commit USES=libtool is modified to remove .la libraries and a
new form (USES=libtool:keepla) is introduced in case they need to be kept
(dependency_libs is still emptied).

PORTREVISION is bumped on all ports with USES=libtool that install .la
libraries.  Most ports are also changed to add :keepla because .la
libraries have to be kept around as long as there are dependent ports with
.la libraries that refer to them in their dependency_libs field.  In most
cases :keepla can be removed again as soon as all dependent ports that
install .la libraries have some form of USES=libtool added to their
Makefile.

PR:		ports/188759
Exp-run:	bdrewery
Approved by:	portmgr (bdrewery)
2014-04-23 13:25:16 +00:00
Pietro Cerutti
6f2f8c48f1 - Fix build on < 8000000 (yacc doesn't have a -y option)
Reported by:	pkg-fallout
2014-04-23 11:47:25 +00:00
Dmitry Marakasov
a489318cbe - Update to 5.4
PR:		188884
Submitted by:	James Bailie <jimmy@mammothcheese.ca> (maintainer)
2014-04-23 01:20:43 +00:00
Pietro Cerutti
53abdbc4c5 - Update to 05_20140420
Changes:
  * The chapter in the manual about the foreign function interface has
    been improved.
  * A paragraph about regular expressions and lexical scanner functions
    has been added to the FAQ.
  * The handling of the actions CHR_CLIT and INT_STRI in the compiler
    has been improved. The string buffers for chrCLitToBuffer and
    intStrToBuffer use the correct alignment now.
  * In big_rtl.c the functions bigParseBasedPow2 and bigParseBased2To36
    have been added and bigParseBased has been changed to call them.
    This improves the conversion of a string to a bigInteger, when the
    base is a power of two. Valgrind measurements of the function
    bigParseBased in chkbig.sd7 show a speed improvement with a factor
    of 239.
  * The macros memcpy_to_strelem and memset_to_strelem (defined in
    striutl.h) have been turned into functions (defined in striutl.c).
  * The unrolling in memcpy_to_strelem and memset_to_strelem has been
    changed from 8 times to 32 times. This improves the performance
    for big data amounts by 16% (Measured with valgrind and gcc).
  * Usages of the macros memcpy_to_strelem and memset_to_strelem in
    bst_rtl.c, fil_rtl.c, soc_rtl.c and str_rtl.c have been turned into
    usages of the corresponding functions.
  * Calls of cstri_expand, ustri_expand, cstri_expand2 and
    ustri_expand2 in analyze.c, chr_rtl.c, flt_rtl.c, infile.c,
    str_rtl.c and striutl.c have been turned into calls of
    memcpy_to_strelem.
  * The functions (macros) cstri_expand, ustri_expand, cstri_expand2
    and ustri_expand2 have been removed from striutl.c and striutl.h.
  * The functions doCompileAndLink, compileAndLinkWithOptionsOk,
    compileAndLinkOk, appendToFile and detemineDatabaseDefines have
    been added to chkccomp.c. The function compilationOkay has been
    replaced by compileAndLinkOk.
2014-04-22 15:25:22 +00:00
Kubilay Kocak
5d7a9aceb6 lang/python{27,31,32}: Replace USE_XZ with USES=tar:xz
USE_XZ has been deprecated, replace it with the new USES value.

Python 3.3 and 3.4 ports have already been converted.
2014-04-22 14:37:04 +00:00
Kubilay Kocak
aab3da8d2a lang/python{31,32,33}: Fix stage/package as non-root
Copy the second part of a change previously made to python27 [1], to
python31, python32 and python33.

This fixes staging and packaging of these ports by a non-root user by
running ranlib on the archive prior to it being installed read-only.

While I'm here:

- python27: Add breadcrumbs and references to the patch header
- python34: Update breadcrumbs and references to the patch header

[1] https://svnweb.freebsd.org/ports?view=revision&revision=350207

Submitted by:	antoine
Reviewed by:	kwm, sbz
2014-04-22 12:14:26 +00:00
Brooks Davis
b4bbb4895c CHERI-Clang is a fork of the Clang compiler with support for the CHERI
(Capability Hardware Enhanced RISC Instructions) ISA.

It also has enhanced support for MIPS CPUs, particularly MIPS64.

Sponsored by:	DARPA, AFRL
2014-04-21 22:16:33 +00:00
Guido Falsi
ddfee5c9dd - Update to 1.6.0
Submitted by:	rpaulo (via email)
Approved by:	Jens Jahnke <jan0sch@gmx.net> (maintainer, via email)
2014-04-21 20:21:57 +00:00
Johan van Selst
6fdcdb7344 Add pkg-plist file, forgotten in previous commit
Bump PORTREVISION for good measure
2014-04-21 16:11:18 +00:00
Johan van Selst
3826f6bcb2 Add pkg-plist file, forgotten in previous commit
Bump PORTREVISION for good measure

Submitted by:	swills
Pointyhat to:	johans
2014-04-21 16:11:00 +00:00
Johan van Selst
98e5c24df8 - Update to CDuce 0.6.0 (works with modern ocaml)
- Minor cleanups
2014-04-21 13:05:13 +00:00
Johan van Selst
b307e9e6ef Fix installation on FreeBSD < 10
Avoid running undefined RM command on files outside STAGEDIR

Submitted by:   antoine
2014-04-21 12:29:40 +00:00
Gerald Pfeifer
480f645182 Update to the 20140419 snapshot of GCC 4.7.4.
Add pkg-message that references the need to use -Wl,-rpath=... . [1]

PR:		185902 [1]
2014-04-21 03:13:26 +00:00
Antoine Brodin
d199d55511 Mark broken: Fails to build
# "build" target here installs into /wrkdirs/usr/ports/lang/rubinius/work/stage/usr/local
rake aborted!
Gem::LoadError: You have already activated rake 10.3.1, but your Gemfile requires rake 10.1.1. Prepending `bundle exec` to your command may solve this.
/wrkdirs/usr/ports/lang/rubinius/work/rubinius-2.2.5/Rakefile:1:in `<top (required)>'
(See full trace by running task with --trace)
*** [do-build] Error code 1

Reported by:	pkg-fallout
2014-04-20 20:50:24 +00:00
Antoine Brodin
9bed5dc9f5 Mark broken: Fails to configure
-- Performing Test ELF_GETSHDRSTRNDX
-- Performing Test ELF_GETSHDRSTRNDX - Success
-- Found LibDwarf: /usr/local/lib/libdwarf.a
CMake Error at CMake/HPHPFindLibs.cmake:308 (message):
  You need to install binutils
Call Stack (most recent call first):
  CMake/HPHPSetup.cmake:46 (include)
  hphp/CMakeLists.txt:18 (include)
-- Configuring incomplete, errors occurred!

PR:		ports/188498
Reported by:	pkg-fallout
With hat:	portmgr
2014-04-20 20:44:48 +00:00
Antoine Brodin
296deb0da8 Mark broken: Fails to build
(cd ocaml_files; ocamlopt -for-pack Cduce_lib.Caml_cduce -c asttypes.mli outcometree.mli asttypes.ml config.ml misc.ml tbl.ml clflags.ml consistbl.ml warnings.ml terminfo.ml location.mli location.ml annot.mli longident.ml ident.ml path.ml primitive.ml types.ml btype.ml oprint.ml subst.ml predef.ml datarepr.ml env.ml ctype.mli ctype.ml printtyp.ml;\
ocamlopt -for-pack Cduce_lib -pack -o caml_cduce.cmx asttypes.cmx config.cmx misc.cmx tbl.cmx clflags.cmx consistbl.cmx warnings.cmx terminfo.cmx location.cmx longident.cmx ident.cmx path.cmx primitive.cmx types.cmx btype.cmx oprint.cmx subst.cmx predef.cmx datarepr.cmx env.cmx ctype.cmx printtyp.cmx; \
cp caml_cduce.cmx caml_cduce.o caml_cduce.cmi ..)
File "asttypes.mli", line 44, characters 8-18:
Error: Unbound module Location
File "_none_", line 1:
Error: File asttypes.cmx not found
cp: caml_cduce.cmi: No such file or directory
cp: caml_cduce.o: No such file or directory
cp: caml_cduce.cmx: No such file or directory
gmake[1]: *** [caml_cduce.cmx] Error 1
gmake[1]: Leaving directory `/wrkdirs/usr/ports/lang/cduce/work/cduce-0.5.5/ocamliface'
gmake: *** [ocamliface/caml_cduce.cmx] Error 2
*** [do-build] Error code 1

Reported by:	pkg-fallout
With hat:	portmgr
2014-04-20 20:37:14 +00:00
Tijl Coosemans
70243c5642 SDCC version 3.4.0.
Highlights:
- New TLCS90 (Toshiba Z80 clone) target support
- New STMicroelectronics STM8 target support
- Support for named address spaces in ROM
2014-04-20 12:51:11 +00:00
Johan van Selst
23604649d1 Update to GNU AWK 4.1.1 (bugfix release),
http://lists.gnu.org/archive/html/info-gnu/2014-04/msg00000.html
2014-04-20 11:32:10 +00:00
Baptiste Daroussin
a101e3b95a Remove build dependency on pkgconf 2014-04-20 09:30:08 +00:00
Kubilay Kocak
21c7eb2952 lang/python{31,32,33}: Add clang 3.4 fix from python27
Copy change committed to python27 [1] to python31, python32 and
python33 to fix builds of some extensions with Clang 3.4.

Also add breadcrumbs to the patch header in lang/python27 referencing
the upstream issue. [2]

The Python 3.4 port (lang/python34) already carries the patch.

[1] https://svnweb.freebsd.org/ports?view=revision&revision=346428
[2] http://bugs.python.org/issue20767
2014-04-20 01:35:39 +00:00
John Marino
7e86d0296e lang/gcc-aux: Fix a testsuite application typo, add test to list
Both of these issues affect dragonfly only.  The *-*-dragonfly* target
for dejagnu needs to be added to a few hundred tests but a typo
prevented that from happening.  No revbump as testing does not affect
the final package, nor is it a default option.
2014-04-19 17:01:37 +00:00
Tijl Coosemans
5fbf541c7d Fix libfreetype dependencies.
PR:		ports/188792
2014-04-19 15:57:46 +00:00
Marcus von Appen
620eed24a7 - Mark as BROKEN since the last lang/mono update.
It seems like mono's CscToolPath is unset somewhere,
  causing the build to fail
2014-04-19 09:11:24 +00:00
Rene Ladan
8b3c8800eb Remove expired ports:
2014-04-16 ports-mgmt/pkgsearch: Upstream disappeared
2014-04-17 science/flounder: Unmaintained since 2002
2014-04-17 security/nbaudit: Unmaintained since 2002
2014-04-17 security/saint: Unmaintained since 2002
2014-04-17 graphics/gozer: Unmaintained since 2002
2014-04-17 misc/pdfmap: Unmaintained since 2002
2014-04-17 devel/showgrammar: Unmaintained since 2002
2014-04-17 biology/libgenome: Unmaintained since 2002
2014-04-17 deskutils/narval: Unmaintained since 2002
2014-04-17 devel/fampp: Unmaintained since 2002
2014-04-17 net-p2p/py-fngrab: Unmaintained since 2002
2014-04-17 misc/wmfirew: Unmaintained since 2002
2014-04-17 x11-wm/e16utils: Unmaintained since 2002
2014-04-17 misc/salias: Unmaintained since 2002
2014-04-17 print/latex2slides: Unmaintained since 2002
2014-04-17 lang/sxm: Unmaintained since 2002
2014-04-17 textproc/pybook: Unmaintained since 2002
2014-04-17 mail/mailcrypt: Unmaintained since 2002
2014-04-17 japanese/elvis: Unmaintained since 2002
2014-04-17 devel/prototype: Unmaintained since 2002
2014-04-17 print/wprint: Unmaintained since 2002
2014-04-17 science/euler: Unmaintained since 2002
2014-04-17 multimedia/gopchop: Unmaintained since 2002
2014-04-17 science/gdis: Unmaintained since 2002
2014-04-17 net/googolplex: Unmaintained since 2002
2014-04-17 lang/logo: Unmaintained since 2002
2014-04-17 textproc/roap: Unmaintained since 2002
2014-04-17 x11-wm/afterstep-i18n: Unmaintained since 2002
2014-04-17 games/yamsweeper: Unmaintained since 2002
2014-04-17 net-mgmt/echolot: Unmaintained since 2002
2014-04-17 security/pam_smb: Unmaintained since 2002
2014-04-18 devel/lua-redis-parser: Broken for more than 6 months
2014-04-18 biology/finchtv: Broken for more than 6 months
2014-04-18 net-im/ari-yahoo: Broken for more than 1 year (http://www.icculus.org/ari-yahoo/)
2014-04-18 11:17:45 +00:00
John Marino
f107703159 lang/gcc-aux + gnatdroid-armv7: Update to 16 April prerelease 2014-04-18 10:36:22 +00:00
Gerald Pfeifer
018db6cdd4 Update to the 20140416 snapshot of GCC 4.9.0 which coincides with
RC1 of that release.

Extend full-regression-test by running contrib/test_summary.
2014-04-18 05:57:08 +00:00
Tijl Coosemans
b6021e2573 Add a patch so the port no longer requires procfs.
PR:		ports/188326
Approved by:	Neal Nelson <ports@nicandneal.net> (maintainer)
2014-04-16 19:12:50 +00:00
Niclas Zeising
39fc32e828 The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:

NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE

This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.

This patch also contains updates of libxcb and related ports, pixman, as well
as some drivers and utilities.

Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due
to xserver version change.

Apart from these updates, the way shared libraries are handled has been
changed for all xorg ports, as well as libxml2 and freetype, which means
ltverhack is gone and as a consequence shared libraries have been bumped.
The plan is that this change will make library bumps less likely in the
future.
All affected ports have had their portrevisions bumped as a consequence of
this.

Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT.

Update instructions, hardware support, and more notes can be found on
https://wiki.freebsd.org/Graphics

Thanks to:	all testers, bdrewery and the FreeBSD x11@ team
exp-run by:	bdrewery [1]
PR:		ports/187602 [1]
Approved by:	portmgr (bdrewery), core (jhb)
2014-04-16 18:28:47 +00:00
Brooks Davis
dc147c5b69 Remove lang/dragonegg-devel46. It has C++ library incompatibilities
that are impractical to resolve and is unmaintained upstream.
2014-04-16 16:30:01 +00:00
Pietro Cerutti
939166e4ab - Update to 05_20140406
* The chapters in the manual about primitive actions and the foreign
    function interface have been improved.
  * The names of the C types used in interpreter and runtime library
    have been refactored to use camel case.
  * The elements in the unions valueUnion (in data.h) and rtlValueUnion
    (in data_rtl.h and s7c.sd7) have been refactored to use names with
    camel case.
  * The library bigint.s7i has been changed to define the operators
    radix and RADIX with the actions BIG_radix and BIG_RADIX. This
    results in a significant performance improvement when large numbers
    are converted.
  * Interpreter and compiler have been improved to support the actions
    BIG_radix and BIG_RADIX.
  * Testcases for the operators radix and RADIX have been added to
    chkbig.sd7.
  * The compiler has been improved to do an optimization for the action
    INT_MDIV when the divisor is known at compile time. When the
    dividend is known to be positive or zero it is casted to an
    unsigned integer and the quotient is casted back to a signed
    integer. Dividing an unsigned integer by a constant is known to be
    faster than dividing a signed integer.
  * The functions bigRadix, bigRadixPow2, bigRadix2To36 and
    uBigDivideByDigit have been added to big_rtl.c
  * The function bigRadix has been added to big_gmp.c.
  * The functions stri_to_cstri8_buf and cstri8_buf_to_stri have been
    added to striutl.c.
  * In traceutl.c the function mapTraceFlags has been improved to work
    correctly when the parameter trace_level defines several options.
  * The function printTraceOptions has been added to traceutl.c.
  * In arr_rtl.c the definition of getArgv has been improved to use
    less #ifdef directives in the function body.
2014-04-15 07:23:58 +00:00
Cy Schubert
eedd49f980 Fix up conflict with lang/dmd1. 2014-04-14 20:00:37 +00:00
Cy Schubert
f53bb29eca lang/dmd is no longer the primary dmd port as it is no longer supported
by digitalmars.com. It logically switches places with dmd2. dmd2 retains
the dmd2 name while lang/dmd is renamed to dmd1.
2014-04-14 19:46:59 +00:00
Cy Schubert
f5527cec6a Update 2.064.2 --> 2.065.0 2014-04-14 19:28:06 +00:00
Cy Schubert
ab1f647d70 Stagify. 2014-04-14 19:25:25 +00:00
Frederic Culot
1638e96992 - Reassign to the heap at maintainer's request
With hat:	portmgr-lurker
PR:		ports/188514
Submitted by:	Nils M Holm <nmh@t3x.org>
2014-04-14 13:18:07 +00:00
Gerald Pfeifer
ab887551f5 Add USES=fortran as another case where the run-time library path is
set transparently.

Reported by:	Dmitry Sivachenko <trtrmitya@gmail.com>
2014-04-13 14:55:59 +00:00