mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
Enable pthread support using devel/pth.
Turn on building clamd and clamdscan. PR: 53056 Pointed out by: Olivier Tharan <olive@oban.frmug.org> Submitted by: TERAMOTO Masahiro <markun@onohara.to>
This commit is contained in:
parent
18aaf250ba
commit
07db5231ff
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=82541
@ -19,11 +19,13 @@ RUN_DEPENDS= lha:${PORTSDIR}/archivers/lha \
|
||||
zoo:${PORTSDIR}/archivers/zoo \
|
||||
arc:${PORTSDIR}/archivers/arc \
|
||||
unzip:${PORTSDIR}/archivers/unzip
|
||||
LIB_DEPENDS= pth.20:${PORTSDIR}/devel/pth
|
||||
|
||||
USE_GMAKE= yes
|
||||
HAS_CONFIGURE= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
CONFIGURE_ARGS= --prefix=${PREFIX} --disable-clamav --disable-pthreads
|
||||
CONFIGURE_ARGS= --prefix=${PREFIX} --disable-clamav
|
||||
|
||||
MAN1= clamscan.1 freshclam.1 sigtool.1 clamdscan.1
|
||||
MAN5= clamav.conf.5
|
||||
|
@ -4,8 +4,8 @@ if [ "$2" != "PRE-INSTALL" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
USER=clamav
|
||||
GROUP=clamav
|
||||
USER?=clamav
|
||||
GROUP?=clamav
|
||||
|
||||
if ! pw groupshow "$GROUP" 2>/dev/null 1>&2; then
|
||||
if pw groupadd $GROUP; then
|
||||
|
@ -1,6 +1,8 @@
|
||||
bin/clamscan
|
||||
bin/clamdscan
|
||||
bin/freshclam
|
||||
bin/sigtool
|
||||
sbin/clamd
|
||||
include/clamav.h
|
||||
lib/libclamav.so.1
|
||||
lib/libclamav.so
|
||||
|
@ -19,11 +19,13 @@ RUN_DEPENDS= lha:${PORTSDIR}/archivers/lha \
|
||||
zoo:${PORTSDIR}/archivers/zoo \
|
||||
arc:${PORTSDIR}/archivers/arc \
|
||||
unzip:${PORTSDIR}/archivers/unzip
|
||||
LIB_DEPENDS= pth.20:${PORTSDIR}/devel/pth
|
||||
|
||||
USE_GMAKE= yes
|
||||
HAS_CONFIGURE= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
CONFIGURE_ARGS= --prefix=${PREFIX} --disable-clamav --disable-pthreads
|
||||
CONFIGURE_ARGS= --prefix=${PREFIX} --disable-clamav
|
||||
|
||||
MAN1= clamscan.1 freshclam.1 sigtool.1 clamdscan.1
|
||||
MAN5= clamav.conf.5
|
||||
|
@ -4,8 +4,8 @@ if [ "$2" != "PRE-INSTALL" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
USER=clamav
|
||||
GROUP=clamav
|
||||
USER?=clamav
|
||||
GROUP?=clamav
|
||||
|
||||
if ! pw groupshow "$GROUP" 2>/dev/null 1>&2; then
|
||||
if pw groupadd $GROUP; then
|
||||
|
@ -1,6 +1,8 @@
|
||||
bin/clamscan
|
||||
bin/clamdscan
|
||||
bin/freshclam
|
||||
bin/sigtool
|
||||
sbin/clamd
|
||||
include/clamav.h
|
||||
lib/libclamav.so.1
|
||||
lib/libclamav.so
|
||||
|
Loading…
Reference in New Issue
Block a user