forked from Lainports/freebsd-ports
- Add OPTIONS support with optional X11 and HTML notebook support (only RUN_DEPENDS is affected)
24 lines
632 B
Python
24 lines
632 B
Python
|
|
$FreeBSD$
|
|
|
|
--- setupbase.py.orig
|
|
+++ setupbase.py
|
|
@@ -197,7 +197,8 @@
|
|
"""
|
|
|
|
docdirbase = pjoin('share', 'doc', 'ipython')
|
|
- manpagebase = pjoin('share', 'man', 'man1')
|
|
+ manpagebase = pjoin('man', 'man1')
|
|
+ examplebase = pjoin('share', 'examples', 'ipython')
|
|
|
|
# Simple file lists can be made by hand
|
|
manpages = filter(isfile, glob(pjoin('docs','man','*.1.gz')))
|
|
@@ -211,7 +212,7 @@
|
|
example_files = make_dir_struct(
|
|
'data',
|
|
pjoin('docs','examples'),
|
|
- pjoin(docdirbase,'examples')
|
|
+ pjoin(examplebase)
|
|
)
|
|
manual_files = make_dir_struct(
|
|
'data',
|