diff options
Diffstat (limited to 'security/tinyca/files/patch-tinyca2')
-rw-r--r-- | security/tinyca/files/patch-tinyca2 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/security/tinyca/files/patch-tinyca2 b/security/tinyca/files/patch-tinyca2 new file mode 100644 index 000000000000..eaa994fef8ad --- /dev/null +++ b/security/tinyca/files/patch-tinyca2 @@ -0,0 +1,32 @@ + +$FreeBSD$ + +--- tinyca2.orig ++++ tinyca2 +@@ -18,7 +18,7 @@ + # along with this program; if not, write to the Free Software + # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + +-BEGIN { push(@INC, './lib'); # put here the location of the modules ++BEGIN { push(@INC, '%%SITE_PERL%%/tinyca'); # put here the location of the modules + } + + use strict; +@@ -53,7 +53,7 @@ + + # location of openssl + $init->{'opensslbin'} = "/usr/bin/openssl"; +-$init->{'zipbin'} = "/usr/bin/zip"; ++$init->{'zipbin'} = "%%PREFIX%%/bin/zip"; + + if(not -x $init->{'opensslbin'}) { + printf(gettext("Can't execute %s.\n"), $init->{'opensslbin'}); +@@ -67,7 +67,7 @@ + } + + # directory with the templates +-$init->{'templatedir'} = "./templates"; ++$init->{'templatedir'} = "%%PREFIX%%/etc"; + + if(not -d $init->{'templatedir'}) { + print gettext("Can't find templatedir.\n"); |