Commit fc274fc8 authored by sumpfralle's avatar sumpfralle

renamed "HOWTO.TXT" to "technical_details.txt"

fixed space-issue for windows start menu link


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@611 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent fcecc5aa
include LICENSE.TXT
include HOWTO.TXT
include technical_details.txt
include INSTALL.TXT
include COPYING.TXT
include README.TXT
......
......@@ -9,4 +9,3 @@ diff -Nur -x '*.orig' -x '*~' pycam-0.2.2//setup.py pycam-0.2.2.new//setup.py
+ scripts = ['pycam'],
data_files=[("share/doc/pycam",[
"COPYING.TXT",
"HOWTO.TXT",
......@@ -5,9 +5,8 @@ index 3046304..9f66f6d 100755
@@ -45,13 +45,9 @@ setup(
],
scripts = ['pycam', 'pycam_win32_postinstall.py'],
data_files=[("share/doc/pycam",[
data_files=[("share/pycam/doc",[
- "COPYING.TXT",
"HOWTO.TXT",
- "INSTALL.TXT",
- "LICENSE.TXT",
"README.TXT",
......
......@@ -44,13 +44,13 @@ START_MENU_SUBDIR = os.path.join(START_MENU_BASEDIR, "PyCAM")
# create a start menu item for pycam
PYTHON_EXE = os.path.join(distutils.sysconfig.EXEC_PREFIX, "pythonw.exe")
START_SCRIPT = os.path.join(distutils.sysconfig.EXEC_PREFIX, "Scripts", "pycam")
# surround the start script with quotes to avoid space-issues
START_SCRIPT = "'%s'" % os.path.join(distutils.sysconfig.EXEC_PREFIX, "Scripts", "pycam")
PYTHON_DATA_DIR = os.path.join(distutils.sysconfig.PREFIX, "share", "pycam")
PYTHON_DOC_DIR = os.path.join(distutils.sysconfig.PREFIX, "share", "pycam", "doc")
# add some more doc files
DOC_FILES = [
("HOWTO.TXT", "Introduction"),
("LICENSE.TXT", "License"),
("README.TXT", "Readme")]
WEB_LINKS = [
......@@ -59,7 +59,7 @@ WEB_LINKS = [
(r"http://sourceforge.net/projects/pycam/forums", "Forum Discussions"),
(r"http://sourceforge.net/apps/mediawiki/pycam/", "Wiki")]
MENU_ITEMS = map(lambda v: (os.path.join(PYTHON_DATA_DIR, v[0]), v[1]), DOC_FILES)
MENU_ITEMS = map(lambda v: (os.path.join(PYTHON_DOC_DIR, v[0]), v[1]), DOC_FILES)
MENU_ITEMS.extend(WEB_LINKS)
action = sys.argv[1]
......
......@@ -7,7 +7,7 @@ packager = Lars Kruse <devel@sumpfralle.de>
doc_files = Changelog
README.TXT
INSTALL.TXT
HOWTO.TXT
technical_details.txt
LICENSE.TXT
COPYING.TXT
doc/
......
......@@ -77,9 +77,9 @@ Basically you will need Python, GTK and OpenGL.
"pycam.Physics",
],
scripts = ['pycam', 'pycam_win32_postinstall.py'],
data_files=[("share/doc/pycam",[
data_files=[("share/pycam/doc",[
"COPYING.TXT",
"HOWTO.TXT",
"technical_details.txt",
"INSTALL.TXT",
"LICENSE.TXT",
"README.TXT",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment