2009-11-11 21:09:28 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Doxygen < Formula
|
2011-04-27 20:38:43 +00:00
|
|
|
url 'http://ftp.stack.nl/pub/users/dimitri/doxygen-1.7.4.src.tar.gz'
|
2009-11-11 21:09:28 +00:00
|
|
|
homepage 'http://www.doxygen.org/'
|
2011-04-27 20:38:43 +00:00
|
|
|
md5 'ff908759ff7cd9464424b04ae6c68e48'
|
2010-10-12 14:40:33 +00:00
|
|
|
head 'https://doxygen.svn.sourceforge.net/svnroot/doxygen/trunk'
|
|
|
|
|
2009-11-11 21:09:28 +00:00
|
|
|
def install
|
2010-03-07 06:27:19 +00:00
|
|
|
system "./configure", "--prefix", prefix
|
2010-02-16 05:52:56 +00:00
|
|
|
inreplace "Makefile" do |s|
|
|
|
|
# Path of man1 relative to already given prefix
|
2010-08-23 21:06:36 +00:00
|
|
|
s.change_make_var! 'MAN1DIR', 'share/man/man1'
|
2010-02-16 05:52:56 +00:00
|
|
|
end
|
2011-05-24 18:41:09 +00:00
|
|
|
|
|
|
|
# This allows compilation against 10.7 Lion, by changing a preprocessor
|
|
|
|
# OS version check error to a warning. A bug report has been filed
|
|
|
|
# upstream (https://bugzilla.gnome.org/show_bug.cgi?id=650463). This
|
|
|
|
# should be fixed in the next version of Doxygen, so the following line
|
|
|
|
# can and should be removed when it is released.
|
|
|
|
inreplace "qtools/qglobal.h", " error", " warning"
|
|
|
|
|
2009-11-11 21:09:28 +00:00
|
|
|
system "make"
|
2010-02-16 05:52:56 +00:00
|
|
|
system "make install"
|
2009-11-11 21:09:28 +00:00
|
|
|
end
|
|
|
|
end
|