diff options
author | Cy Schubert <cy@FreeBSD.org> | 2022-01-27 17:36:13 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2022-01-27 18:18:09 +0000 |
commit | 7ca778484e34feba3457b0bf68245fe03673016e (patch) | |
tree | dc71132842364f1cb6de38a766c4afc75d2eb194 | |
parent | 8042a251f4b201aeaacfefce22e9e494f6172351 (diff) | |
download | ports-7ca778484e34feba3457b0bf68245fe03673016e.tar.gz ports-7ca778484e34feba3457b0bf68245fe03673016e.zip |
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
-rw-r--r-- | devel/rsvndump/Makefile | 8 |
1 files 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 |