diff options
author | Barbara Guida <bar@FreeBSD.org> | 2021-12-01 08:04:39 +0000 |
---|---|---|
committer | Barbara Guida <bar@FreeBSD.org> | 2021-12-01 08:04:39 +0000 |
commit | 27392cf64d50cd1898f83624a588bc5c1b5f27d0 (patch) | |
tree | 19c4fa7b7a476590275f54b7cd88d8fedca77c09 | |
parent | 88ea3be30866a0abf0d1fa2ec6c12f0b8dfecc57 (diff) |
net-p2p/amule: correct the inverted logic for DEBUG option.
PR: 26002
Reported by: echoxxzz@gmail.com
-rw-r--r-- | net-p2p/amule/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net-p2p/amule/Makefile b/net-p2p/amule/Makefile index ed4c495cb496..f653795ee967 100644 --- a/net-p2p/amule/Makefile +++ b/net-p2p/amule/Makefile @@ -2,7 +2,7 @@ PORTNAME= amule PORTVERSION= 2.3.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-p2p MASTER_SITES= SF/${PORTNAME}/aMule/${PORTVERSION} DISTNAME= aMule-${PORTVERSION} @@ -15,8 +15,6 @@ LICENSE_FILE_GPLv2+ = ${WRKSRC}/docs/COPYING LIB_DEPENDS= libcryptopp.so:security/cryptopp -CONFLICTS= amule-devel - USES= bison compiler:c++11-lang cpe desktop-file-utils gmake \ localbase:ldflags perl5 pkgconfig shebangfix tar:xz USE_PERL5= build @@ -33,6 +31,8 @@ LDFLAGS+= -lpthread SHEBANG_FILES= src/utils/scripts/*.pl src/utils/xas/*.pl src/libs/ec/*.pl +CONFLICTS_INSTALL= amule-devel + OPTIONS_DEFINE= ALC ALCC AMULECMD AMULEDAEMON AMULEGUI BOOST CAS DEBUG \ DOCS ED2K FILEVIEW MMAP MONOLITHIC NLS UPNP WEBSERVER WXCAS XAS ALC_DESC= Compile aMule Link Creator for GUI @@ -52,7 +52,7 @@ OPTIONS_DEFAULT=ALC ALCC AMULECMD AMULEDAEMON AMULEGUI CAS ED2K \ OPTIONS_SUB= yes -DEBUG_CONFIGURE_ON= --enable-debug +DEBUG_CONFIGURE_OFF= --disable-debug NLS_USES= gettext NLS_CONFIGURE_OFF= --disable-nls |