1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-12 07:27:57 +00:00

USE_OPENSSL, respect CC, CFLAGS, LOCALBASE

Assisted by:    Jim Bloom <bloom@acm.org>
This commit is contained in:
Kris Kennaway 2000-02-06 21:58:21 +00:00
parent 5bb50d962a
commit d5e63f727e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=25528
2 changed files with 20 additions and 13 deletions

View File

@ -13,13 +13,7 @@ MASTER_SITES= http://www.rickk.com/sslwrap/
MAINTAINER= ZGabor@CoDe.HU
LIB_DEPENDS= crypto.1:${PORTSDIR}/security/openssl \
ssl.1:${PORTSDIR}/security/openssl
.if defined(USA_RESIDENT) && ${USA_RESIDENT} == YES
LIB_DEPENDS= rsaref.2:${PORTSDIR}/security/rsaref
MAKE_ENV+= EXTRA_SSL_LIBS="-lRSAglue -lrsaref"
.endif
USE_OPENSSL= RSA
WRKSRC= ${WRKDIR}/sslwrap205

View File

@ -1,13 +1,26 @@
--- Makefile.orig Tue Sep 28 07:49:54 1999
+++ Makefile Sun Dec 26 10:22:14 1999
@@ -14,8 +14,8 @@
--- Makefile.orig Tue Sep 28 05:49:54 1999
+++ Makefile Thu Jan 27 23:09:09 2000
@@ -6,16 +6,19 @@
# Debug/Optimizations
#OPT = -g
-OPT = -O2
+CFLAGS?=-O2
+OPT = ${CFLAGS}
+
+CC?= gcc
# Define
OPENSSL="\"openssl/\""
#OPENSSL=""
all :
gcc -o sslwrap ${SRC} ${OPT} -DFLAT_INC -DOPENSSL=${OPENSSL} \
- gcc -o sslwrap ${SRC} ${OPT} -DFLAT_INC -DOPENSSL=${OPENSSL} \
- -L/usr/local/ssl/lib -lssl -lcrypto \
- -I/usr/local/ssl/include \
+ -L${PREFIX}/lib -lssl -lcrypto ${EXTRA_SSL_LIBS} \
+ -I${PREFIX}/include \
+ ${CC} -o sslwrap ${SRC} ${OPT} -DFLAT_INC -DOPENSSL=${OPENSSL} \
+ -L${OPENSSLLIB} -lssl -lcrypto ${EXTRA_SSL_LIBS} \
+ -I${OPENSSLINC} \
${EXTLIBS}
clean: