diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-12-22 08:18:36 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-12-22 08:18:36 +0000 |
commit | c9f48389d998baaf1c602b30a0ef5df5dfffad45 (patch) | |
tree | 88d094ddb6725d582a876422404599eb70438471 /sci-electronics/geda-xgsch2pcb/files | |
parent | Added missed fontforge dependency, thank Agostino Sarubbo for report in bug #... (diff) | |
download | gentoo-2-c9f48389d998baaf1c602b30a0ef5df5dfffad45.tar.gz gentoo-2-c9f48389d998baaf1c602b30a0ef5df5dfffad45.tar.bz2 gentoo-2-c9f48389d998baaf1c602b30a0ef5df5dfffad45.zip |
Verify and potentially improve Python-related code, #316189
(Portage version: 2.2.0_alpha10/cvs/Linux x86_64)
Diffstat (limited to 'sci-electronics/geda-xgsch2pcb/files')
-rw-r--r-- | sci-electronics/geda-xgsch2pcb/files/0.1.3-python.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sci-electronics/geda-xgsch2pcb/files/0.1.3-python.patch b/sci-electronics/geda-xgsch2pcb/files/0.1.3-python.patch new file mode 100644 index 000000000000..83a5bd65c794 --- /dev/null +++ b/sci-electronics/geda-xgsch2pcb/files/0.1.3-python.patch @@ -0,0 +1,22 @@ +diff --git a/Makefile.am b/Makefile.am +index aa8e2d6..e313890 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -22,7 +22,7 @@ SUBDIRS = po data + + bin_SCRIPTS = xgsch2pcb + +-pkglib_PYTHON = lib/xgsch2pcb/pcbmanager.py \ ++pkgpython_PYTHON = lib/xgsch2pcb/pcbmanager.py \ + lib/xgsch2pcb/gsch2pcbproject.py \ + lib/xgsch2pcb/gui.py \ + lib/xgsch2pcb/new_project_gui.py \ +@@ -53,7 +53,7 @@ templatesdir = @templatesdir@ + do_subst = sed -e 's,[@]prefix[@],$(prefix),g' \ + -e 's,[@]PYTHON[@],$(PYTHON),g' \ + -e 's,[@]VERSION[@],$(VERSION),g' \ +- -e 's,[@]pkglibdir[@],$(pkglibdir),g' \ ++ -e 's,[@]pkglibdir[@],$(pkgpythondir),g' \ + -e 's,[@]templatesdir[@],$(templatesdir),g' \ + -e 's,[@]PACKAGE[@],$(PACKAGE),g' + |