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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
class Ghostscript < Formula
homepage "http://www.ghostscript.com/"
stable do
url "http://downloads.ghostscript.com/public/ghostscript-9.15.tar.gz"
sha1 "f53bcc47e912c7bffc2ced62ed9311376fb18bab"
patch :DATA # Uncomment OS X-specific make vars
end
bottle do
revision 3
sha1 "64527567402bb0e06bd3cd2bd1999d3bd3ea09ad" => :yosemite
sha1 "bd885778fee5126a4f2b7bc27ea70e312668c430" => :mavericks
sha1 "41d1130888b464aa27cf46ae4266a517d17d64cb" => :mountain_lion
end
head do
url "git://git.ghostscript.com/ghostpdl.git"
resource "djvu" do
url "git://git.code.sf.net/p/djvu/gsdjvu-git"
end
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
# Uncomment OS X-specific make vars
patch do
url "https://gist.githubusercontent.com/jacknagel/9559501/raw/9709b3234cc888d29f717838650d29e7062da917/gs.patch"
sha1 "65c99df4f0d57368a086154d34722f5c4b9c84cc"
end
end
option "with-djvu", "Build drivers for DjVU file format"
depends_on "pkg-config" => :build
depends_on "jpeg"
depends_on "libtiff"
depends_on "jbig2dec"
depends_on "little-cms2"
depends_on "libpng"
depends_on :x11 => ["2.7.2", :optional]
depends_on "djvulibre" if build.with? "djvu"
depends_on "freetype"
conflicts_with "gambit-scheme", :because => "both install `gsc` binaries"
# http://sourceforge.net/projects/gs-fonts/
resource "fonts" do
url "https://downloads.sourceforge.net/project/gs-fonts/gs-fonts/8.11%20%28base%2035%2C%20GPL%29/ghostscript-fonts-std-8.11.tar.gz"
sha1 "2a7198e8178b2e7dba87cb5794da515200b568f5"
end
# http://djvu.sourceforge.net/gsdjvu.html
resource "djvu" do
url "https://downloads.sourceforge.net/project/djvu/GSDjVu/1.6/gsdjvu-1.6.tar.gz"
sha1 "a8c5520d698d8be558a1957b4e5108cba68822ef"
end
def move_included_source_copies
# If the install version of any of these doesn't match
# the version included in ghostscript, we get errors
# Taken from the MacPorts portfile - http://bit.ly/ghostscript-portfile
renames = %w[freetype jbig2dec jpeg libpng tiff]
renames.each { |lib| mv lib, "#{lib}_local" }
end
def install
src_dir = build.head? ? "gs" : "."
resource("djvu").stage do
inreplace "gsdjvu.mak", "$(GL", "$(DEV"
(buildpath+"devices").install "gdevdjvu.c"
(buildpath+"lib").install "ps2utf8.ps"
ENV["EXTRA_INIT_FILES"] = "ps2utf8.ps"
(buildpath/"devices/contrib.mak").open("a") { |f| f.write(File.read("gsdjvu.mak")) }
end if build.with? "djvu"
cd src_dir do
move_included_source_copies
args = %W[
--prefix=#{prefix}
--disable-cups
--disable-compile-inits
--disable-gtk
--with-system-libtiff
]
args << "--without-x" if build.without? "x11"
if build.head?
system "./autogen.sh", *args
else
system "./configure", *args
end
# versioned stuff in main tree is pointless for us
inreplace "Makefile", "/$(GS_DOT_VERSION)", ""
inreplace "Makefile" do |s|
s.change_make_var!("DEVICE_DEVS17", "$(DD)djvumask.dev $(DD)djvusep.dev")
end if build.with? "djvu"
# Install binaries and libraries
system "make", "install"
system "make", "install-so"
end
(share+"ghostscript/fonts").install resource("fonts")
(man+"de").rmtree
end
test do
ps = test_fixtures("test.ps")
assert_match /Hello World!/, shell_output("#{bin}/ps2ascii #{ps}")
end
end
__END__
diff --git a/base/unix-dll.mak b/base/unix-dll.mak
index ae2d7d8..4f4daed 100644
--- a/base/unix-dll.mak
+++ b/base/unix-dll.mak
@@ -64,12 +64,12 @@ GS_SONAME_MAJOR_MINOR=$(GS_SONAME_BASE)$(GS_SOEXT)$(SO_LIB_VERSION_SEPARATOR)$(G
# MacOS X
-#GS_SOEXT=dylib
-#GS_SONAME=$(GS_SONAME_BASE).$(GS_SOEXT)
-#GS_SONAME_MAJOR=$(GS_SONAME_BASE).$(GS_VERSION_MAJOR).$(GS_SOEXT)
-#GS_SONAME_MAJOR_MINOR=$(GS_SONAME_BASE).$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR).$(GS_SOEXT)
+GS_SOEXT=dylib
+GS_SONAME=$(GS_SONAME_BASE).$(GS_SOEXT)
+GS_SONAME_MAJOR=$(GS_SONAME_BASE).$(GS_VERSION_MAJOR).$(GS_SOEXT)
+GS_SONAME_MAJOR_MINOR=$(GS_SONAME_BASE).$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR).$(GS_SOEXT)
#LDFLAGS_SO=-dynamiclib -flat_namespace
-#LDFLAGS_SO_MAC=-dynamiclib -install_name $(GS_SONAME_MAJOR_MINOR)
+LDFLAGS_SO_MAC=-dynamiclib -install_name __PREFIX__/lib/$(GS_SONAME_MAJOR_MINOR)
#LDFLAGS_SO=-dynamiclib -install_name $(FRAMEWORK_NAME)
GS_SO=$(BINDIR)/$(GS_SONAME)
|