freebsd-ports/net/ecore-con/Makefile
Sunpoet Po-Chuan Hsieh c2d1a14c7c - Update to 7.31.0
- Bump PORTREVISION for ftp/curl shlib change
- Add TEST_DEPENDS
- Convert to new options framework
- Adjust options:
  - Add COOKIES
  - Add CYASSL, NSS, POLARSSL, THREADED_RESOLVER, TLS_SRP [1]
  - Add GSSAPI and SPNEGO [2]
  - Remove KERBEROS4
  - Rename LIBIDN to IDN
  - Remove TRACKMEMORY [1]
- Sort option handler
- Add SLAVEDIRS: ftp/curl-hiphop
- Cosmetic change
- Cleanup Makefile header
- While I'm here, fix typo (PORTREVSION) in x11-wm/ede/Makefile

Changes:	http://curl.haxx.se/changes.html
PR:		ports/172325 (-exp run), ports/177369 (based on) [1]
Submitted by:	Hirohisa Yamaguchi <umq@ueo.co.jp> [1], hrs (via email) [2]
Exp run by:	miwi
2013-07-11 16:26:26 +00:00

69 lines
1.6 KiB
Makefile

# Created by: Stanislav Sedov <stas@FreeBSD.org>
# $FreeBSD$
PORTNAME= con
PORTVERSION= 1.7.7
PORTREVISION= 1
CATEGORIES= net enlightenment
MASTER_SITES= http://download.enlightenment.fr/releases/ \
LOCAL/gblach/e17/
PKGNAMEPREFIX= ecore-
DISTNAME= ${PKGNAMEPREFIX}${PORTVERSION}
MAINTAINER= gblach@FreeBSD.org
COMMENT= Enlightenment core abstraction library (con module)
LICENSE= BSD
DIST_SUBDIR= e17
USE_BZIP2= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_EFL= ecore libtool_hack
USES= pkgconfig
USE_LDCONFIG= yes
BUILD_WRKSRC= ${WRKSRC}/src/lib/ecore_con
INSTALL_WRKSRC= ${BUILD_WRKSRC}
.include "../../devel/ecore-main/Makefile.inc"
CONFIGURE_ARGS+= --enable-ecore-con
OPTIONS_DEFINE= CARES CURL SSL
OPTIONS_DEFAULT=CARES CURL SSL
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MCARES}
CONFIGURE_ARGS+= --enable-cares
LIB_DEPENDS+= cares:${PORTSDIR}/dns/c-ares
.else
CONFIGURE_ARGS+= --disable-cares
.endif
.if ${PORT_OPTIONS:MCURL}
CONFIGURE_ARGS+= --enable-curl
LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl
.else
CONFIGURE_ARGS+= --disable-curl
.endif
.if ${PORT_OPTIONS:MSSL}
CONFIGURE_ENV= SSL_CFLAGS="-I${OPENSSLINC} -L${OPENSSLLIB}" SSL_LIBS="-lssl"
CONFIGURE_ARGS+= --enable-openssl
.else
CONFIGURE_ARGS+= --disable-openssl
.endif
post-patch:
@${REINPLACE_CMD} -E -e \
's,\$$\(top_builddir\)/src/lib/ecore/\.libs,${LOCALBASE}/lib,'\
-e 's,\$$\(top_builddir\)/src/lib/ecore/libecore\.la,-lecore,'\
${BUILD_WRKSRC}/Makefile.in
post-install:
@${REINPLACE_CMD} 's/ openssl//' ${WRKSRC}/ecore-con.pc
${INSTALL_DATA} ${WRKSRC}/ecore-con.pc \
${PREFIX}/libdata/pkgconfig/
.include <bsd.port.mk>