Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Jan 2022 18:18:14 GMT
From:      Cy Schubert <cy@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 7ca778484e34 - main - devel/rsvndump: Resolve DEVELOPER LIB_DEPENDS warnings
Message-ID:  <202201271818.20RIIE9L048982@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by cy:

URL: https://cgit.FreeBSD.org/ports/commit/?id=7ca778484e34feba3457b0bf68245fe03673016e

commit 7ca778484e34feba3457b0bf68245fe03673016e
Author:     Cy Schubert <cy@FreeBSD.org>
AuthorDate: 2022-01-27 17:36:13 +0000
Commit:     Cy Schubert <cy@FreeBSD.org>
CommitDate: 2022-01-27 18:18:09 +0000

    devel/rsvndump: Resolve DEVELOPER LIB_DEPENDS warnings
    
    Resolve the following LIB_DEPENDS warnings:
    
    Error: /usr/local/bin/rsvndump is linked to
    /usr/local/lib/libapr-1.so.0 from devel/apr1 but it is not declared
    as a dependency
    Warning: you need LIB_DEPENDS+=libapr-1.so:devel/apr1
    Error: /usr/local/bin/rsvndump is linked to
    /usr/local/lib/libaprutil-1.so.0 from devel/apr1 but it is not declared
    as a dependency
    Warning: you need LIB_DEPENDS+=libaprutil-1.so:devel/apr1
    Error: /usr/local/bin/rsvndump is linked to
    /usr/local/lib/libdb-5.3.so.0 from databases/db5 but it is not declared
    as a dependency
    Warning: you need USES+=bdb
    Error: /usr/local/bin/rsvndump is linked to /usr/local/lib/libgdbm.so.6
    from databases/gdbm but it is not declared as a dependency
    Warning: you need LIB_DEPENDS+=libgdbm.so:databases/gdbm
    Error: /usr/local/bin/rsvndump is linked to /usr/local/lib/libexpat.so.1
    from textproc/expat2 but it is not declared as a dependency
    Warning: you need LIB_DEPENDS+=libexpat.so:textproc/expat2
    
    MFH:            2022Q1
---
 devel/rsvndump/Makefile | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/devel/rsvndump/Makefile b/devel/rsvndump/Makefile
index 5655a5c78fd4..bbe0c2099811 100644
--- a/devel/rsvndump/Makefile
+++ b/devel/rsvndump/Makefile
@@ -2,7 +2,7 @@
 
 PORTNAME=	rsvndump
 PORTVERSION=	0.6
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
 
@@ -11,7 +11,11 @@ COMMENT=	Remote Subversion repository dumpfile generator
 
 LICENSE=	GPLv2
 
-LIB_DEPENDS=	libsvn_client-1.so:devel/subversion
+USES=		bdb
+LIB_DEPENDS=	libsvn_client-1.so:devel/subversion \
+		libgdbm.so:databases/gdbm \
+		libexpat.so:textproc/expat2 \
+		libapr-1.so:devel/apr1
 
 OPTIONS_DEFINE=	DOCS NLS
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202201271818.20RIIE9L048982>