fa81a4f5f8
What's new in at-spi2-core 2.46.0: * Fix GetInterfaces documentation on org.a11y.atspi.Accessible interface. What's new in at-spi2-core 2.45.91: * Send device event controller events using the same signature as other events. * Document the Accessible, Action, and Cache dbus interfaces. * Fix license of atspi-gmain.c (#87). What's new in at-spi2-core 2.45.90: * xml: Add some documentation. * xml: Fix event arguments. * xml: Add some missing DeviceEventController methods. * Bind the AT-SPI bus to the graphical session. * Mark bus service as belonging to the session slice. * Add ATSPI_ROLE_PUSH_BUTTON_MENU. * Add an "announcement" event/signal to allow objects to send notifications (!63). * Various code clean-ups and test improvements. What's new in at-spi2-core 2.45.1: * Atk and at-spi2-atk are now merged into this project. * Now requires meson 0.56.2 and glib 2.67.4. * at-spi2-atk: Expose the accessible hierarchy via dbus introspection. * Properly escape the AT-SPI bus address; fixes warnings about the address not containing a colon (!55). * Add a text value to AtspiValue, so that a value can expose a textual description, as in the new Atk value API. * Add atspi_event_listener_register_with_app, to allow an event listener to be registered only for a given application (!52). - accessibility/atk and accessibility/at-spi2-atk have been merged into accessibility/at-spi2-core - accessibility/at-spi2-core: bump consumers of removed ports atk and at-spi2-atk PR: 269704 Exp-run by: antoine ---
69 lines
2 KiB
Makefile
69 lines
2 KiB
Makefile
PORTNAME= ettercap
|
|
PORTVERSION= 0.8.3.1
|
|
PORTREVISION= 2
|
|
PORTEPOCH= 1
|
|
CATEGORIES= net-mgmt security
|
|
MASTER_SITES= https://github.com/Ettercap/ettercap/releases/download/v${PORTVERSION}/
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Network sniffer/interceptor/injector/logger for switched LANs
|
|
WWW= https://www.ettercap-project.org/
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libnet.so:net/libnet
|
|
|
|
USES= bison cmake cpe iconv localbase:ldflags pkgconfig
|
|
|
|
CMAKE_ARGS= -DHAVE_PCAP=${LIBDIR} \
|
|
-DHAVE_RESOLV=${LIBDIR} \
|
|
-DINSTALL_SYSCONFDIR=${PREFIX}/etc \
|
|
-DMAN_INSTALLDIR=${PREFIX}/man
|
|
CMAKE_OFF= BUNDLED_LIBS ENABLE_GEOIP ENABLE_LUA ENABLE_PDF_DOCS ENABLE_TESTS LIBRARY_BUILD
|
|
CMAKE_ON= HAVE_DLOPEN
|
|
LDFLAGS+= ${ICONV_LIB} -lnet -lpcap
|
|
MAKE_JOBS_UNSAFE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
DOCS= AUTHORS CHANGELOG README README.BINARIES README.BUGS \
|
|
README.GIT README.PLATFORMS THANKS TODO TODO.TESTING \
|
|
doc/capture doc/decoders doc/dissectors doc/plugins doc/threads
|
|
|
|
CPE_VENDOR= ettercap-project
|
|
|
|
OPTIONS_DEFINE= DESKTOP DOCS GTK3 IPV6 NCURSES PCRE PLUGINS SSL UTF8
|
|
OPTIONS_DEFAULT=GTK3 NCURSES PCRE PLUGINS SSL UTF8
|
|
OPTIONS_SUB= yes
|
|
DESKTOP_DESC= Install ettercap.desktop
|
|
NCURSES_DESC= Ncurses interface
|
|
PCRE_DESC= Use PCRE in filters
|
|
SSL_DESC= SSH1 and SSL decryption support
|
|
|
|
DESKTOP_CMAKE_BOOL= INSTALL_DESKTOP
|
|
DESKTOP_USES= desktop-file-utils
|
|
NCURSES_CMAKE_BOOL= ENABLE_CURSES
|
|
NCURSES_USES= ncurses
|
|
GTK3_CMAKE_BOOL= ENABLE_GTK
|
|
GTK3_USE= GNOME=gtk30
|
|
GTK3_USES= gnome
|
|
IPV6_CMAKE_BOOL= ENABLE_IPV6
|
|
PCRE_CMAKE_BOOL= HAVE_PCRE
|
|
PCRE_LIB_DEPENDS= libpcre.so:devel/pcre
|
|
PLUGINS_BUILD_DEPENDS= curl>=7.26.0:ftp/curl
|
|
PLUGINS_CMAKE_BOOL= ENABLE_PLUGINS
|
|
PLUGINS_LIB_DEPENDS= libcurl.so:ftp/curl
|
|
SSL_CMAKE_BOOL= ENABLE_SSL
|
|
SSL_USES= ssl
|
|
UTF8_CMAKE_BOOL= HAVE_UTF8
|
|
UTF8_CMAKE_ON= -DHAVE_ICONV=${ICONV_PREFIX}
|
|
UTF8_USES= iconv
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${STAGEDIR}${ETCDIR}/etter.conf ${STAGEDIR}${PREFIX}/etc/etter.conf.sample
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}/
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|