3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
32 lines
786 B
Makefile
32 lines
786 B
Makefile
# New ports collection Makefile for: matrixssl
|
|
# Date created: 2006-03-17
|
|
# Whom: arved
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= matrixssl
|
|
PORTVERSION= 1.8.3
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_GENTOO}
|
|
MASTER_SITE_SUBDIR= distfiles
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S,.,-,g}-open
|
|
|
|
MAINTAINER= arved@FreeBSD.org
|
|
COMMENT= Small alternative SSL implementation
|
|
|
|
USE_GMAKE= yes
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
|
USE_LDCONFIG= yes
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/libmatrixssl* ${PREFIX}/lib
|
|
${INSTALL_DATA} ${WRKSRC}/../*.h ${PREFIX}/include
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${CP} ${WRKSRC}/../doc/* ${DOCSDIR}
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${CP} ${WRKSRC}/../examples/* ${EXAMPLESDIR}
|
|
-cd ${EXAMPLESDIR}; ${RM} *.vcproj *.sln *.orig
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|