mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
security/yafic: Document SSL requirement, convert to options
This port was using the WITHOUT_OPENSSL knob. Convert it to a default option "CRYPTO" and bump the port revision. THere's a build dependency on OpenSSL headers when this option is on. Note that the WWW value is obsolete. Approved by: SSL blanket
This commit is contained in:
parent
c8eb054e56
commit
3f87d950c1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=421665
@ -3,7 +3,7 @@
|
||||
|
||||
PORTNAME= yafic
|
||||
PORTVERSION= 1.2.2
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= SF
|
||||
|
||||
@ -14,27 +14,32 @@ GNU_CONFIGURE= yes
|
||||
USES= gmake
|
||||
LDFLAGS+= -static
|
||||
|
||||
.if defined(WITHOUT_OPENSSL)
|
||||
CONFIGURE_ARGS= --disable-crypto
|
||||
PLIST_SUB+= CRYPTO="@comment "
|
||||
.else
|
||||
PLIST_SUB+= CRYPTO=""
|
||||
.endif
|
||||
OPTIONS_DEFINE= CRYPTO
|
||||
OPTIONS_DEFAULT= CRYPTO
|
||||
OPTIONS_SUB= yes
|
||||
|
||||
CRYPTO_DESC= Cryptographic support
|
||||
CRYPTO_USES= ssl:build
|
||||
CRYPTO_CONFIGURE_ENABLE= crypto
|
||||
CRYPTO_LDFLAGS= -L${OPENSSLLIB}
|
||||
CRYPTO_CFLAGS= -I${OPENSSLINC}
|
||||
|
||||
PKGMESSAGE= ${WRKDIR}/pkg-message
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
post-patch:
|
||||
@${SED} -e "s;@@PREFIX@@;${PREFIX};g" \
|
||||
${.CURDIR}/pkg-message > ${PKGMESSAGE}
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/yafic ${STAGEDIR}${PREFIX}/bin
|
||||
.if !defined(WITHOUT_OPENSSL)
|
||||
.if ${PORT_OPTIONS:MCRYPTO}
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/yafic-sign ${STAGEDIR}${PREFIX}/bin
|
||||
${LN} -sf yafic-sign ${STAGEDIR}${PREFIX}/bin/yafic-check
|
||||
.endif
|
||||
${INSTALL_MAN} ${WRKSRC}/yafic.1 ${STAGEDIR}${PREFIX}/man/man1
|
||||
.if !defined(WITHOUT_OPENSSL)
|
||||
.if ${PORT_OPTIONS:MCRYPTO}
|
||||
${INSTALL_MAN} ${WRKSRC}/yafic-sign.1 ${STAGEDIR}${PREFIX}/man/man1
|
||||
${LN} -sf yafic-sign.1 ${STAGEDIR}${PREFIX}/man/man1/yafic-check.1
|
||||
.endif
|
||||
|
Loading…
Reference in New Issue
Block a user