freebsd-ports/lang/io/Makefile.addons
Baptiste Daroussin b564653452 Only use libevent2
Remove libevent as libevent2 is providing a good compatibility interface as well
as providing better performances.
Remove custom patches from libevent2 and install libevent2 the regular way
Mark ports abusing private fields of the libevent1 API as broken
Import a patch from fedora to have honeyd working with libevent2
Remove most of the patches necessary to find the custom installation we used to
have for libevent2

With hat:	portmgr
2014-07-24 13:32:58 +00:00

306 lines
4.3 KiB
Text

#
# These do not require additional dependencies
#
DEFAULT_ADDONS= AsyncRequest \
Bitly \
Blowfish \
Box \
CGI \
ContinuedFraction \
Curses \
DistributedObjects \
Facebook \
Flux \
Fnmatch \
GoogleSearch \
HttpClient \
Loki \
MD5 \
NotificationCenter \
Obsidian \
Random \
Range \
Rational \
SGML \
SHA1 \
SecureSocket \
SqlDatabase \
Syslog \
SystemCall \
Thread \
Twitter \
User \
VertexDB \
Volcano \
Zlib
#
# These DO require additional dependencies
#
OPTIONAL_ADDONS=BigNum \
CFFI \
Clutter \
DBI \
EditLine \
Font \
GLFW \
Image \
LZO \
LibSndFile \
Libxml2 \
Loudmouth \
Memcached \
MySQL \
Ogg \
OpenGL \
PostgreSQL \
Python \
QDBM \
ReadLine \
Regex \
SQLite3 \
SampleRateConverter \
Socket \
TagLib \
Theora \
TokyoCabinet \
UUID \
Vorbis \
Yajl
OPTIONS_GROUP_ADDONS=${OPTIONAL_ADDONS}
.include <bsd.port.options.mk>
#
# BigNum
#
.if ${PORT_OPTIONS:MBigNum}
LIB_DEPENDS+= libgmp.so:${PORTSDIR}/math/gmp
.endif
#
# CFFI
#
.if ${PORT_OPTIONS:MCFFI}
LIB_DEPENDS+= libffi.so:${PORTSDIR}/devel/libffi
.endif
#
# Clutter
#
.if ${PORT_OPTIONS:MClutter}
LIB_DEPENDS+= libclutter-glx-1.0.so:${PORTSDIR}/graphics/clutter
.endif
#
# DBI
#
.if ${PORT_OPTIONS:MDBI}
LIB_DEPENDS+= libdbi.so:${PORTSDIR}/databases/libdbi
.endif
#
# EditLine
#
.if ${PORT_OPTIONS:MEditLine}
LIB_DEPENDS+= libedit.so:${PORTSDIR}/devel/libedit
.endif
#
# Font
#
.if ${PORT_OPTIONS:MFont}
USE_GL+= glut
USE_XORG+= xmu
LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2
.endif
#
# GLFW
#
.if ${PORT_OPTIONS:MGLFW}
LIB_DEPENDS+= libglfw.so.0:${PORTSDIR}/graphics/glfw2
.endif
#
# Image
#
.if ${PORT_OPTIONS:MImage}
LIB_DEPENDS+= libjpeg.so:${PORTSDIR}/graphics/jpeg \
libpng15.so:${PORTSDIR}/graphics/png \
libtiff.so:${PORTSDIR}/graphics/tiff
.endif
#
# LZO
#
.if ${PORT_OPTIONS:MLZO}
LIB_DEPENDS+= liblzo2.so:${PORTSDIR}/archivers/lzo2
.endif
#
# LibSndFile
#
.if ${PORT_OPTIONS:MLibSndFile}
LIB_DEPENDS+= libsndfile.so:${PORTSDIR}/audio/libsndfile
.endif
#
# Libxml2
#
.if ${PORT_OPTIONS:MLibxml2}
USE_GNOME+= libxml2
.endif
#
# Loudmouth
#
.if ${PORT_OPTIONS:MLoudmouth}
LIB_DEPENDS+= libloudmouth-1.so:${PORTSDIR}/net-im/loudmouth
.endif
#
# Memcached
#
.if ${PORT_OPTIONS:MMemcached}
LIB_DEPENDS+= libmemcached.so:${PORTSDIR}/databases/libmemcached
.endif
#
# MySQL
#
.if ${PORT_OPTIONS:MMySQL}
USE_MYSQL+= client
.endif
#
# Ogg
#
.if ${PORT_OPTIONS:MOgg}
LIB_DEPENDS+= libogg.so:${PORTSDIR}/audio/libogg
.endif
#
# OpenGL
#
.if ${PORT_OPTIONS:MOpenGL}
USE_GL+= glut
USE_XORG+= xmu
.endif
#
# PostgreSQL
#
.if ${PORT_OPTIONS:MPostgreSQL}
USE_PGSQL= yes
.endif
#
# Python
#
.if ${PORT_OPTIONS:MPython}
USE_PYTHON= yes
.endif
#
# QDBM
#
.if ${PORT_OPTIONS:MQDBM}
LIB_DEPENDS+= libqdbm.so:${PORTSDIR}/databases/qdbm
.endif
#
# ReadLine
#
.if ${PORT_OPTIONS:MReadLine}
LIB_DEPENDS+= libhistory.so:${PORTSDIR}/devel/readline
.endif
#
# Regex
#
.if ${PORT_OPTIONS:MRegex}
LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre
.endif
#
# SQLite3
#
.if ${PORT_OPTIONS:MSQLite3}
USE_SQLITE= 3
SQLITE_LIB= ${LOCALBASE}/lib/libsqlite${SQLITE_VER}.so
.endif
# SampleRateConverter
#
.if ${PORT_OPTIONS:MSampleRateConverter}
LIB_DEPENDS+= libsamplerate.so:${PORTSDIR}/audio/libsamplerate
.endif
#
# Socket
#
.if ${PORT_OPTIONS:MSocket}
LIB_DEPENDS+= libevent.so:${PORTSDIR}/devel/libevent2
.endif
#
# TagLib
#
.if ${PORT_OPTIONS:MTagLib}
LIB_DEPENDS+= libtag.so:${PORTSDIR}/audio/taglib
.endif
#
# Theora
#
.if ${PORT_OPTIONS:MTheora}
LIB_DEPENDS+= libtheora.so:${PORTSDIR}/multimedia/libtheora
.endif
#
# TokyoCabinet
#
.if ${PORT_OPTIONS:MTokyoCabinet}
LIB_DEPENDS+= libtokyocabinet.so:${PORTSDIR}/databases/tokyocabinet
.endif
#
# UUID
#
.if ${PORT_OPTIONS:MUUID}
LIB_DEPENDS+= libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid
.endif
#
# Vorbis
#
.if ${PORT_OPTIONS:MBVorbis}
LIB_DEPENDS+= libvorbis.so:${PORTSDIR}/audio/libvorbis
.endif
#
# Yajl
#
.if ${PORT_OPTIONS:MYajl}
LIB_DEPENDS+= libyajl.so:${PORTSDIR}/devel/yajl
.endif
########################################
# WE NOW DEFINE THE FULL LIST OF ADDONS
#
.for def in ${DEFAULT_ADDONS}
PLIST_SUB+= ${def}=""
.endfor
ADDONS= ${DEFAULT_ADDONS}
.for opt in ${OPTIONS_GROUP_ADDONS}
. if defined (WITH_${opt})
ADDONS+= ${opt}
PLIST_SUB+= ${opt}=""
. else
PLIST_SUB+= ${opt}="@comment "
. endif
.endfor