summaryrefslogtreecommitdiff
path: root/graphics/inventor/files/patch-make__ivcommonrules
diff options
context:
space:
mode:
authorJason E. Hale <jhale@FreeBSD.org>2014-06-25 14:51:11 +0000
committerJason E. Hale <jhale@FreeBSD.org>2014-06-25 14:51:11 +0000
commit68b94b6a4c4f64cc866281ed85ea5e85502b3078 (patch)
tree4a94088e081917d94bdce1684241c311fb581cfe /graphics/inventor/files/patch-make__ivcommonrules
parentSupport staging. (diff)
- Support staging
- Add LICENSE - Convert WITH_DEBUG into DEBUG option - Strip binaries - Remove superfluous leading words from COMMENT - Pet portlint(1) - Clean up pkg-descr - Bump PORTREVISION Approved by: portmgr (blanket approval)
Notes
Notes: svn path=/head/; revision=359251
Diffstat (limited to 'graphics/inventor/files/patch-make__ivcommonrules')
-rw-r--r--graphics/inventor/files/patch-make__ivcommonrules34
1 files changed, 34 insertions, 0 deletions
diff --git a/graphics/inventor/files/patch-make__ivcommonrules b/graphics/inventor/files/patch-make__ivcommonrules
new file mode 100644
index 000000000000..1a7dd89343c9
--- /dev/null
+++ b/graphics/inventor/files/patch-make__ivcommonrules
@@ -0,0 +1,34 @@
+--- ./make/ivcommonrules.orig 2014-06-25 10:16:42.000000000 -0400
++++ ./make/ivcommonrules 2014-06-25 10:26:35.000000000 -0400
+@@ -31,11 +31,11 @@
+
+ install_ivlibdso: $(LIBDSO)
+ mkdir -p $(IVLIBDIR)
+- $(INSTALL) -m 755 $< $(IVLIBDIR)
++ $(INSTALL) $(INSTALL_STRIP) -m 755 $< $(IVLIBDIR)
+
+ if [ "$(LIBTYPE)" = "debug" ]; then \
+ mkdir -p $(IVDLIBDIR); \
+- $(INSTALL) -m 755 $< $(IVDLIBDIR); \
++ $(INSTALL) $(INSTALL_STRIP) -m 755 $< $(IVDLIBDIR); \
+ fi
+
+ install_ivheaders:
+@@ -96,7 +96,7 @@
+
+ install_ivbin: $(PROGRAM)
+ mkdir -p $(IVBINDIR)
+- $(INSTALL) -m 755 $(PROGRAM) $(IVBINDIR)
++ $(INSTALL) $(INSTALL_STRIP) -m 755 $(PROGRAM) $(IVBINDIR)
+
+ install_ivscript:
+ mkdir -p $(IVBINDIR)
+@@ -109,7 +109,7 @@
+
+ install_ivdemo: $(DEMO)
+ mkdir -p $(IVDEMOBINDIR) $(IVDEMODATADIR)
+- $(INSTALL) -m 755 $(DEMO) $(IVDEMOBINDIR)
++ $(INSTALL) $(INSTALL_STRIP) -m 755 $(DEMO) $(IVDEMOBINDIR)
+ if [ -e $(DEMO).RUNME ]; then \
+ $(INSTALL) -m 755 $(DEMO).RUNME $(IVDEMOBINDIR); \
+ if [ "$(IVPREFIX)" != "/usr" ]; then \