aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gettext.rb
AgeCommit message (Collapse)Author
2012-04-22gettext: remove Snow Leopard bottleJack Nagel
The bottle was linked against libunistring, which is not a hard dependency but gets picked up by the build if its present; this results in breakage on systems where libunistring is not installed. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-10gettext: add Snow Leopard bottleMisty De Meo
2012-02-27Add gettext bottle.Mike McQuaid
2012-02-25Don't override default -O flag.Adam Vandenberg
Way back in the day, Homebrew defaulted to LLVM/-O3. A lot of stuff failed to compile, and a lot of stuff just took forever with -O4. We don't default this way anymore, and in fact use -Os per Apple guidelines. So remove these old "fixes" since they are no longer needed.
2011-11-30Add mirrors for GNU formulaeJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-12Use automatic mirror selection for GNU downloadsJack Nagel
It seems that the main GNU download site has issues in some places outside the U.S., so we'll use the provided "ftpmirror.gnu.org" to pick a nearby mirror. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-06-21gettext: fix build with Xcode 4José Martínez
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-06-06gettext: universal binaryAdam Vandenberg
2011-06-05gettext: simplify build processAdam Vandenberg
Don't build examples and then delete them; use the MacPorts patch to not build examples in the first place, unless explicitly asked for.
2011-03-22Change keg-only text slightly.Adam Vandenberg
2011-03-19gettext - add configure switchAdam Vandenberg
--without-git was required for some users.
2011-03-12updated gettext to 0.18.1.1Fred Wenzel
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-12Use ruby style for inheritance.Adam Vandenberg
2010-11-18Use https for all GitHub URLsTianyi Cui
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-10Document all existing install options.Adam Vandenberg
2010-08-07Update formulae for version 0.7Adam Vandenberg
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
2010-02-11gettext - fix Mac Pro 10.6 issue #540Adam Vandenberg
LLVM -O4 doesn't work on Mac Pro.
2009-10-15s/require 'brewkit'/require 'formula'/gMax Howell
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
2009-09-17Solving the GNU GetText issuesMax Howell
GNU GetText breaks eg. Ruby 1.9 builds, and some other formula I have been building too. But it is required by eg. glib. So to solve this we are going to by default not symlink gettext into the Homebrew prefix. Formula that depend on GetText will have the gettext paths added to the brewing environment automatically. Neat.
2009-09-16Default to patch level 1Max Howell
Having gone through our patches it's clear that p1 is more standard. Also fixed a bug where returning DATA outside of an array would fail to patch.
2009-09-16Added patch for environ problems in Gettext.Daniel Rodríguez Troitiño
All Gettext binaries fail at runtime with linking problems related to the environ variable. According to <http://www.mail-archive.com/bug-gnulib@gnu.org/msg09272.html> the environ variable is missing from some platforms (between them MacOS X), and autoconf test for it, and sets HAVE_ENVIRON_DECL accordingly. A common workaround was declaring "extern char** environ" in the code if the OS didn't provide the environ variable, but that doesn't work since 10.5. Since then you have to use _NSGetEnviron() function declared in crt_externs.h. This workaround works at least since 10.3. t Signed-off-by: Max Howell <max@methylblue.com> Closes #11
2009-08-10Apply new ENV capabilities to all existing FormulaeMax Howell
2009-06-06Wireshark depends on glib depends on gettextMax Howell