Currently, gpgme will build against gnupg2 but this results in a lot of
test failures, at least for me. And if both gnupg and gnupg2 are
installed, the test suite will run against a combination of binaries
from the two packages, resulting in even more failed tests.
So for now, let's keep the dependency on gnupg 1.x only and disable the
gpgme components that require gnupg2.
Patches welcome to fix the underlying issues; I will probably mess
around with it in the future, too.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
gnupg2 is designed coexist with gnupg 1.x. The formula contains a patch
to keep things like documentation and language data from conflicting
with gnupg 1.x by namespacing everything as 'gnupg2'.
gpg-agent is currently an external package in Homebrew, as it can also
be used with gnupg 1.x; so in the formula we disable building the agent
and declare a dependency on it instead.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
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.