libetpan: fix devel package requirements

remove libdb dependency.
This commit is contained in:
Jerome Duval
2022-10-17 14:49:49 +02:00
parent ed926851f1
commit 8314d8ac0a

View File

@@ -6,7 +6,7 @@ It provides an API for C language."
HOMEPAGE="http://www.etpan.org/libetpan.html"
COPYRIGHT="2001-2005 DINH Viet Hoa"
LICENSE="BSD (3-clause)"
REVISION="1"
REVISION="2"
SOURCE_URI="https://github.com/dinhvh/libetpan/archive/refs/tags/$portVersion.tar.gz"
CHECKSUM_SHA256="82ec8ea11d239c9967dbd1717cac09c8330a558e025b3e4dc6a7594e80d13bb1"
@@ -25,7 +25,6 @@ REQUIRES="
lib:libcurl$secondaryArchSuffix
lib:libexpat$secondaryArchSuffix
lib:libiconv$secondaryArchSuffix
lib:libdb$secondaryArchSuffix
lib:libsasl2$secondaryArchSuffix
lib:libssl$secondaryArchSuffix
lib:libz$secondaryArchSuffix
@@ -37,6 +36,12 @@ PROVIDES_devel="
"
REQUIRES_devel="
libetpan$secondaryArchSuffix == $portVersion base
devel:libcurl$secondaryArchSuffix
devel:libexpat$secondaryArchSuffix
devel:libiconv$secondaryArchSuffix
devel:libsasl2$secondaryArchSuffix
devel:libssl$secondaryArchSuffix
devel:libz$secondaryArchSuffix
"
BUILD_REQUIRES="
@@ -44,7 +49,6 @@ BUILD_REQUIRES="
devel:libcurl$secondaryArchSuffix
devel:libexpat$secondaryArchSuffix
devel:libiconv$secondaryArchSuffix
devel:libdb$secondaryArchSuffix
devel:libsasl2$secondaryArchSuffix
devel:libssl$secondaryArchSuffix
devel:libz$secondaryArchSuffix
@@ -63,7 +67,7 @@ BUILD_PREREQUIRES="
BUILD()
{
autoreconf -fi
runConfigure ./configure
runConfigure ./configure --disable-db
make $jobArgs
}