1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
Commit Graph

12627 Commits

Author SHA1 Message Date
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