diff options
-rw-r--r-- | conf/checksums.ini | 4 | ||||
-rw-r--r-- | packages/geda/files/skip-python-checks.patch | 42 | ||||
-rw-r--r-- | packages/geda/geda-xgsch2pcb_0.1.2.bb | 19 |
3 files changed, 65 insertions, 0 deletions
diff --git a/conf/checksums.ini b/conf/checksums.ini index fb81a3008b..837bd0283f 100644 --- a/conf/checksums.ini +++ b/conf/checksums.ini @@ -6034,6 +6034,10 @@ sha256=dfe4d3d3033e92254aa5e00fa7ab6921589747604269bc7b01e59ba9b630e82c md5=6555466492f3273dbefb772bd4ffd486 sha256=8140ff430e89c8564efabbc24da0d9b2858d5ac5e982dab9923eaf3b46a8aacb +[http://geda.seul.org/dist/geda-xgsch2pcb-0.1.2.tar.gz] +md5=bcae4dc646440ba8129854621f56acc6 +sha256=5af6001401a6bc04c075474be5d8aeb2bdb2ca3e509022c2fc55ca7c7f310256 + [ftp://ftp.billsgames.com/unix/x/gemdropx/src/gemdropx-0.9.tar.gz] md5=fd0337e89778e2dba74461c555ea8e42 sha256=e50495d292a1d456c28044efbf07c16d8865f8d95e1caba86f4c5b2e3fb1d28f diff --git a/packages/geda/files/skip-python-checks.patch b/packages/geda/files/skip-python-checks.patch new file mode 100644 index 0000000000..8043ff340c --- /dev/null +++ b/packages/geda/files/skip-python-checks.patch @@ -0,0 +1,42 @@ +Index: geda-xgsch2pcb-0.1.2/configure.ac +=================================================================== +--- geda-xgsch2pcb-0.1.2.orig/configure.ac 2008-01-11 05:16:07.000000000 +0000 ++++ geda-xgsch2pcb-0.1.2/configure.ac 2008-12-09 15:03:31.000000000 +0000 +@@ -39,15 +39,7 @@ + + AC_DEFUN([AC_PYTHON_MODULE],[ + AC_MSG_CHECKING([for python module $1]) +- $PYTHON -c "import $1" > /dev/null 2>&1 +- if test $? -eq 0; then +- AC_MSG_RESULT(yes) +- else +- AC_MSG_RESULT(no) +- if test -n "$2"; then +- AC_MSG_ERROR([python module $1 is required]) +- fi +- fi ++ AC_MSG_RESULT(skipping) + ]) + + +@@ -135,20 +127,6 @@ + AC_MSG_CHECKING(for gtk+ >= $GTK_WANTVERSION) + cat > conftest.py <<[EOF + import sys +-try: +- import gtk +- ver = gtk.gtk_version +- sys.stdout.write(".".join(map(str, ver))) +- if len(sys.argv) > 1: +- wantver = sys.argv[1].split(".") +- wantver = map(int, wantver) +- for i in range(len(wantver)): +- if i > len(ver): +- break +- if wantver[i] > ver[i]: +- sys.exit(1) +-except: +- sys.exit(1) + sys.exit(0) + EOF] + diff --git a/packages/geda/geda-xgsch2pcb_0.1.2.bb b/packages/geda/geda-xgsch2pcb_0.1.2.bb new file mode 100644 index 0000000000..dfa500e165 --- /dev/null +++ b/packages/geda/geda-xgsch2pcb_0.1.2.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "Graphical front-end for the gschem -> pcb workflow" +LICENSE = "GPLv2" +HOMEPAGE = "http://geda.seul.org" +FILES_${PN} += "${datadir}/icons" + +DEPENDS = "python-native" +# python-codecs for gettext.py +RDEPENDS = "geda-utils python-codecs python-dbus python-pygtk python-subprocess" + +SRC_URI = "http://geda.seul.org/dist/${P}.tar.gz \ + file://skip-python-checks.patch;patch=1" + +inherit autotools + +EXTRA_OECONF = "--disable-update-desktop-database" + +do_configure_prepend() { + sed -i -e s:\\\$\(PYTHON\):${bindir}/python:g Makefile.am +} |