class TomcatNative < Formula desc "Lets Tomcat use some native resources for performance" homepage "https://tomcat.apache.org/native-doc/" url "https://www.apache.org/dyn/closer.cgi?path=tomcat/tomcat-connectors/native/1.2.23/source/tomcat-native-1.2.23-src.tar.gz" mirror "https://archive.apache.org/dist/tomcat/tomcat-connectors/native/1.2.23/source/tomcat-native-1.2.23-src.tar.gz" sha256 "5ae5940f759cfdd68384ecf61f2c4fd9b01eb430ab0d349c0b197df0b0c0c3c7" bottle do cellar :any sha256 "b93434e2c5694dcf493a937959020ceca155d753d2f2d2dc37b45547e4f8b608" => :mojave sha256 "8a58fa02ce05670418e2b11b0c2eded95500cd12b69fcb6e03fba2b7349bea9e" => :high_sierra sha256 "a8a13ca4ae51236cd82cc45fda86589f0430c274784b0ead31b4d03109844931" => :sierra end depends_on "libtool" => :build depends_on "apr" depends_on :java => "1.7+" depends_on "openssl" depends_on "tomcat" def install cd "native" do system "./configure", "--prefix=#{prefix}", "--with-apr=#{Formula["apr"].opt_prefix}", "--with-java-home=#{ENV["JAVA_HOME"]}", "--with-ssl=#{Formula["openssl"].opt_prefix}" # fixes occasional compiling issue: glibtool: compile: specify a tag with `--tag' args = ["LIBTOOL=glibtool --tag=CC"] # fixes a broken link in mountain lion's apr-1-config (it should be /XcodeDefault.xctoolchain/): # usr/local/opt/libtool/bin/glibtool: line 1125: /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.8.xctoolchain/usr/bin/cc: No such file or directory args << "CC=#{ENV.cc}" system "make", *args system "make", "install" end end def caveats; <<~EOS In order for tomcat's APR lifecycle listener to find this library, you'll need to add it to java.library.path. This can be done by adding this line to $CATALINA_HOME/bin/setenv.sh CATALINA_OPTS=\"$CATALINA_OPTS -Djava.library.path=#{opt_lib}\" If $CATALINA_HOME/bin/setenv.sh doesn't exist, create it and make it executable. EOS end end