summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: dd3863f)
raw | patch | inline | side by side (parent: dd3863f)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Wed, 9 May 2007 15:26:57 +0000 (15:26 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Wed, 9 May 2007 15:26:57 +0000 (15:26 +0000) |
program/bindings/Makefile.am | patch | blob | history | |
program/bindings/python/setup.py | patch | blob | history |
index 76d587cbfa7d8ff9c5b01018318ba43d4d531ecb..66e84796409d208275868d13194eeb108ab9bc53 100644 (file)
test -f perl-piped/Makefile && cd perl-piped && $(MAKE) install || true
test -f perl-shared/Makefile && cd perl-shared && $(MAKE) install || true
test -f ruby/Makefile && cd ruby && $(MAKE) EPREFIX=$(exec_prefix) $(RUBY_MAKE_OPTIONS) install || true
- test -d python/build && cd python && env LIBDIR=$(libdir) $(PYTHON) setup.py install --skip-build --prefix=$(DESTDIR)$(prefix) --exec-prefix=$(DESTDIR)$(exec_prefix) || true
+ test -d python/build && cd python && env BUILDLIBDIR=../../src/.libs RUNTIMELIBDIR=$(exec_prefix)/lib $(PYTHON) setup.py install --skip-build --prefix=$(DESTDIR)$(prefix) --exec-prefix=$(DESTDIR)$(exec_prefix) || true
# rules for buildung the ruby module
# RUBYARCHDIR= is to work around in a makefile quirk not sure
# rules for buildung the pyton module
python:
- cd python && env LIBDIR=../../src/.libs $(PYTHON) setup.py build
+ cd python && env BUILDLIBDIR=../../src/.libs RUNTIMELIBDIR=$(exec_prefix)/lib $(PYTHON) setup.py build
# rules for building the perl module
perl_piped: perl-piped/Makefile
index 7912d9207a33fb69fa8a42a831c80b8b706a9749..3fc46ab50e21936450747b06b4f463e9de70bac1 100644 (file)
import sys, os
RRDBASE = os.environ.get('LOCALBASE', '../../src')
-library_dir = os.environ.get('LIBDIR', os.path.join(RRDBASE, 'lib'))
+runtime_library_dir = os.environ.get('RUNTIMELIBDIR')
+library_dir = os.environ.get('BUILDLIBDIR', os.path.join(RRDBASE, 'lib'))
include_dir = os.environ.get('INCDIR', RRDBASE)
setup(name = "py-rrdtool",
"rrdtoolmodule",
["rrdtoolmodule.c"],
libraries=['rrd'],
- runtime_library_dirs=[library_dir],
+ runtime_library_dirs=[runtime_library_dir],
library_dirs=[library_dir],
include_dirs=[include_dir],
)