aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/luma/files
diff options
context:
space:
mode:
authorpav <pav@FreeBSD.org>2004-06-03 05:33:42 +0800
committerpav <pav@FreeBSD.org>2004-06-03 05:33:42 +0800
commitb3f47c81b64d897c0a8f563f3caeec77aad0d92a (patch)
tree2e34a9a9a8fa70f4acd4459f03b3c50e99466c12 /sysutils/luma/files
parent3ef8d9a8dd1a19ea1146e58a40935660a25b30ba (diff)
downloadfreebsd-ports-gnome-b3f47c81b64d897c0a8f563f3caeec77aad0d92a.tar.gz
freebsd-ports-gnome-b3f47c81b64d897c0a8f563f3caeec77aad0d92a.tar.zst
freebsd-ports-gnome-b3f47c81b64d897c0a8f563f3caeec77aad0d92a.zip
- Update to 1.3
PR: ports/67498 Submitted by: Alexander Novitsky <alecn2002@yandex.ru> (maintainer)
Diffstat (limited to 'sysutils/luma/files')
-rw-r--r--sysutils/luma/files/patch-install.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/sysutils/luma/files/patch-install.py b/sysutils/luma/files/patch-install.py
new file mode 100644
index 000000000000..9c56f975aa04
--- /dev/null
+++ b/sysutils/luma/files/patch-install.py
@@ -0,0 +1,28 @@
+--- install.py.orig Tue May 18 22:01:47 2004
++++ install.py Wed Jun 2 22:09:53 2004
+@@ -137,6 +137,7 @@
+ helpString = """Install options:
+ --prefix=PATH \t\t Install path (e.g. /usr/local)
+ --compile-only \t Just compile source files. No installation.
++ build \t The same as --compile-only
+ \n"""
+ print helpString
+ sys.exit(1)
+@@ -166,7 +167,7 @@
+ return
+
+ for x in sys.argv[1:]:
+- if x == "--compile-only":
++ if (x == "--compile-only") or (x == "build"):
+ global compileOnly
+ compileOnly = True
+ elif x[:9] == "--prefix=":
+@@ -174,7 +175,7 @@
+ prefixDir = x[9:]
+ if (prefixDir[-1] == "/") and (len(prefixDir) > 1):
+ prefixDir = prefixDir[:-1]
+- else:
++ elif x != "install":
+ print "Unknown options. Exiting..."
+ sys.exit(1)
+