2011-09-22 14:42:14 -04:00
|
|
|
$OpenBSD: patch-setupbase_py,v 1.2 2011/09/22 18:42:14 rpointel Exp $
|
|
|
|
--- setupbase.py.orig Sun Jul 31 06:36:48 2011
|
|
|
|
+++ setupbase.py Fri Sep 16 07:49:37 2011
|
|
|
|
@@ -202,7 +202,7 @@
|
2008-12-27 10:29:54 -05:00
|
|
|
"""
|
|
|
|
|
2011-09-22 14:42:14 -04:00
|
|
|
docdirbase = pjoin('share', 'doc', 'ipython')
|
|
|
|
- manpagebase = pjoin('share', 'man', 'man1')
|
|
|
|
+ manpagebase = pjoin('man', 'man1')
|
|
|
|
|
2008-12-27 10:29:54 -05:00
|
|
|
# Simple file lists can be made by hand
|
2011-09-22 14:42:14 -04:00
|
|
|
manpages = filter(isfile, glob(pjoin('docs','man','*.1.gz')))
|
|
|
|
@@ -215,13 +215,13 @@
|
2008-12-27 10:29:54 -05:00
|
|
|
# For nested structures, use the utility above
|
2011-09-22 14:42:14 -04:00
|
|
|
example_files = make_dir_struct(
|
|
|
|
'data',
|
|
|
|
- pjoin('docs','examples'),
|
|
|
|
+ pjoin('share','examples', 'ipython'),
|
|
|
|
pjoin(docdirbase,'examples')
|
|
|
|
)
|
|
|
|
manual_files = make_dir_struct(
|
|
|
|
'data',
|
|
|
|
pjoin('docs','html'),
|
|
|
|
- pjoin(docdirbase,'manual')
|
|
|
|
+ pjoin(docdirbase)
|
|
|
|
)
|
2008-12-27 10:29:54 -05:00
|
|
|
|
|
|
|
# And assemble the entire output list
|