diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-06-30 12:26:54 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-06-30 12:26:54 +0000 |
commit | 48dba8c86f6680dd4f27e5c50e16b8e69318bebd (patch) | |
tree | 8a032593c8db4ba8ad56d5de9bcc4fd748baa990 /net/host/files | |
parent | This port build-depends on devel/mipsel-linux-binutils and (diff) |
Add host, an utility to query DNS servers (similar to one found in the BIND
distribution).
Notes
Notes:
svn path=/head/; revision=44587
Diffstat (limited to 'net/host/files')
-rw-r--r-- | net/host/files/patch-Makefile | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/net/host/files/patch-Makefile b/net/host/files/patch-Makefile new file mode 100644 index 000000000000..3bd8f73f691a --- /dev/null +++ b/net/host/files/patch-Makefile @@ -0,0 +1,84 @@ + +$FreeBSD$ + +--- Makefile.orig Wed Mar 15 23:51:39 2000 ++++ Makefile Fri Jun 29 13:42:36 2001 +@@ -5,10 +5,10 @@ + # ---------------------------------------------------------------------- + + # This is where the host executable will go. +-DESTBIN = /usr/local/bin ++DESTBIN = $(PREFIX)/bin + + # This is where the host manual page will go. +-DESTMAN = /usr/local/man ++DESTMAN = $(PREFIX)/man + + BINDIR = $(DESTBIN) + MANDIR = $(DESTMAN)/man1 +@@ -82,16 +82,16 @@ + + COPTS = + COPTS = -O -DDEBUG +-COPTS = -O ++COPTS = + +-CFLAGS = $(COPTS) $(DEFS) ++#CFLAGS = $(COPTS) $(DEFS) + + # Select your favorite compiler. +-CC = /usr/ucb/cc #if defined(solaris) && BSD +-CC = /bin/cc -arch m68k -arch i386 #if defined(next) +-CC = /bin/cc -Olimit 1000 #if defined(ultrix) +-CC = /bin/cc +-CC = cc ++CC ?= /usr/ucb/cc #if defined(solaris) && BSD ++CC ?= /bin/cc -arch m68k -arch i386 #if defined(next) ++CC ?= /bin/cc -Olimit 1000 #if defined(ultrix) ++CC ?= /bin/cc ++CC ?= cc + + # ---------------------------------------------------------------------- + # Linking definitions. +@@ -109,8 +109,8 @@ + + RES = -lsocket #if defined(SCO) && default + RES = +-RES = ../../res/libresolv.a +-RES = -lresolv ++#RES = ../../res/libresolv.a ++#RES = -lresolv + + COMPLIB = ../../compat/lib/lib44bsd.a + COMPLIB = -lnet +@@ -130,13 +130,13 @@ + # redefined by bind + CDEBUG = $(COPTS) $(CONFIGDEFS) + CDEFS = $(SYSDEFS) $(INCLUDES) +-CFLAGS = $(CDEBUG) $(CDEFS) ++CFLAGS += $(CDEBUG) $(CDEFS) + + # ---------------------------------------------------------------------- + # Miscellaneous definitions. + # ---------------------------------------------------------------------- + +-MAKE = make $(MFLAGS) ++MAKE += $(MFLAGS) + + # This assumes the BSD install. + INSTALL = install -c +@@ -183,11 +183,9 @@ + $(PROG): $(OBJS) + $(CC) $(LDFLAGS) -o $(PROG) $(OBJS) $(LIBRARIES) + +-install: $(PROG) +- $(INSTALL) -m $(MODE) -o $(OWNER) -g $(GROUP) $(STRIP) $(PROG) $(BINDIR) +- +-man: $(MANS) +- $(INSTALL) -m 444 host.1 $(MANDIR) ++install: $(PROG) $(MANS) ++ $(BSD_INSTALL_PROGRAM) $(PROG) $(BINDIR) ++ $(BSD_INSTALL_MAN) host.1 $(MANDIR) + + clean: + rm -f $(CLEANUP) *.o a.out core |