diff options
author | bjs <bjs> | 2007-12-13 07:00:16 +0000 |
---|---|---|
committer | bjs <bjs> | 2007-12-13 07:00:16 +0000 |
commit | 00c35adb10f2f47d391839ae3b1d29994a84ab6b (patch) | |
tree | e7b6d29589bd4792a167d39edb85e67d4d22474c /filesystems/fuse-svnfs/patches | |
parent | e2e0e4f4a2a805398042d790d8cd1d6c79f0ff65 (diff) | |
download | pkgsrc-00c35adb10f2f47d391839ae3b1d29994a84ab6b.tar.gz |
Import svnfs-0.4, a fuse filesystem for mounting subversion repositories.
While I can find little documentation out there, it seems to work
quite well for me (Subversion 1.4.4 + apr1). Thusfar it's seemed
quite speedy and useful. I'm thinking that fuse might be an interesting
way to get distfiles (curlftpfs) or source snapshots into pkgsrc.
Diffstat (limited to 'filesystems/fuse-svnfs/patches')
-rw-r--r-- | filesystems/fuse-svnfs/patches/patch-aa | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/filesystems/fuse-svnfs/patches/patch-aa b/filesystems/fuse-svnfs/patches/patch-aa new file mode 100644 index 00000000000..9eaa41eefe1 --- /dev/null +++ b/filesystems/fuse-svnfs/patches/patch-aa @@ -0,0 +1,19 @@ +$NetBSD: patch-aa,v 1.1.1.1 2007/12/13 07:00:16 bjs Exp $ + +--- svn-config.pl.orig 2007-06-11 04:50:03.000000000 -0400 ++++ svn-config.pl +@@ -1,4 +1,4 @@ +-#!/usr/bin/perl ++#!/usr/pkg/bin/perl + # + # Hacky replacement for (non-existant) svn-config to find the libraries, + # the library path and the include file path. +@@ -47,7 +47,7 @@ if( $libs ) { + } + + if( $includes ) { +- open(IN, "ls -d /usr/include/subversion* 2>/dev/null |"); ++ open(IN, "ls -d @LOCALBASE@/include/subversion-* 2>/dev/null |"); + while( <IN> ) { + chomp(); + $out_includes = $out_includes."-I".$_." "; |