diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2013-08-25 16:13:06 +0000 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2013-08-25 16:13:06 +0000 |
commit | 3b57b1103f9843df74894daa89e60bb8a774de81 (patch) | |
tree | 3771448e37531ccb38ad018110548783a70be1e5 /devel/ipython/files/patch-setupbase.py | |
parent | - Add missed dependency on devel/p5-Devel-GlobalDestruction (diff) |
- Upgrade to version 1.0.0.
- Replace PKGNAMESUFFIX with PKGNAMEPREFIX.
Diffstat (limited to '')
-rw-r--r-- | devel/ipython/files/patch-setupbase.py | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/devel/ipython/files/patch-setupbase.py b/devel/ipython/files/patch-setupbase.py index 598c7a7beff4..c3446a790af2 100644 --- a/devel/ipython/files/patch-setupbase.py +++ b/devel/ipython/files/patch-setupbase.py @@ -3,26 +3,16 @@ $FreeBSD$ --- setupbase.py.orig +++ setupbase.py -@@ -201,7 +201,8 @@ +@@ -208,7 +208,7 @@ """ 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 = [f for f in glob(pjoin('docs','man','*.1.gz')) if isfile(f)] -@@ -215,7 +216,7 @@ - example_files = make_dir_struct( - 'data', - pjoin('docs','examples'), -- pjoin(docdirbase,'examples') -+ pjoin(examplebase) - ) - manual_files = make_dir_struct( - 'data', -@@ -225,7 +226,6 @@ +@@ -232,7 +232,6 @@ # And assemble the entire output list data_files = [ (manpagebase, manpages), |