View | Details | Raw Unified | Return to bug 248780
Collapse All | Expand All

(-)dns/adns/Makefile (-3 / +5 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	adns
4
PORTNAME=	adns
5
PORTVERSION=	1.5.1
5
PORTVERSION=	1.6.0
6
CATEGORIES=	dns
6
CATEGORIES=	dns
7
MASTER_SITES=	http://www.chiark.greenend.org.uk/~ian/adns/ftp/
7
MASTER_SITES=	http://www.chiark.greenend.org.uk/~ian/adns/ftp/
8
8
Lines 11-21 COMMENT= Easy to use asynchronous-capable DNS client library and utilities Link Here
11
11
12
LICENSE=	GPLv3
12
LICENSE=	GPLv3
13
13
14
BUILD_DEPENDS=	m4>=1.4.11:devel/m4
15
14
USES=		gmake
16
USES=		gmake
15
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
16
USE_LDCONFIG=	yes
18
USE_LDCONFIG=	yes
17
PORTSCOUT=	skipv:1.5.0~rc0,1.5.0~rc1
19
PORTSCOUT=	skipv:1.5.0~rc0,1.5.0~rc1
18
20
21
BINARY_ALIAS=	m4=${LOCALBASE}/bin/gm4
19
LIBVERSION=	1
22
LIBVERSION=	1
20
PLIST_SUB+=	LIBVERSION="${LIBVERSION}"
23
PLIST_SUB+=	LIBVERSION="${LIBVERSION}"
21
24
Lines 28-35 DOCS= COPYING GPL-vs-LGPL INSTALL README \ Link Here
28
TOSTRIP=	bin/adnsheloex \
31
TOSTRIP=	bin/adnsheloex \
29
		bin/adnsresfilter \
32
		bin/adnsresfilter \
30
		bin/adnslogres \
33
		bin/adnslogres \
31
		bin/adnshost \
34
		bin/adnshost
32
		lib/libadns.so.1
33
35
34
OPTIONS_DEFINE=		DOCS
36
OPTIONS_DEFINE=		DOCS
35
37
(-)dns/adns/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1471808918
1
TIMESTAMP = 1597925576
2
SHA256 (adns-1.5.1.tar.gz) = 5b1026f18b8274be869245ed63427bf8ddac0739c67be12c4a769ac948824eeb
2
SHA256 (adns-1.6.0.tar.gz) = fb427265a981e033d1548f2b117cc021073dc8be2eaf2c45fd64ab7b00ed20de
3
SIZE (adns-1.5.1.tar.gz) = 319774
3
SIZE (adns-1.6.0.tar.gz) = 323474
(-)dns/adns/files/patch-client-Makefile.in (-14 lines)
Removed Link Here
1
--- client/Makefile.in.orig	2014-10-19 23:07:01 UTC
2
+++ client/Makefile.in
3
@@ -58,9 +58,9 @@ ALL_OBJS=	$(ADH_OBJS) $(TARG_OBJS)
4
 all:		$(TARGETS)
5
 
6
 install:	$(TARG_INSTALL)
7
-		mkdir -p $(bindir)
8
+		mkdir -p $(DESTDIR)$(bindir)
9
 		set -xe; for f in $(TARG_INSTALL); \
10
-			do $(INSTALL_PROGRAM) $$f $(bindir)/$$f; done
11
+			do $(INSTALL_PROGRAM) $$f $(DESTDIR)$(bindir)/$$f; done
12
 
13
 uninstall:
14
 		for f in $(TARGETS); do rm -f $(bindir)/$$f; done
(-)dns/adns/files/patch-dynamic-Makefile.in (-16 lines)
Removed Link Here
1
--- dynamic/Makefile.in.orig	2014-10-19 23:07:01 UTC
2
+++ dynamic/Makefile.in
3
@@ -30,10 +30,9 @@ include		$(srcdir)/../src/adns.make
4
 ALLOBJS=	$(addsuffix _p.o, $(basename $(LIBOBJS)))
5
 
6
 install:
7
-		mkdir -p $(libdir)
8
-		$(INSTALL_PROGRAM) $(SHLIBFILE) $(libdir)/$(SHLIBFILE)
9
-		ln -sf $(SHLIBFILE) $(libdir)/$(SHLIBSONAME)
10
-		ln -sf $(SHLIBSONAME) $(libdir)/$(SHLIBFORLINK)
11
+		mkdir -p $(DESTDIR)$(libdir)
12
+		$(INSTALL_PROGRAM) $(SHLIBFILE) $(DESTDIR)$(libdir)/$(SHLIBFILE)
13
+		(cd $(DESTDIR)$(libdir) && ln -sf $(SHLIBSONAME) $(SHLIBFORLINK))
14
 
15
 uninstall:
16
 		rm -f $(libdir)/$(SHLIBFILE) $(libdir)/$(SHLIBSONAME)
(-)dns/adns/files/patch-regress-Makefile.in (-11 lines)
Removed Link Here
1
--- regress/Makefile.in.orig	2014-10-26 12:03:41 UTC
2
+++ regress/Makefile.in
3
@@ -25,7 +25,7 @@ VPATH=		@srcdir@
4
 
5
 PROGS_SYSDEP=	@PROGS_HAVE_TSEARCH@
6
 
7
-CLIENTS=	adnstest adnshost adnslogres $(PROGS_SYSDEP)
8
+CLIENTS=	adnstest adnslogres $(PROGS_SYSDEP)
9
 AUTOCHDRS=	harness.h hsyscalls.h hredirect.h
10
 AUTOCSRCS=	hrecord.c hplayback.c hcommon.c
11
 include		../settings.make
(-)dns/adns/files/patch-src-Makefile.in (-16 lines)
Removed Link Here
1
--- src/Makefile.in.orig	2014-10-19 23:07:03 UTC
2
+++ src/Makefile.in
3
@@ -30,10 +30,10 @@ include		$(srcdir)/adns.make
4
 DIRCFLAGS=	-I. -I$(srcdir)
5
 
6
 install:
7
-		mkdir -p $(libdir) $(includedir)
8
+		mkdir -p $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
9
 		set -xe; for f in $(TARGETS); \
10
-			do $(INSTALL_DATA) $$f $(libdir)/$$f; done
11
-		$(INSTALL_DATA) $(srcdir)/../src/adns.h $(includedir)/adns.h
12
+			do $(INSTALL_DATA) $$f $(DESTDIR)$(libdir)/$$f; done
13
+		$(INSTALL_DATA) $(srcdir)/../src/adns.h $(DESTDIR)$(includedir)/adns.h
14
 
15
 uninstall:
16
 		for f in $(TARGETS); do rm -f $(libdir)/$$f; done

Return to bug 248780