summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-16 18:57:02 +0000
committerDavid Robillard <d@drobilla.net>2011-05-16 18:57:02 +0000
commit0beb80fdfc298401b3d55a190984fda49142c330 (patch)
tree17a6166dba507b4f68a606cfec0e660daa51bc59
parent111b1a4cb83dbd0c1812bca412e43f6f326d6580 (diff)
downloadlilv-0beb80fdfc298401b3d55a190984fda49142c330.tar.gz
lilv-0beb80fdfc298401b3d55a190984fda49142c330.tar.bz2
lilv-0beb80fdfc298401b3d55a190984fda49142c330.zip
Remove crusty old SWIG stuff
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3267 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--swig/Makefile.am8
-rw-r--r--swig/chicken/Makefile.am15
-rw-r--r--swig/chicken/lilv.setup2
-rw-r--r--swig/chicken/lv2_list.scm13
-rw-r--r--swig/mzscheme/Makefile.am10
-rw-r--r--swig/python/Makefile.am12
6 files changed, 0 insertions, 60 deletions
diff --git a/swig/Makefile.am b/swig/Makefile.am
deleted file mode 100644
index 790bf31..0000000
--- a/swig/Makefile.am
+++ /dev/null
@@ -1,8 +0,0 @@
-EXTRA_DIST = lilv.i
-
-if WITH_SWIG
-
-SUBDIRS = python mzscheme chicken
-
-endif # WITH_SWIG
-
diff --git a/swig/chicken/Makefile.am b/swig/chicken/Makefile.am
deleted file mode 100644
index da3645d..0000000
--- a/swig/chicken/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-EXTRA_DIST = lilv.setup lv2_list.scm
-
-if WITH_CHICKEN
-all:
- rm -f lilv.scm lilv_wrap.c
- swig -DCHICKEN -Wall -chicken -proxy -nounit -I../.. -o lilv_wrap.c -oh lilv_wrap.h ../lilv.i
- tar -czf lilv.egg lilv.setup lilv.scm lilv_wrap.c
-
-#install-exec-local:
-# chicken-setup ./lilv.egg
-
-clean-local:
- rm -f *.[ch] *.so *.o lilv.egg lilv.scm
-endif
-
diff --git a/swig/chicken/lilv.setup b/swig/chicken/lilv.setup
deleted file mode 100644
index bac6aa3..0000000
--- a/swig/chicken/lilv.setup
+++ /dev/null
@@ -1,2 +0,0 @@
-(run (csc -s -o lilv.so lilv.scm lilv_wrap.c -llilv))
-(install-extension 'lilv '("lilv.so"))
diff --git a/swig/chicken/lv2_list.scm b/swig/chicken/lv2_list.scm
deleted file mode 100644
index 3978a12..0000000
--- a/swig/chicken/lv2_list.scm
+++ /dev/null
@@ -1,13 +0,0 @@
-; Least idiomatic scheme bindings ever. Work in progress...
-
-(require-extension lilv)
-
-(define world (lilv-world-new))
-(lilv-world-load-all world)
-
-(define plugins (lilv-world-get-all-plugins world))
-
-(let ((p (lilv-plugins-get-at plugins 0)))
- (display (lilv-value-as-string (lilv-plugin-get-uri p)))
- (newline))
-
diff --git a/swig/mzscheme/Makefile.am b/swig/mzscheme/Makefile.am
deleted file mode 100644
index 42740b2..0000000
--- a/swig/mzscheme/Makefile.am
+++ /dev/null
@@ -1,10 +0,0 @@
-if WITH_MZSCHEME
-all:
- swig -DMZSCHEME -Wall -mzscheme -I../.. -o lilv_mzscheme.c -oh lilv_mzscheme.h ../lilv.i
- gcc -fPIC -shared -Iplt -I../.. \
- -I/usr/include/plt lilv_mzscheme.c -o liblilv_mzscheme.so
-
-clean-local:
- rm -f *.[ch] *.so *.o
-endif
-
diff --git a/swig/python/Makefile.am b/swig/python/Makefile.am
deleted file mode 100644
index 3054524..0000000
--- a/swig/python/Makefile.am
+++ /dev/null
@@ -1,12 +0,0 @@
-EXTRA_DIST = lv2_list.py
-
-if WITH_PYTHON
-all:
- swig -DPYTHON -Wall -python -I../.. -o lilv_python.c -oh lilv_python.h ../lilv.i
- gcc -fPIC -shared -I../.. $(PYTHON_CPPFLAGS) $(PYTHON_EXTRA_LDFLAGS) \
- $(PYTHON_EXTRA_LIBS) $(PYTHON_EXTRA_LDFLAGS) \
- lilv_python.c ../../src/.libs/liblilv.so -o _lilv.so
-
-clean-local:
- rm -f *.[ch] *.so *.o lilv.py
-endif