diff options
author | Maho Nakata <maho@FreeBSD.org> | 2003-07-27 15:22:31 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2003-07-27 15:22:31 +0000 |
commit | ab050f80c4aa0fee238d5c233bc488468d30067d (patch) | |
tree | 7ae50a4144c73039ef4384d46d65f3300a512164 /graphics/megapov/files/patch-Makefile | |
parent | Add an explicit dependency on EMACS. (diff) |
Added a new port, megapov.
This is a extension of povray (famous ray tracer),
having a lot of new features.
# Clothray cloth simulation system
# Sim-POV mechanics simulation system
# Film exposure simulation
# Text object alignment
# Frame_Step feature
...
and much more.
Diffstat (limited to 'graphics/megapov/files/patch-Makefile')
-rw-r--r-- | graphics/megapov/files/patch-Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/graphics/megapov/files/patch-Makefile b/graphics/megapov/files/patch-Makefile new file mode 100644 index 000000000000..cd9a1b845f2b --- /dev/null +++ b/graphics/megapov/files/patch-Makefile @@ -0,0 +1,32 @@ +--- Makefile.org Sat Jul 26 13:29:28 2003 ++++ Makefile Sat Jul 26 13:30:01 2003 +@@ -15,8 +15,8 @@ + ############################################################################## + + +-libdir = /usr/local/share/megapov +-docdir = /usr/local/share/doc/megapov-1.0 ++libdir = ${PREFIX}/share/megapov ++docdir = ${PREFIX}/share/doc/megapov-1.0 + + # + # make stuff +@@ -32,14 +32,14 @@ + + install: + cd unix && $(MAKE) install +- @if test ! -d /usr/local/share; \ +- then mkdir /usr/local/share; \ ++ @if test ! -d ${PREFIX}/share; \ ++ then mkdir ${PREFIX}/share; \ + fi; + @if test ! -d $(libdir); \ + then mkdir $(libdir); \ + fi; +- @if test ! -d /usr/local/share/doc; \ +- then mkdir /usr/local/share/doc; \ ++ @if test ! -d ${PREFIX}/share/doc; \ ++ then mkdir ${PREFIX}/share/doc; \ + fi; + @if test ! -d $(docdir); \ + then mkdir $(docdir); \ |