diff options
| author | Tim D. Smith | 2014-08-30 14:14:07 -0700 | 
|---|---|---|
| committer | Tim D. Smith | 2014-09-26 23:49:54 -0700 | 
| commit | c609d34ce6c6500aef5a4d081ee22c3c79cad7a6 (patch) | |
| tree | 2a7dec73212f6ba95674ba4c234f7a566ef66f79 /Library/Formula/libtorrent-rasterbar.rb | |
| parent | 5254f8f510fb30484f8fac8be3d38e388a4392e2 (diff) | |
| download | homebrew-c609d34ce6c6500aef5a4d081ee22c3c79cad7a6.tar.bz2 | |
Use boost-python instead of boost => with-python
Boost.Python support in Homebrew is moving from the boost formula to a
new boost-python formula. This commit updates formulas that were using
boost --with-python to use boost-python instead.
Diffstat (limited to 'Library/Formula/libtorrent-rasterbar.rb')
| -rw-r--r-- | Library/Formula/libtorrent-rasterbar.rb | 9 | 
1 files changed, 3 insertions, 6 deletions
diff --git a/Library/Formula/libtorrent-rasterbar.rb b/Library/Formula/libtorrent-rasterbar.rb index 1483d9874..6e356a9e1 100644 --- a/Library/Formula/libtorrent-rasterbar.rb +++ b/Library/Formula/libtorrent-rasterbar.rb @@ -4,6 +4,7 @@ class LibtorrentRasterbar < Formula    homepage "http://www.rasterbar.com/products/libtorrent/"    url "https://downloads.sourceforge.net/project/libtorrent/libtorrent/libtorrent-rasterbar-1.0.2.tar.gz"    sha1 "bfb161825306abbd5c03775e75f5e094ee757a9a" +  revision 1    head do      url "https://libtorrent.googlecode.com/svn/trunk" @@ -23,12 +24,8 @@ class LibtorrentRasterbar < Formula    depends_on "openssl"    depends_on :python => :optional    depends_on "geoip" => :optional - -  if build.with? "python" -    depends_on "boost" => "with-python" -  else -    depends_on "boost" -  end +  depends_on "boost" +  depends_on "boost-python" if build.with? "python"    def install      boost = Formula["boost"]  | 
