aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2012-01-06 11:23:53 -0600
committerJack Nagel2012-01-06 11:46:20 -0600
commit38db885266dfa16623226460533030566b5193a6 (patch)
treec2796f2170021bd9af6639fb27a2b994a967c8aa
parent63ab506f11fbde89b155bb6d91baee0ed639ad0d (diff)
downloadhomebrew-38db885266dfa16623226460533030566b5193a6.tar.bz2
Remove useless instances of skip_clean
No need to skip_clean 'etc' or skip_clean 'var' when using the top-level var and etc directories. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
-rw-r--r--Library/Formula/cherokee.rb4
-rw-r--r--Library/Formula/ddclient.rb3
-rw-r--r--Library/Formula/openvpn.rb3
-rw-r--r--Library/Formula/sane-backends.rb3
-rw-r--r--Library/Formula/vpnc.rb3
5 files changed, 1 insertions, 15 deletions
diff --git a/Library/Formula/cherokee.rb b/Library/Formula/cherokee.rb
index 505ab27d4..fd2268c86 100644
--- a/Library/Formula/cherokee.rb
+++ b/Library/Formula/cherokee.rb
@@ -7,10 +7,6 @@ class Cherokee < Formula
depends_on 'gettext'
- skip_clean "var/run"
- skip_clean "var/log"
- skip_clean "var/lib/cherokee/graphs/images"
-
def caveats
<<-EOS.undent
Cherokee is setup to run with your user permissions as part of the
diff --git a/Library/Formula/ddclient.rb b/Library/Formula/ddclient.rb
index 6f42da4aa..7a5f89c04 100644
--- a/Library/Formula/ddclient.rb
+++ b/Library/Formula/ddclient.rb
@@ -5,9 +5,6 @@ class Ddclient < Formula
homepage 'http://sourceforge.net/apps/trac/ddclient'
md5 '7fa417bc65f8f0e6ce78418a4f631988'
- skip_clean 'etc'
- skip_clean 'var'
-
def install
# Adjust default paths in script
inreplace 'ddclient' do |s|
diff --git a/Library/Formula/openvpn.rb b/Library/Formula/openvpn.rb
index 31bb27066..ff67a9704 100644
--- a/Library/Formula/openvpn.rb
+++ b/Library/Formula/openvpn.rb
@@ -8,9 +8,6 @@ class Openvpn < Formula
depends_on 'lzo' => :recommended
- skip_clean 'etc'
- skip_clean 'var'
-
# This patch fixes compilation on Lion
# There is a long history of confusion between these two consts:
# http://www.google.com/search?q=SOL_IP+IPPROTO_IP
diff --git a/Library/Formula/sane-backends.rb b/Library/Formula/sane-backends.rb
index 3d5a1973b..6fb6bf3c1 100644
--- a/Library/Formula/sane-backends.rb
+++ b/Library/Formula/sane-backends.rb
@@ -9,12 +9,11 @@ class SaneBackends < Formula
depends_on 'libtiff'
depends_on 'libusb-compat'
- skip_clean "var/lock/sane"
-
def install
ENV.j1 # Makefile does not seem to be parallel-safe
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
+ "--localstatedir=#{var}",
"--without-gphoto2",
"--enable-local-backends",
"--enable-libusb",
diff --git a/Library/Formula/vpnc.rb b/Library/Formula/vpnc.rb
index be56d2499..7e3c9e10c 100644
--- a/Library/Formula/vpnc.rb
+++ b/Library/Formula/vpnc.rb
@@ -10,9 +10,6 @@ class Vpnc < Formula
fails_with_llvm :build => 2334
- skip_clean 'etc'
- skip_clean 'var'
-
def options
[["--hybrid", "Use vpnc hybrid authentication."]]
end