mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
64d64af272
This a security release for libwww to take into account security advisories CVE-2016-9063 and CVE-2017-9233. In order to take into account current and future expat security advisories, the expat source code was removed from the libwww tree. The makefiles were modified so that libwww dynamically links against the system's expat library. Patches removed were incorporated upstream. Bump PORTREVISION of dependent ports due shlib change. Changes: https://raw.githubusercontent.com/w3c/libwww/5.4.2/ChangeLog MFH: 2018Q3 Security: e375ff3f-7fec-11e8-8088-28d244aee256
36 lines
756 B
Makefile
36 lines
756 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= liboop
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 15
|
|
CATEGORIES= devel
|
|
MASTER_SITES= GENTOO \
|
|
http://download.ofb.net/liboop/
|
|
|
|
MAINTAINER= rodrigo@FreeBSD.org
|
|
COMMENT= Low-level event loop management library for POSIX-based OS
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libadns.so:dns/adns \
|
|
libwwwcore.so:www/libwww
|
|
|
|
CONFLICTS_INSTALL= gale
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-libwww
|
|
MAKE_ENV= INSTALL_STRIP_FLAG=${STRIP}
|
|
MAKE_JOBS_UNSAFE= yes
|
|
USE_GNOME= glib12 glib20
|
|
USE_LDCONFIG= yes
|
|
USES= libtool pathfix pkgconfig tcl tar:bzip2
|
|
|
|
CPPFLAGS+= -I${TCL_INCLUDEDIR} -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|8\.4|${TCL_VER:S/.//}|g' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|