mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
2680038293
Use new INSTALL_ aliases Clean up creation of majordom user and group Fix problem where the local host was set to 'thud.cdrom.com' in everyone's config by default.
55 lines
1.2 KiB
Plaintext
55 lines
1.2 KiB
Plaintext
--- Makefile.orig Sun Oct 20 09:23:18 1996
|
|
+++ Makefile Wed Oct 23 15:56:10 1996
|
|
@@ -12,7 +12,7 @@
|
|
#
|
|
# Where is Perl located?
|
|
|
|
-PERL = /bin/perl5
|
|
+PERL = ${PREFIX}/bin/perl
|
|
|
|
#
|
|
# If your default 'chown' doesn't support the USER.GROUP syntax,
|
|
@@ -23,15 +23,15 @@
|
|
#
|
|
# The location of Majordomo. Wrapper looks here for programs to run.
|
|
|
|
-W_HOME = /usr/test/majordomo-$(VERSION)
|
|
+W_HOME = ${PREFIX}/majordomo
|
|
|
|
#
|
|
# Where do you want the manual pages installed? By default, this is
|
|
# $(W_HOME)/man/man[18]
|
|
#
|
|
-W_MAN = $(W_HOME)/man
|
|
-MAN1 = $(W_HOME)/man/man1
|
|
-MAN8 = $(W_HOME)/man/man8
|
|
+W_MAN = ${PREFIX}/man
|
|
+MAN1 = ${PREFIX}/man/man1
|
|
+MAN8 = $(PREFIX)/man/man8
|
|
|
|
# What permissions does wrapper need?
|
|
# (6755 = -rwsr-s-r-x, 4755 = -rwsr-xr-x)
|
|
@@ -43,7 +43,7 @@
|
|
# parent process, and without the leading "W_" in the variable names) gets
|
|
# passed to processes run by "wrapper"
|
|
|
|
-W_PATH = /bin:/usr/bin:/usr/ucb
|
|
+W_PATH = /bin:/usr/bin
|
|
W_BIN = $(W_HOME)
|
|
W_SHELL = /bin/csh
|
|
W_MAJORDOMO_CF = $(W_BIN)/majordomo.cf
|
|
@@ -53,11 +53,11 @@
|
|
|
|
# majordomo on my system
|
|
#
|
|
-W_USER = 443
|
|
+W_USER = %%MJUID%%
|
|
#
|
|
# daemon on my system
|
|
#
|
|
-W_GROUP = 1
|
|
+W_GROUP = %%MJGID%%
|
|
#
|
|
# You might need to change : to .
|
|
#
|