mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
d6438c38dd
databases/sqlrelay: upgrade 1.4.0 -> 1.7.0 http://software.firstworks.com/2019/03/rudiments-120-release-announcement.html http://software.firstworks.com/2019/08/rudiments-121-release-announcement.html http://software.firstworks.com/2020/01/rudiments-122-release-announcement.html http://software.firstworks.com/2019/03/sql-relay-150-release-announcement.html http://software.firstworks.com/2019/04/sql-relay-151-release-announcement.html http://software.firstworks.com/2019/08/sql-relay-160-release-announcement.html http://software.firstworks.com/2020/01/sql-relay-170-release-announcement.html
40 lines
896 B
Makefile
40 lines
896 B
Makefile
# Created by: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rudiments
|
|
PORTVERSION= 1.2.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= pi@FreeBSD.org
|
|
COMMENT= C++ class library for daemons, clients, servers, and more
|
|
|
|
LICENSE= LGPL20
|
|
|
|
LIB_DEPENDS= libgssapi_krb5.so:security/krb5 \
|
|
libcurl.so:ftp/curl
|
|
|
|
USES= libtool libedit pathfix pkgconfig readline shebangfix
|
|
GNU_CONFIGURE= yes
|
|
PATHFIX_MAKEFILEIN= Makefile
|
|
SHEBANG_FILES= doc/programming/insert.pl
|
|
USE_LDCONFIG= yes
|
|
|
|
PLIST_SUB= VERSION="${PORTVERSION}"
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS PCRE SSL
|
|
OPTIONS_DEFAULT= SSL
|
|
|
|
PCRE_LIB_DEPENDS= libpcre.so:devel/pcre
|
|
PCRE_CONFIGURE_ENABLE= pcre
|
|
SSL_USES= ssl
|
|
SSL_CONFIGURE_ENABLE= ssl
|
|
SSL_CONFIGURE_ON= --with-ssl-includes=-I${OPENSSLINC} \
|
|
--with-ssl-libs=-L${OPENSSLLIB}
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librudiments.so.6.0.1
|
|
|
|
.include <bsd.port.mk>
|