-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Drop dependence on pychm due some incompatible.
Depend on chmlib directly. - As result files placement has changed. PR: ports/76152 Submitted by: maintainer
- Loading branch information
Sergey Matveychuk
authored and
Sergey Matveychuk
committed
Feb 27, 2005
1 parent
6ac5448
commit 5db761d
Showing
3 changed files
with
40 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,33 @@ | ||
--- setup.py.orig Tue Feb 22 19:18:40 2005 | ||
+++ setup.py Tue Feb 22 19:19:26 2005 | ||
@@ -14,7 +14,7 @@ | ||
--- setup.py.orig Fri Aug 15 08:11:14 2003 | ||
+++ setup.py Sat Feb 26 12:29:32 2005 | ||
@@ -12,9 +12,9 @@ | ||
url = "archmage.sf.net", | ||
version = "0.0.6", | ||
|
||
py_modules = ['chmlib', 'CHM', 'mod_chm'], | ||
scripts = ['archmage'], | ||
- py_modules = ['chmlib', 'CHM', 'mod_chm'], | ||
- scripts = ['archmage'], | ||
- data_files = [ ('/etc/', [ 'arch.conf' ] ), | ||
+ py_modules = ['archmage.chmlib', 'archmage.CHM', 'archmage.mod_chm'], | ||
+ scripts = ['archmage/archmage'], | ||
+ data_files = [ ('etc/', [ 'arch.conf' ] ), | ||
( 'share/archmage/templates/', | ||
['templates/arch_contents.html', | ||
'templates/arch_frameset.html', | ||
@@ -65,13 +65,4 @@ | ||
@@ -65,13 +65,11 @@ | ||
'templates/icons/7.gif', | ||
'templates/icons/8.gif', | ||
'templates/icons/9.gif']) ], | ||
- ext_modules = [ Extension(name = '_chmlib', | ||
- sources = | ||
+ ext_modules = [ Extension(name = 'archmage._chmlib', | ||
sources = | ||
- [ 'chmlib/chm_lib.c', | ||
- 'chmlib/wrapper.c', | ||
- 'chmlib/lzx.c', | ||
- 'chmlib/az_chmlib_add.c' | ||
- ], | ||
+ [ 'chmlib/wrapper.c', | ||
], | ||
- include_dirs=["chmlib"]) | ||
- ] | ||
+ libraries=["chm"] | ||
+ ) | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters