88779ade49
Closes Homebrew/homebrew#14653.
31 lines
795 B
Ruby
31 lines
795 B
Ruby
require 'formula'
|
|
|
|
class Rinetd < Formula
|
|
url 'http://www.boutell.com/rinetd/http/rinetd.tar.gz'
|
|
homepage 'http://www.boutell.com/rinetd/'
|
|
sha1 '2498fa03c2ef50bf924ffd0a034d5de5e3258f21'
|
|
version '0.62'
|
|
|
|
def install
|
|
inreplace 'rinetd.c' do |s|
|
|
s.gsub! "/etc/rinetd.conf", "#{etc}/rinetd.conf"
|
|
s.gsub! "/var/run/rinetd.pid", "#{var}/rinetd.pid"
|
|
end
|
|
|
|
system "make"
|
|
bin.install "rinetd"
|
|
man8.install "rinetd.8"
|
|
conf = etc+"rinetd.conf"
|
|
conf.write(conf_file) unless conf.exist?
|
|
end
|
|
|
|
def conf_file; <<-EOF.undent
|
|
# forwarding rules go here
|
|
#
|
|
# you may specify allow and deny rules after a specific forwarding rule
|
|
# to apply to only that forwarding rule
|
|
#
|
|
# bindadress bindport connectaddress connectport
|
|
EOF
|
|
end
|
|
end
|