aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
AgeCommit message (Collapse)Author
2012-09-01Fix compilation of par2 with clang.Ingmar Steen
clang doesn't handle flexible arrays of non-POD types. So instead of a flexible array, use a 0-length array. Closes #14448. Signed-off-by: Max Howell <mxcl@me.com> Added comment for the Gentoo patch
2012-09-01libagg still fails with clang (prolly always will)Max Howell
Clang is unlikely to ever support this kind of thing, it's bad code! In this case really we could use a way to provide a diff of the lines that break the compile and say that it fails with clang while this bad code is in the sources. Closes #14573.
2012-08-31Half-fix MOSMLMax Howell
2012-08-31rbenv-bundler 0.94Chris Moore
rbenv-bundler is an rbenv plugin that makes shims aware of bundle installation paths Closes #14496. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-31spiped 1.2.0Berk D. Demir
This release adds ``spipe'', a client to spiped which encrypts a single connection and as the unencrypted end of that connection uses the standard input and output. In other words, spipe acts like 'netcat' or 'openssl s_client'. A practical use of spipe as an OpenSSH ProxyCommand to create hidden in plain sight SSH services is explained at its authors blog. Closes #14576. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-31gnu-prolog: update fails_withAdam Vandenberg
Closes #14062.
2012-08-31duti 1.5.1Mathias Bynens
Closes #14330. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-31ocatve: nit-pickAdam Vandenberg
2012-08-31Gifsicle 1.67Matthew Callis
Closes #14606. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-31ffmpeg: add speex supportChris Streeter
Closes #14607. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-31ldns: use new dslAdam Vandenberg
2012-08-31libvirt: use new dslAdam Vandenberg
2012-08-31gource: use new dslAdam Vandenberg
2012-08-31memcached: disable code coverageAdam Vandenberg
Fixes #14604.
2012-08-31nclt clamav worksMax Howell
2012-08-31Fix superenv libgcryptMax Howell
This started happening because I undefined CC. Now a lot of tools pick gcc. The problem here is that we add to cflags before configure, and during configure we are 'servile' so when configure uses gcc it *is* llvm-gcc and not clang, which we will be during make because then we are *not* servile. So we have to assign these cflags during make only, which is easy enough. Code is neater now too. I am now working on superenv so that it can determine if a tool cannot use certain flags and then pick another. The last stage of always-just-works.
2012-08-31Octave: fix compilation on 32 bit architecturesjnothman
This fixes a bug where 32 bit compilations create spurious 'invalid assignment to cs-list outside multiple assignment' errors in Octave. See Fink's similar clause and discussion at http://www.mail-archive.com/fink-beginners@lists.sourceforge.net/msg26536.html. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-31Varnish 3.0.3Adam Anderson
Closes #14600. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-31sam2p 0.49.1nibbles 2bits
Upgrade sam2p to version 0.49.1. Add `--disable-debug` Add `fails_with :clang` Works well with superenv. Fixes #14592 Closes #14599. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-31aws-cfn-tools 1.0.10Mike Fiedler
Closes #14602. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-31Octave: Temporary SuiteSparse-4.x.x compatibility fix.Bradley M. Froehle
Avoids a missing "_SuiteSparse_time" symbol. See http://savannah.gnu.org/bugs/?37031 Closes #14572. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-31superenv fix for broken 10.8 apr-1-configMax Howell
serf requires you to explicitly tell it where to find the supertool because otherwise it has a hardcoded /usr/bin/apr-1-config (:P), ctail however is sensible and searches the PATH so now it's as though we do nothing special in that formula. Nice.
2012-08-31ghostscript: add `--without-x`nibbles 2bits
gs-9.06 is designed to build with only `:libpng` these days, but it fails to compile with superenv unless we specify that we don't want to build with X11. * Remove the `ENV['LIBS'] = some/X11/path` * Add `--without-x` to fix a build error. Fixes #14564 Closes #14596. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
2012-08-31libvirt 0.10.1Justin Clift
Closes #14595. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-31SIMH 3.9 won't compile w/o deparallelize; also added --HEADBrad Ackerman
Closes #14583. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-31groonga: add missing depsAdam Vandenberg
Closes #14588.
2012-08-31make -e has env-vars override Makefile varsMax Howell
So the CC= in the Makefile is overridden by the $CC setting. I considered doing this generally, but as it stands we keep most of the user's environment in both superenv and stdenv so it's too risky. But I wanted to commit one example of it at least.
2012-08-31webp 0.2.0Matthias Schmidt
Closes #14593. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-30monetdb depends on pkg-configGijs Molenaar
Closes #14578. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-30redis 2.4.17Shawn Jonnet
Closes #14586. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-30samba 3.6.7Adam Vandenberg
2012-08-30libcouchbase 1.0.6Sergey Avseyev
Closes #14581. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-30Fixes #14542; ocaml superenv issuesMax Howell
This patch removes most of the settings for CC, CXX etc. because we are trying to be minimal. Then we force the compiler to Homebrew's choice underneath in superenv. We however leave LD because we prefer that build-systems use the c-compiler for linking, it generally works better (copiously tested), however when the build-system explicitly calls ld, we respect that. This gets around the ocaml bug in question, since somehow clang was crashing during link, but the ld tool itself (which is kind of clang, kind of llvm-gcc) is okay with this. Also moved the setting of O (so that cc-args are refurbished) into a make wrapper. Not sure if this matter much, but seems more consistent.
2012-08-30Fixes #14571; clisp superenv issueMax Howell
2012-08-30open-scene-graph 3.1.2nibbles 2bits
Upgrade open-scene-graph to version 3.1.2. Remove that patch that is merged into this version. Add a `--docs` option. Don't build them by default. Add deps on doxygen and graphviz if building docs. Install the docs into the correct path. Add a dep on gnuplot. Add a dep on gtkglext. Add an option to build ffmpeg support. It is off by default. Make the ffmpeg dep conditional on the option. Use inreplace to turn off ffmpeg rather than 10 CMake vars. Actually build the docs using `make doc_openscenegraph` if asked. Remove the `fails_with` because it works now. Add a patch to fix a syntax error during `cmake`, missing OR. Change to 10.7 specific cmake code to `10.7 or 10.8`. Reported upstream and noted removal date in comments. Tested on ML using clang and llvm from XCode-4.4.1. Fixes #13840 Closes #14563. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-30mkvtoolnix: patch to build with #define foreach BOOST_FOREACHdinkypumpkin
mkvtoolnix uses #define foreach BOOST_FOREACH, which breaks the build due to an issue with header file ordering. Boost 1.49 was patched to avoid this issue, but the patch was removed in 1.50, so the mkvtoolnix build must provide a workaround. See: https://svn.boost.org/trac/boost/ticket/6131 Closes #14568. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-30opencolorio: use new dslAdam Vandenberg
2012-08-30ngspice: add X11 depAdam Vandenberg
2012-08-30hiredis 0.11.0Adam Vandenberg
2012-08-30go-app-engine 1.7.1Matt Whiteley
Closes #14560. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-30gambit-scheme: use new dslAdam Vandenberg
2012-08-30sga 0.9.19Shaun Jackman
Closes #12862. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-30bamtools 1.0.2Adam Vandenberg
Restores needed whitespace to patches Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-30macvim: fix audit warningsAdam Vandenberg
2012-08-30ffmpegthumbnailer 2.0.8Jack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-30drip 0.0.3Brice Dutheil
Closes #14520. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-30THC Hydra 7.3neersighted
Closes #14548. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-30node: use https url for npmAnkit
Closes #14552. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-29Fix qrupdate FCFLAGS if nilMax Howell
2012-08-29plt-racket: use github tarball instead of git tagJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>