aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAndreas Steinel2012-01-15 21:29:53 +0100
committerAdam Vandenberg2012-01-29 22:00:28 -0800
commitd6782aceb66553cbfd7a1b7c6a72fdc67441812d (patch)
treeff2f3d14627262b9b6711f8f52d1f64e4f090265 /Library
parent207f18efe1f83acbc79527350759fb033b610cd6 (diff)
downloadhomebrew-d6782aceb66553cbfd7a1b7c6a72fdc67441812d.tar.bz2
Pioneers 0.12.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/pioneers.rb46
1 files changed, 3 insertions, 43 deletions
diff --git a/Library/Formula/pioneers.rb b/Library/Formula/pioneers.rb
index b20e06428..703a1a5c0 100644
--- a/Library/Formula/pioneers.rb
+++ b/Library/Formula/pioneers.rb
@@ -1,17 +1,14 @@
require 'formula'
class Pioneers < Formula
- url 'https://downloads.sourceforge.net/project/pio/Source/pioneers-0.12.3.1.tar.gz'
+ url 'https://downloads.sourceforge.net/project/pio/Source/pioneers-0.12.5.tar.gz'
homepage 'http://pio.sourceforge.net/'
- md5 'd0cb6189a6fc6f25641b4f2465aa2eb2'
+ md5 'fd0c25382e7ebea0709c9464395739a2'
depends_on 'intltool' # for NLS
depends_on 'gettext'
depends_on 'gtk+'
-
- # def patches
- # DATA
- # end
+ depends_on 'librsvg' # svg images for gdk-pixbuf
def install
# fix usage of echo options not supported by sh
@@ -21,40 +18,3 @@ class Pioneers < Formula
system "make install"
end
end
-
-# fix usage of echo options not supported by sh
-__END__
-diff --git a/Makefile.in b/Makefile.in
-index a55dab0..32975e3 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -4012,23 +4012,23 @@ uninstall-man: uninstall-man6
-
- common/authors.h: AUTHORS
- @mkdir_p@ common
-- echo -n "#define AUTHORLIST " > $@
-+ /bin/echo -n "#define AUTHORLIST " > $@
- sed -e's/ <.*//; s/$$/", \\/; s/^/"/; /^"[[:space:]]*", \\$$/d' $< >> $@
-- echo "NULL" >> $@
-+ /bin/echo "NULL" >> $@
-
- # This target is not called common/version.h (although it builds that file),
- # because it must be PHONY, but should only be rebuilt once.
- build_version:
- @mkdir_p@ common
-- echo -n '#define FULL_VERSION "$(VERSION)' >> common/version.new
-+ /bin/echo -n '#define FULL_VERSION "$(VERSION)' >> common/version.new
- if svn info > /dev/null 2>&1; then \
-- echo -n ".r`svn info | grep Revision | cut -f2 -d\ `" \
-+ /bin/echo -n ".r`svn info | grep Revision | cut -f2 -d\ `" \
- >> common/version.new ;\
- if svn status | grep -vq ^\? ; then \
-- echo -n '.M' >> common/version.new ;\
-+ /bin/echo -n '.M' >> common/version.new ;\
- fi ;\
- fi
-- echo '"' >> common/version.new
-+ /bin/echo '"' >> common/version.new
- if diff common/version.h common/version.new > /dev/null 2>&1; then \
- rm common/version.new ;\
- else \