diff options
| author | Jack Nagel | 2014-05-08 21:58:21 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-05-08 22:01:07 -0500 |
| commit | c47ca6199d876860da1cdb3b280a59aa908184d4 (patch) | |
| tree | c19c972cb3c9ebaa44307c755ea00fffa71a6eb4 /Library | |
| parent | 9900aece5d5295d2d976bb1f81591c9061080a33 (diff) | |
| download | homebrew-c47ca6199d876860da1cdb3b280a59aa908184d4.tar.bz2 | |
Remove pan
Closes #24171.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/pan.rb | 55 | ||||
| -rw-r--r-- | Library/Homebrew/tap_migrations.rb | 1 |
2 files changed, 1 insertions, 55 deletions
diff --git a/Library/Formula/pan.rb b/Library/Formula/pan.rb deleted file mode 100644 index f91ad1e65..000000000 --- a/Library/Formula/pan.rb +++ /dev/null @@ -1,55 +0,0 @@ -require 'formula' - -class Pan < Formula - homepage 'http://pan.rebelbase.com/' - url 'http://pan.rebelbase.com/download/releases/0.139/source/pan-0.139.tar.bz2' - sha1 '01ea0361a6d81489888e6abb075fd552999c3c60' - revision 1 - - depends_on 'pkg-config' => :build - depends_on 'intltool' => :build - depends_on 'gtk+' - depends_on 'gmime' - depends_on 'enchant' => :optional - depends_on 'd-bus' => :optional - depends_on 'gnutls' => :optional - - # Fix compilation on 64-bit; see https://bugzilla.gnome.org/show_bug.cgi?id=673813 - patch :DATA - - def install - ENV.append 'LDFLAGS', ' -liconv ' # iconv detection is broken. - - system "./configure", "--disable-dependency-tracking", - "--prefix=#{prefix}", - "--disable-glibtest", - "--disable-gtktest" - system "make install" - end -end - -__END__ -diff --git a/pan/gui/gui.cc b/pan/gui/gui.cc -index 2e01ae8..fa7d500 100644 ---- a/pan/gui/gui.cc -+++ b/pan/gui/gui.cc -@@ -2223,8 +2223,8 @@ GUI :: set_queue_size_label (unsigned int running, - - // build the tooltip - // todo : perhaps fix this for mac osx automatically.... -- gulong queued, unused, stopped; -- guint64 KiB_remain; -+ unsigned long queued, unused, stopped; -+ uint64_t KiB_remain; - double KiBps; - int hr, min, sec; - _queue.get_stats (queued, unused, stopped, -@@ -2232,7 +2232,7 @@ GUI :: set_queue_size_label (unsigned int running, - hr, min, sec); - - g_snprintf (tip, sizeof(tip), _("%lu tasks, %s, %.1f KiBps, ETA %d:%02d:%02d"), -- (running+queued), render_bytes(KiB_remain), KiBps, hr, min, sec); -+ static_cast<gulong>(running+queued), render_bytes(static_cast<guint64>(KiB_remain)), KiBps, hr, min, sec); - - // update the gui - gtk_label_set_text (GTK_LABEL(_queue_size_label), str); diff --git a/Library/Homebrew/tap_migrations.rb b/Library/Homebrew/tap_migrations.rb index 53446fd8f..c8fb2e76a 100644 --- a/Library/Homebrew/tap_migrations.rb +++ b/Library/Homebrew/tap_migrations.rb @@ -29,6 +29,7 @@ TAP_MIGRATIONS = { "nlopt" => "homebrew/science", "octave" => "homebrew/science", "opencv" => "homebrew/science", + "pan" => "homebrew/boneyard", "pocl" => "homebrew/science", "qfits" => "homebrew/boneyard", "qrupdate" => "homebrew/science", |
