Commit graph

9414 commits

Author SHA1 Message Date
nibbles 2bits
0061943bd3 mp4v2: add devel version r479, patch stable for clang
mp4v2 is used by easy-tag and cmus, but those require different
versions that are not API compatible.

Add a devel block for r479.
Add patches for stable committed in r472 inline.  Patches fix
compile errors with clang, but are not available via direct url.
Stable works with easy-tag and can open .m4a files from iTunes.
Devel works with cmus and can play .m4a files from iTunes.
Compiles with all 5 compilers from XCode-4.3.2, 4.0.2 on Lion
and Snow Leopard.  Main discussion was in Homebrew/homebrew#7998

Closes Homebrew/homebrew#11275.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-12 19:11:02 -05:00
nibbles 2bits
0e3ccf8fbc zile 2.4.7
Upgrade Zile to version 2.4.7.
Add dep on gettext because configure wanted libintl.
Remove --man flag.  It installs to share/man correctly.
Works on Lion and Snow Lep, XCode-4.3.2 and 4.0.2, all compilers.

Closes Homebrew/homebrew#11273.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-12 18:57:31 -05:00
Desert Crystal
393b08b0a3 osslsigncode 1.4
Closes Homebrew/homebrew#11510.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-12 07:12:51 -07:00
Marc Abramowitz
2f9044645d xclip 0.12
Closes Homebrew/homebrew#11597.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-12 07:03:22 -07:00
Adam Vandenberg
1324db4646 Python checks for pkg-config at configure time 2012-04-12 06:54:53 -07:00
Aria Stewart
70ae1bcea7 the_silver_searcher 0.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-12 06:46:54 -07:00
nibbles 2bits
aa09c93734 swftools 0.9.2 + add deps on ungif, fftw
* Upgrade swftools to version 0.9.2.
* Add a dep on ungif.
* Add a dep on fftw that is new to this version and used to speed up
resizing 2D images and increase their quality.
* Remove the optional qualifier on lame which had no effect.
* Remove the ENV.minimal_optimization, same reason, and it works.
* Remove the caveat about swfc segfaults on Snow Lep.  It works.
* Add a patch for configure to fix a syntax error in a conftest for
fftw that was causing it to be considered not found.  It now builds
and links all the binaries against libfftwf.dylib.
* The patch is merged in HEAD.  Remove at 0.9.3.  Noted in formula.

Tested on Lion and 64bit Snow Leopard with all five compilers from
XCode-4.3.2 and 4.0.2.

This would fix Homebrew/homebrew#11520

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-11 20:10:36 -07:00
Susan Potter
086151b115 elasticsearch 0.19.2
Includes addition of 'Upgrade from 0.18.x' instructions in caveat.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-11 19:43:12 -07:00
Eli Bishop
fe64437dcf atlassian-plugin-sdk 3.9.3
Closes Homebrew/homebrew#11588.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-11 19:41:44 -07:00
Dave Rice
a9f8e2a213 media-info 0.7.56
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-11 19:41:13 -07:00
Adam Vandenberg
dc3e6d1bd2 Python3 3.2.3 + distribute 0.6.26 2012-04-11 19:19:59 -07:00
Adam Vandenberg
6796922da4 Python 2.7.3 + distribute 0.6.26 2012-04-11 19:18:46 -07:00
Jack Nagel
36db28a1ce mtr: clarify caveats, style nits
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-11 15:00:03 -05:00
Jack Nagel
45df661674 fltk devel 1.3.x-r9327
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-11 14:38:50 -05:00
Jack Nagel
5463ed485e fltk: fails with clang
Fixes Homebrew/homebrew#11292.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-11 14:38:46 -05:00
nibbles 2bits
b8c8f394d0 openjpeg: switch to configure
Switch the formula to use configure.
Openjpeg can be built using configure or cmake.  They don't install
identically, though.  When built with cmake, one header is absent.
Switching to configure gets us the unversioned one also, i.e.

    openjpeg/1.5.0/include/openjpeg-1.5/openjpeg.h
    openjpeg/1.5.0/include/openjpeg.h

While only three formula currently depend_on openjpeg, they all
contain code that expects the unversioned file, i.e.

    #include <openjpeg.h>

Closes Homebrew/homebrew#11576.

Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
2012-04-11 10:22:11 -05:00
nibbles 2bits
2c745f0622 mapnik: fix compile error with system Python
Mapnik by default tries to install to the site-packages in /System
when brewed against system Python.  This causes a build error
because that directory is not writeable.  Mapnik correctly
determines the versioned site-packages name without modification,
but for Homebrew it needs the proper prefix.

* Add the standard `which_python` function to the formula.
* Add a scons argument for `PYTHON_PREFIX`
* Add the standard caveat for `PYTHONPATH`.

Discussed upstream: https://github.com/mapnik/mapnik/issues/1155
and tested on Lion against the system Python.

Fixes Homebrew/homebrew#11389

