Imported Upstream version 2.6.1
[debian/amanda] / perl / Amanda / Paths.pm.in
index 501bffa7211f96295dd2525795554ad381fa599e..bddc5e92d594e9237a6f8c67f80b632b07f43ff7 100644 (file)
@@ -1,5 +1,5 @@
 # vim:ft=perl
-# Copyright (c) 2006 Zmanda Inc.  All Rights Reserved.
+# Copyright (c) 2005-2008 Zmanda Inc.  All Rights Reserved.
 #
 # This program is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License version 2 as published
 # with this program; if not, write to the Free Software Foundation, Inc.,
 # 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 #
-# Contact information: Zmanda Inc, 505 N Mathlida Ave, Suite 120
-# Sunnyvale, CA 94085, USA, or: http://www.zmanda.com
+# Contact information: Zmanda Inc, 465 S Mathlida Ave, Suite 300
+# Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
 
 package Amanda::Paths;
 
 =head1 NAME
 
-Amanda::Paths - perl access to build-time configuration values
+Amanda::Paths - perl access to build-time configuration paths
 
 =head1 SYNOPSIS
 
@@ -51,10 +51,14 @@ use Exporter;
     $amlibexecdir
     $mandir
     $datarootdir
+    $sysconfdir
+    $amdatadir
 
     $AMANDA_TMPDIR
     $CONFIG_DIR
     $AMANDA_DBGDIR
+    $APPLICATION_DIR
+    $GNUTAR_LISTED_INCREMENTAL_DIR
 );
 
 # the 'warnings' pragma doesn't recognized exported variables as "used", and generates warnings
@@ -73,9 +77,15 @@ $amlibexecdir = "@amlibexecdir@";
 $mandir = "@mandir@";
 # (config.status worries if it doesn't see this:)
 $datarootdir = "@datarootdir@";
+$sysconfdir = "@sysconfdir@";
+$amdatadir = "@amdatadir@";
 
 ## amanda configuration directories
 
 $AMANDA_TMPDIR = "@AMANDA_TMPDIR@";
 $CONFIG_DIR = "@CONFIG_DIR@";
 $AMANDA_DBGDIR = "@AMANDA_DBGDIR@";
+$APPLICATION_DIR = "@APPLICATION_DIR@";
+$GNUTAR_LISTED_INCREMENTAL_DIR = "@GNUTAR_LISTED_INCREMENTAL_DIR@";
+
+1;