This commit modifies the formula for glew-1.7.0, an OpenGL project, so
that it builds not only libGLEW, but two cli apps and libGLEWmx.
This compiles and works without error on 64bit OSX Snow Leopard, using
clang, llvm, or gcc from XCode 4.0.2. Testing this library using a
first person space simulator shows no defects.
ClosesHomebrew/homebrew#8272.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
- Update bali-phy to 2.1.1.
- Build oos as directed in the docs.
- Add --enable-cairo flag to build the rest of the programs.
The compiles and runs without error on Snow Leopard using clang, and
llvm from XCode-4.0.2.
ClosesHomebrew/homebrew#8491.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Added formula for TCLAP, Templatized C++ Command Line Parser Library
From the documentation: "TCLAP is a small, flexible library that
provides a simple interface for defining and accessing command line
arguments. It was intially inspired by the user friendly CLAP libary.
The difference is that this library is templatized, so the argument
class is type independent. Type independence avoids
identical-except-for-type objects, such as IntArg, FloatArg, and
StringArg. While the library is not strictly compliant with the GNU or
POSIX standards, it is close"
ClosesHomebrew/homebrew#9065.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
tesseract previously built with English as the only language. This adds
an --all-languages option, which builds every available language.
English remains default.
This creates a new formula for Field3D, an open source library for
storing voxel data. It provides C++ classes that handle in-memory
storage and a file format based on HDF5 that allows the C++ objects
to be written to and read from disk.
The field3d.rb formula depends on scons to configure and build the
software, and cmake to build the docs. Deps on boost, ilmbase,
and hdf5 round out the requirements, setting the stage for handling
HDR images from International Light and Magic. Field3d will be a
dep in the upcoming openimageio formula.
This compiles and passes its unit tests with all three compilers,
llvm-2335.9, gcc-4.2.1.5666, and clang-2.0.139 from XCode 4.0.2
on 64bit OSX Snow Leopard.
ClosesHomebrew/homebrew#8362.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
libid3tag has some serious memory leaks which are unlikely to be
corrected upstream, since the original project hasn't updated since
2004. These Gentoo patches resolve the issues.
ClosesHomebrew/homebrew#6517.
Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Using readline rather than libedit allows, among other things, the
sharing of the same line-editing config file (.inputrc) across BSDish
and Linux systems. And I'm lazy, and don't want to learn how to
configure editline.
We currently just throw away :optional when processing dependencies, so
if someone really wants libedit instead, we can either make this into an
install option (--with-readline) or vice-versa (--with-libedit).
Signed-off-by: Jack Nagel <jacknagel@gmail.com>