Closes Homebrew/homebrew#11407.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-11 01:03:22 -05:00
Anthony Ramine
aabafaf8b6 wrangler: respect $CC during compilation
Closes Homebrew/homebrew#11524.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-11 01:01:37 -05:00
Jack Nagel
db9779fd63 msgpack: add test
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-11 00:27:47 -05:00
Jack Nagel
4d40cd7d30 msgpack: builds with LLVM >= 2335
Closes Homebrew/homebrew#11523.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-11 00:25:58 -05:00
Jack Nagel
fc2a20d3aa glib: fails with clang
cf. Homebrew/homebrew#11575, Homebrew/homebrew#10653.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-10 22:53:41 -05:00
Ross Heflin
88b6a6f81b MPD 0.16.8
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 19:10:53 -07:00
Adam Vandenberg
eee2760256 Sickbeard 494 2012-04-10 19:10:14 -07:00
Aria Stewart
9cd474f630 Percona Toolkit 2.1.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 19:06:26 -07:00
nibbles 2bits
53f80afcaa lzip 1.13
* Upgrade lzip to version 1.13.
* Remove --man flag because it installs to the correct location.
* Add make check because it's a compression program, and data
integrity seems worth the 2 sec. extra.
* Add ENV.j1 for make install, otherwise it will occasionally fail.

Tested on Lion and 64bit Snow Leopard using all compilers from
XCode-4.3.2 and 4.0.2.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 19:05:42 -07:00
nibbles 2bits
7a48c566f2 lzlib 1.3
* Upgrade lzlib to version 1.3.
* Correct configure flags.  It is a C library, not C++.  Before it
would always compile with gcc.  It only uses CC and CFLAGS.
* Add make check because it's a compression library, and data
integrity seems worth the 2 seconds extra.

Tested on Lion and 64bit Snow Leopard with all compilers from
XCode-4.3.2 and 4.0.2.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 19:05:08 -07:00
Robson Roberto Souza Peixoto
472325ae82 innotop 1.8.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 19:02:52 -07:00
Jocelyn Mallon
e34a66bb0d pngcrush 1.7.25
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 19:02:31 -07:00
MinRK
b957aaa83f update md5 for zeromq-2.2.0
The tarball was repackaged, changing its checksum.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 19:00:28 -07:00
Tomas Linhart
431bbcc326 android-sdk r18
Closes Homebrew/homebrew#11553.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 18:55:09 -07:00
shansen
24931357ff Jenkins 1.459
Closes Homebrew/homebrew#11551.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 18:54:08 -07:00
Misty De Meo
87c5e3f176 cmake: add Snow Leopard bottle 2012-04-10 11:25:08 -05:00
Misty De Meo
c42d31e884 objective-caml: add Snow Leopard bottle 2012-04-10 11:23:44 -05:00
Misty De Meo
8729a1ad96 imagemagick: add Snow Leopard bottle 2012-04-10 11:23:44 -05:00
Misty De Meo
ef91566ee3 icu4c: add Snow Leopard bottle 2012-04-10 11:08:26 -05:00
Misty De Meo
861f0c916e gettext: add Snow Leopard bottle 2012-04-10 11:06:57 -05:00
Misty De Meo
b46fe744f2 erlang: add Snow Leopard bottle 2012-04-10 11:04:30 -05:00
Misty De Meo
72b3073322 boost: add Snow Leopard bottle 2012-04-10 11:01:08 -05:00
Misty De Meo
71734effc7 qt: add Snow Leopard bottle 2012-04-10 08:56:33 -05:00
Adam Vandenberg
86a4f5c25b Node 0.6.15 2012-04-10 06:19:33 -07:00
Dan Weeks
bc6d359ae8 jansson 2.3
Also enable universal builds

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 06:18:07 -07:00
statique
364f1957cc Drush 5.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 06:16:57 -07:00
Dane Springmeyer
ad9a1cebca mapnik 2.0.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 06:16:00 -07:00
Christian Hudon
d133785a38 bazaar 2.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 06:14:13 -07:00
Mark A. Matienzo
965e7a3ac8 bulk_extractor: relocated downloads to github
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 06:12:52 -07:00
nibbles 2bits
5d5d3c019d help2man 1.40.8
Upgrade help2man to version 1.40.8.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 06:12:33 -07:00
aaronlake
a4234bb5f2 mobile-shell 1.1.3
Closes Homebrew/homebrew#11540.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 06:07:48 -07:00
Alexey Palazhchenko
b158c805e7 Crossroads: fix url
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-10 06:07:09 -07:00
Charlie Sharpsteen
8a370c30d8 GMT: Update to 4.5.8 2012-04-08 23:03:07 -07:00
nibbles 2bits
92fe05351d tbb 4.0u3
Upgrade tbb to 4.0u3, 20120201 stable.  It passes make test on
Lion with XCode-4.3.2, clang and llvm-gcc.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-08 19:32:45 -07:00