blob: 01d71e13c55dae5f1dbcc0ac02de0cc1a9ece9ad (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
 | require 'formula'
class PythonWithGdbm < Requirement
  def message; <<-EOS.undent
    The Python being used does not include gdbm support,
    but it is required to build this formula:
      #{which 'python'}
    Homebrew's Python includes gdbm support.
    EOS
  end
  def satisfied?
    quiet_system "python", "-c", "import gdbm"
  end
  def fatal?
    true
  end
end
class Cvs2svn < Formula
  url 'http://trac.macports.org/export/70472/distfiles/cvs2svn/cvs2svn-2.3.0.tar.gz'
  homepage 'http://cvs2svn.tigris.org/'
  sha1 '545237805ddb241054ba40b105b9c29b705539b8'
  depends_on PythonWithGdbm.new
  def install
    system "python", "setup.py", "install", "--prefix=#{prefix}"
    system "make man"
    man1.install gzip('cvs2svn.1', 'cvs2git.1', 'cvs2bzr.1')
    prefix.install %w[ BUGS COMMITTERS HACKING
      cvs2bzr-example.options cvs2git-example.options cvs2hg-example.options
      cvs2svn-example.options contrib ]
    doc.install Dir['doc/*']
    doc.install Dir['www/*']
  end
  def caveats; <<-EOF
    NOTE: man pages have been installed, but for better documentation see:
      #{HOMEBREW_PREFIX}/share/doc/cvs2svn/cvs2svn.html
    or http://cvs2svn.tigris.org/cvs2svn.html.
    Contrib scripts and example options files are installed in:
      #{prefix}
    EOF
  end
end
 |