diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-06-10 16:59:31 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-06-10 16:59:31 +0000 |
commit | 9416a78cc2c5656bfa7aff6fea6c9aed8dfd9628 (patch) | |
tree | cf6f83d6b048e0620a2c4fec1c915d66022d2147 | |
parent | 56f99c60f29823b46202674837fe805b4b1acb70 (diff) |
Add Paths.pm, to centralize all system dependent paths all over the place.
okay millert@, deraadt@
-rw-r--r-- | usr.sbin/pkg_add/Makefile | 3 | ||||
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/Paths.pm | 61 |
2 files changed, 63 insertions, 1 deletions
diff --git a/usr.sbin/pkg_add/Makefile b/usr.sbin/pkg_add/Makefile index 562dfb2aed5..217c4094fe3 100644 --- a/usr.sbin/pkg_add/Makefile +++ b/usr.sbin/pkg_add/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.44 2007/05/18 13:22:06 espie Exp $ +# $OpenBSD: Makefile,v 1.45 2007/06/10 16:59:30 espie Exp $ .include <bsd.own.mk> @@ -31,6 +31,7 @@ PACKAGES= \ OpenBSD/PackageRepositoryList.pm \ OpenBSD/PackingElement.pm \ OpenBSD/PackingList.pm \ + OpenBSD/Paths.pm \ OpenBSD/PkgCfl.pm \ OpenBSD/PkgConfig.pm \ OpenBSD/PkgSpec.pm \ diff --git a/usr.sbin/pkg_add/OpenBSD/Paths.pm b/usr.sbin/pkg_add/OpenBSD/Paths.pm new file mode 100644 index 00000000000..46c5bd1af7b --- /dev/null +++ b/usr.sbin/pkg_add/OpenBSD/Paths.pm @@ -0,0 +1,61 @@ +# ex:ts=8 sw=4: +# $OpenBSD: Paths.pm,v 1.1 2007/06/10 16:59:30 espie Exp $ +# +# Copyright (c) 2007 Marc Espie <espie@openbsd.org> +# +# Permission to use, copy, modify, and distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +use strict; +use warnings; + +package OpenBSD::Paths; + +# Commands +our $ldconfig = '/sbin/ldconfig'; +our $mkfontdir = '/usr/X11R6/bin/mkfontdir'; +our $fc_cache = '/usr/X11R6/bin/fc-cache'; +our $install_info = '/usr/bin/install-info'; +our $useradd = '/usr/sbin/useradd'; +our $groupadd = '/usr/sbin/groupadd'; +our $sysctl = '/sbin/sysctl'; +our $openssl = '/usr/sbin/openssl'; +our $chmod = '/bin/chmod'; +our $gzip = '/usr/bin/gzip'; +our $ftp = '/usr/bin/ftp'; +our $groff = '/usr/bin/groff'; +our $sh = '/bin/sh'; +our $arch = '/usr/bin/arch'; +our $uname = '/usr/bin/uname'; +our $userdel = '/usr/sbin/userdel'; +our $groupdel = '/usr/sbin/groupdel'; +our $mknod = '/sbin/mknod'; +our $mount = '/sbin/mount'; +our $df = '/bin/df'; +our $ssh = '/us/bin/ssh'; +our $make = '/usr/bin/make'; +our $mklocatedb = '/usr/libexec/locate.mklocatedb'; + +# Various paths +our $shells = '/etc/shells'; +our $pkgdb = '/var/db/pkg'; +our $localbase = '/usr/local'; +our $vartmp = '/var/tmp'; +our $portsdir = '/usr/ports'; + +our @library_dirs = ("/usr", "/usr/X11R6"); +our @master_keys = ("/etc/master_key"); + +our @font_cruft = ("fonts.alias", "fonts.dir", "fonts.cache-1"); +our @man_cruft = ("whatis.db"); + +1; |