Starting OS X 10.8, the "tcp wrappers" library is no longer part of
the operating system, so don't use it any more.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This software segfaults when run for 64-bit users,
and 'mosh' is almost always expected to refer to mobile-shell.
Would review an updated version that does not segfault,
submitted under the name "mosh-scheme".
ClosesHomebrew/homebrew#13936.
"brew install sphinx --mysql" now really add the "--with-mysql" to the configure options even if PG is installed.
ClosesHomebrew/homebrew#16840.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
In addition to its etags executable, emacs now installs a ctags executable.
This stomps over exuberant-ctags, and makes it difficult to have emacs and
vim installed and use tags for both.
This follows what MacPorts does and removes bin/ctags and its manpage from
the build before linking. An option is provided for users who want to keep
`ctags` from emacs. Also, remove the conflict with ctags and add
a caveat to the formula about this whole issue.
FixesHomebrew/homebrew#16826.
Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
For some reason (possibly the smake version bump?), star no longer
produces a tar.1 manpage, though it does still try to install a tar
symlink.
Additionally it turns out that many of the files it installs are
generic smake headers/libraries, which clash either with the versions
installed by smake itself or by those installed by other smake-based
software, e.g. cdrtools. Since they don't need to be necessary to use
star, all of those are now removed at the end of the build.
It turns out that *all* of the includes installed by cdrtools are
generic smake includes, and will clash with other software installed by
the same author if not removed. Additionally, some (but not all) of its
libs appear to be generic smake libs and are also installed by star.
- New formula pygtksourceview with test (fixesHomebrew/homebrew#16410)
- Fix the pkgconfig file of pygtk, too, because the
GTK project moved the `codegen` executable from
pygtk into pygobject.
- Fix minor typo in pygtk.
FixesHomebrew/homebrew#16410.
ClosesHomebrew/homebrew#16418.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Allow to install Elasticsearch from the source:
$ brew install elasticsearch --HEAD
(You need a working Maven installation -- `brew install maven` to install it with Homebrew.)
ClosesHomebrew/homebrew#16844.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Cleanup of the Elasticsearch formula:
1/ Fixed incorrectly installed Sigar libraries on Mac OS X
Move all neccessary files to `libexec/sigar`.
2/ Removed manipulating the bin scripts, use ES_HOME variable
Instead of hardcoding paths to Homebrew locations in the `bin/elasticsearch`
and `bin/plugin` scripts, set up the ES_HOME environment variable
in the `bin/elasticsearch.in.sh` properly.
Also, simplify the Regex for replacing path to Elasticsearch classes (`--classpath`)
in the `bin/plugin` script and use the `ES_CLASSPATH` variable.
3/ Simplified elasticsearch.yml configuration
Reorganize the commands, use `sub` instead of `gsub`.
4/ Cleaned up the caveats/info section
Remove redundant information.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>