mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 15:10:35 -04:00
- Port got new maintainer PR: ports/207674 Submitted by: Chris Petrik <chris@bsdjunk.com>
108 lines
3.1 KiB
Text
108 lines
3.1 KiB
Text
--- Makefile.in.orig 2011-04-29 17:21:18.000000000 +0900
|
|
+++ Makefile.in 2013-03-09 19:35:03.628110600 +0900
|
|
@@ -31,14 +31,14 @@
|
|
# @(#)$Id: Makefile.in,v 1.23 2006-10-31 12:31:27 f Exp $
|
|
|
|
# targets recognised by this makefile:
|
|
-# all, everything - compiles ircii, ircio, ircflush and wserv
|
|
+# all, everything - compiles ircii, ircio, ircflush and wservz
|
|
# ircio - compiles ircio
|
|
# ircflush - compiles ircflush
|
|
-# wserv - compiles wserv
|
|
-# install - installs ircii, ircio, ircflush and wserv
|
|
+# wservz - compiles wservz
|
|
+# install - installs ircii, ircio, ircflush and wservz
|
|
# installirc - installs ircii
|
|
# installio - installs ircio
|
|
-# installwserv - installs wserv
|
|
+# installwservz - installs wservz
|
|
# installflush - installs ircflush
|
|
# installscript - installs the scripts
|
|
# installhelp - installs the help files
|
|
@@ -50,9 +50,9 @@
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
bindir = @bindir@
|
|
-sharedir = @prefix@/share
|
|
+sharedir = @datadir@
|
|
datarootdir = @datarootdir@
|
|
-mandir = @mandir@
|
|
+mandir = @mandir@/man1
|
|
|
|
DESTDIR =
|
|
|
|
@@ -105,7 +105,7 @@
|
|
|
|
# This program allows you to use screen/xterm's to put new irc windows
|
|
# on new screen/xterm windows.
|
|
-INSTALL_WSERV = $(bindir)/wserv
|
|
+INSTALL_WSERVZ = $(bindir)/wservz
|
|
|
|
# This command will be used to install the irc help files. If you don't
|
|
# want to install them, replace with the following:
|
|
@@ -126,14 +126,13 @@
|
|
VERSION = @VERSION@
|
|
|
|
SHELL = /bin/sh
|
|
-MAKE = make $(MFLAGS)
|
|
MFLAGS ='CC=$(CC)' \
|
|
'CFLAGS=$(CFLAGS)' \
|
|
'DEFS=$(DEFS)' \
|
|
'HELP_DIR=$(HELP_DIR)' \
|
|
'INSTALL_IRC=$(INSTALL_IRC)' \
|
|
'INSTALL_IRCIO=$(INSTALL_IRCIO)' \
|
|
- 'INSTALL_WSERV=$(INSTALL_WSERV)' \
|
|
+ 'INSTALL_WSERVZ=$(INSTALL_WSERVZ)' \
|
|
'IRCSHARE=$(IRCSHARE)' \
|
|
'IRCPATH=$(IRC_PATH)' \
|
|
'LDFLAGS=$(LDFLAGS)' \
|
|
@@ -143,32 +142,23 @@
|
|
'LN=$(LN)' \
|
|
'RM=$(RM)'
|
|
|
|
-all: scrollz scrollz.1
|
|
+all: scrollz scrollz.1 wservz
|
|
|
|
-install: all installbin installdirs installman installhelp
|
|
+install: all installbin installwservz installdirs installman installhelp
|
|
|
|
-scrollz: source/Makefile Makefile
|
|
- @cd source; $(MAKE) all
|
|
+scrollz ircio ircflush wservz: source/Makefile Makefile
|
|
+ $(MAKE) -C source $(MFLAGS) $@
|
|
|
|
scrollz.1: scrollz.1.in
|
|
sed -e "s,SHAREDIR,$(IRCSHARE)," < scrollz.1.in > scrollz.1
|
|
|
|
installeverything: install installman installflush installio \
|
|
- installwserv installhelp
|
|
+ installwservz installhelp
|
|
|
|
-everything: all ircflush ircio wserv
|
|
+everything: all ircflush ircio wservz
|
|
|
|
ircserv: ircio
|
|
|
|
-ircio: source/Makefile
|
|
- @cd source; $(MAKE) ircio
|
|
-
|
|
-ircflush: source/ircflush.c source/Makefile
|
|
- @cd source; $(MAKE) ircflush
|
|
-
|
|
-wserv: source/wserv.c source/term.c source/Makefile
|
|
- @cd source; $(MAKE) wserv
|
|
-
|
|
installbin: installirc
|
|
|
|
installirc: scrollz installdirs
|
|
@@ -189,8 +179,8 @@
|
|
installflush: ircflush installdirs
|
|
$(INSTALL) source/ircflush $(DESTDIR)/$(INSTALL_IRCFLUSH)
|
|
|
|
-installwserv: wserv installdirs
|
|
- $(INSTALL) source/wserv $(DESTDIR)/$(INSTALL_WSERV)
|
|
+installwservz: wservz installdirs
|
|
+ $(INSTALL) source/wservz $(DESTDIR)/$(INSTALL_WSERVZ)
|
|
|
|
installdirs:
|
|
umask 022; ./mkinstalldirs $(DESTDIR)/$(IRCSHARE) $(DESTDIR)/$(bindir) \
|