| 1 | # This file can be invoked from the various frameworkinstall... targets in the
|
|---|
| 2 | # main Makefile. The next couple of variables are overridden on the
|
|---|
| 3 | # commandline in that case.
|
|---|
| 4 |
|
|---|
| 5 | VERSION=@VERSION@
|
|---|
| 6 | builddir = ..
|
|---|
| 7 | srcdir=@srcdir@
|
|---|
| 8 | prefix=@prefix@
|
|---|
| 9 | LIBDEST=$(prefix)/lib/python$(VERSION)
|
|---|
| 10 | RUNSHARED=@RUNSHARED@
|
|---|
| 11 | BUILDEXE=@BUILDEXEEXT@
|
|---|
| 12 | BUILDPYTHON=$(builddir)/python$(BUILDEXE)
|
|---|
| 13 | DESTDIR=
|
|---|
| 14 | LDFLAGS=@LDFLAGS@
|
|---|
| 15 | FRAMEWORKUNIXTOOLSPREFIX=@FRAMEWORKUNIXTOOLSPREFIX@
|
|---|
| 16 |
|
|---|
| 17 | # These are normally glimpsed from the previous set
|
|---|
| 18 | bindir=$(prefix)/bin
|
|---|
| 19 | PYTHONAPPSDIR=/Applications/MacPython $(VERSION)
|
|---|
| 20 | APPINSTALLDIR=$(prefix)/Resources/Python.app
|
|---|
| 21 |
|
|---|
| 22 | # Variables for installing the "normal" unix binaries
|
|---|
| 23 | INSTALLED_PYTHONAPP=$(APPINSTALLDIR)/Contents/MacOS/Python
|
|---|
| 24 |
|
|---|
| 25 | # Items more-or-less copied from the main Makefile
|
|---|
| 26 | DIRMODE=755
|
|---|
| 27 | FILEMODE=644
|
|---|
| 28 | INSTALL=@INSTALL@
|
|---|
| 29 | INSTALL_SYMLINK=ln -fsn
|
|---|
| 30 | INSTALL_PROGRAM=@INSTALL_PROGRAM@
|
|---|
| 31 | INSTALL_SCRIPT= @INSTALL_SCRIPT@
|
|---|
| 32 | INSTALL_DATA=@INSTALL_DATA@
|
|---|
| 33 | LN=@LN@
|
|---|
| 34 | STRIPFLAG=-s
|
|---|
| 35 | CPMAC=/Developer/Tools/CpMac
|
|---|
| 36 |
|
|---|
| 37 | APPTEMPLATE=$(srcdir)/Resources/app
|
|---|
| 38 | APPSUBDIRS=MacOS Resources Resources/English.lproj \
|
|---|
| 39 | Resources/English.lproj/Documentation \
|
|---|
| 40 | Resources/English.lproj/Documentation/doc \
|
|---|
| 41 | Resources/English.lproj/Documentation/ide
|
|---|
| 42 | DOCDIR=$(srcdir)/Resources/app/Resources/English.lproj/Documentation
|
|---|
| 43 | DOCINDEX=$(DOCDIR)/"Documentation idx"
|
|---|
| 44 | CACHERSRC=$(srcdir)/scripts/cachersrc.py
|
|---|
| 45 | compileall=$(srcdir)/../Lib/compileall.py
|
|---|
| 46 |
|
|---|
| 47 | installapps: install_Python install_BuildApplet install_PythonLauncher \
|
|---|
| 48 | install_IDLE checkapplepython install_pythonw install_versionedtools
|
|---|
| 49 |
|
|---|
| 50 | install_pythonw: pythonw
|
|---|
| 51 | $(INSTALL_PROGRAM) $(STRIPFLAG) pythonw "$(DESTDIR)$(prefix)/bin/pythonw$(VERSION)"
|
|---|
| 52 | $(INSTALL_PROGRAM) $(STRIPFLAG) pythonw "$(DESTDIR)$(prefix)/bin/python$(VERSION)"
|
|---|
| 53 | ln -sf python$(VERSION) "$(DESTDIR)$(prefix)/bin/python"
|
|---|
| 54 | ln -sf pythonw$(VERSION) "$(DESTDIR)$(prefix)/bin/pythonw"
|
|---|
| 55 |
|
|---|
| 56 | #
|
|---|
| 57 | # Install unix tools in /usr/local/bin. These are just aliases for the
|
|---|
| 58 | # actual installation inside the framework.
|
|---|
| 59 | #
|
|---|
| 60 | installunixtools:
|
|---|
| 61 | if [ ! -d "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ]; then \
|
|---|
| 62 | $(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ;\
|
|---|
| 63 | fi
|
|---|
| 64 | for fn in python pythonw idle pydoc python-config smtpd.py \
|
|---|
| 65 | python$(VERSION) pythonw$(VERSION) idle$(VERSION) \
|
|---|
| 66 | pydoc$(VERSION) python-config$(VERSION) smtpd$(VERSION).py ;\
|
|---|
| 67 | do \
|
|---|
| 68 | ln -fs "$(prefix)/bin/$${fn}" "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin/$${fn}" ;\
|
|---|
| 69 | done
|
|---|
| 70 |
|
|---|
| 71 | #
|
|---|
| 72 | # Like installunixtools, but only install links to the versioned binaries.
|
|---|
| 73 | #
|
|---|
| 74 | altinstallunixtools:
|
|---|
| 75 | if [ ! -d "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ]; then \
|
|---|
| 76 | $(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ;\
|
|---|
| 77 | fi
|
|---|
| 78 | for fn in python$(VERSION) pythonw$(VERSION) idle$(VERSION) \
|
|---|
| 79 | pydoc$(VERSION) python-config$(VERSION) smtpd$(VERSION).py ;\
|
|---|
| 80 | do \
|
|---|
| 81 | ln -fs "$(prefix)/bin/$${fn}" "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin/$${fn}" ;\
|
|---|
| 82 | done
|
|---|
| 83 |
|
|---|
| 84 |
|
|---|
| 85 | # By default most tools are installed without a version in their basename, to
|
|---|
| 86 | # make it easier to install (and use) several python versions side-by-side move
|
|---|
| 87 | # the tools to a version-specific name and add the non-versioned name as an
|
|---|
| 88 | # alias.
|
|---|
| 89 | install_versionedtools:
|
|---|
| 90 | for fn in idle pydoc python-config ;\
|
|---|
| 91 | do \
|
|---|
| 92 | if [ -h "$(DESTDIR)$(prefix)/bin/$${fn}" ]; then \
|
|---|
| 93 | continue ;\
|
|---|
| 94 | fi ;\
|
|---|
| 95 | mv "$(DESTDIR)$(prefix)/bin/$${fn}" "$(DESTDIR)$(prefix)/bin/$${fn}$(VERSION)" ;\
|
|---|
| 96 | ln -sf "$${fn}$(VERSION)" "$(DESTDIR)$(prefix)/bin/$${fn}" ;\
|
|---|
| 97 | done
|
|---|
| 98 | if [ ! -h "$(DESTDIR)$(prefix)/bin/smtpd.py" ]; then \
|
|---|
| 99 | mv "$(DESTDIR)$(prefix)/bin/smtpd.py" "$(DESTDIR)$(prefix)/bin/smtpd$(VERSION).py" ;\
|
|---|
| 100 | ln -sf "smtpd$(VERSION).py" "$(DESTDIR)$(prefix)/bin/smtpd.py" ;\
|
|---|
| 101 | fi
|
|---|
| 102 |
|
|---|
| 103 |
|
|---|
| 104 | pythonw: $(srcdir)/Tools/pythonw.c
|
|---|
| 105 | $(CC) $(LDFLAGS) -o $@ $(srcdir)/Tools/pythonw.c \
|
|---|
| 106 | -DPYTHONWEXECUTABLE='"$(APPINSTALLDIR)/Contents/MacOS/Python"'
|
|---|
| 107 |
|
|---|
| 108 |
|
|---|
| 109 | install_PythonLauncher:
|
|---|
| 110 | cd PythonLauncher && make install DESTDIR=$(DESTDIR)
|
|---|
| 111 |
|
|---|
| 112 | install_Python:
|
|---|
| 113 | @if test ! -f $(DOCINDEX); then \
|
|---|
| 114 | echo WARNING: you should run Apple Help Indexing Tool on $(DOCDIR); \
|
|---|
| 115 | fi
|
|---|
| 116 | @for i in "$(PYTHONAPPSDIR)" "$(APPINSTALLDIR)" "$(APPINSTALLDIR)/Contents"; do \
|
|---|
| 117 | if test ! -d "$(DESTDIR)$$i"; then \
|
|---|
| 118 | echo "Creating directory $(DESTDIR)$$i"; \
|
|---|
| 119 | $(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$$i"; \
|
|---|
| 120 | fi;\
|
|---|
| 121 | done
|
|---|
| 122 | @for i in $(APPSUBDIRS); do \
|
|---|
| 123 | if test ! -d "$(DESTDIR)$(APPINSTALLDIR)/Contents/$$i"; then \
|
|---|
| 124 | echo "Creating directory $(DESTDIR)$(APPINSTALLDIR)/Contents/$$i"; \
|
|---|
| 125 | $(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$(APPINSTALLDIR)/Contents/$$i"; \
|
|---|
| 126 | else true; \
|
|---|
| 127 | fi; \
|
|---|
| 128 | done
|
|---|
| 129 | @for d in . $(APPSUBDIRS); \
|
|---|
| 130 | do \
|
|---|
| 131 | a=$(APPTEMPLATE)/$$d; \
|
|---|
| 132 | if test ! -d $$a; then continue; else true; fi; \
|
|---|
| 133 | b="$(DESTDIR)$(APPINSTALLDIR)/Contents/$$d"; \
|
|---|
| 134 | for i in $$a/*; \
|
|---|
| 135 | do \
|
|---|
| 136 | case $$i in \
|
|---|
| 137 | *CVS) ;; \
|
|---|
| 138 | *.svn) ;; \
|
|---|
| 139 | *.py[co]) ;; \
|
|---|
| 140 | *.orig) ;; \
|
|---|
| 141 | *~) ;; \
|
|---|
| 142 | *idx) \
|
|---|
| 143 | echo $(CPMAC) "$$i" $$b; \
|
|---|
| 144 | $(CPMAC) "$$i" "$$b"; \
|
|---|
| 145 | ;; \
|
|---|
| 146 | *) \
|
|---|
| 147 | if test -d $$i; then continue; fi; \
|
|---|
| 148 | if test -x $$i; then \
|
|---|
| 149 | echo $(INSTALL_SCRIPT) "$$i" "$$b"; \
|
|---|
| 150 | $(INSTALL_SCRIPT) "$$i" "$$b"; \
|
|---|
| 151 | else \
|
|---|
| 152 | echo $(INSTALL_DATA) "$$i" "$$b"; \
|
|---|
| 153 | $(INSTALL_DATA) "$$i" "$$b"; \
|
|---|
| 154 | fi;; \
|
|---|
| 155 | esac; \
|
|---|
| 156 | done; \
|
|---|
| 157 | done
|
|---|
| 158 | $(INSTALL_PROGRAM) $(STRIPFLAG) $(BUILDPYTHON) "$(DESTDIR)$(APPINSTALLDIR)/Contents/MacOS/Python"
|
|---|
| 159 |
|
|---|
| 160 | install_IDLE:
|
|---|
| 161 | cd IDLE && make install
|
|---|
|
|---|