mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
6bc6f3a9e0
- Rename the LIBDANE option DANE because that's the name of the protocol supported by libgnutls-dane and gnutls-cli. Also clarify the option description. - Add an IDN option. - libgnutls-openssl has been removed in 3.4. Some ports used this library in their LIB_DEPENDS but no port actually required it. - Some old API functions have been removed. Ports that used these have been updated or patched to use the new API. - Add a patch to print/cups to prevent overlinking of libgnutls.so. - Bump PORTREVISION on dependent ports. net-im/jabber: This port used the old API to give users fine grained control over which crypto algorithms were used via a configuration file. It's not immediately obvious how to port this to the new API so the port always uses the defaults now. www/hydra: Mark BROKEN. This uses more removed calls than the other ports, is said to be alpha quality and not fully functional and has been abandoned 10 years ago. PR: 207768 Exp-run by: antoine Approved by: portmgr (antoine)
32 lines
637 B
Makefile
32 lines
637 B
Makefile
# Created by: chinsan
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sakura
|
|
PORTVERSION= 3.3.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11 gnome
|
|
MASTER_SITES= http://launchpadlibrarian.net/235602098/
|
|
|
|
MAINTAINER= danilo@FreeBSD.org
|
|
COMMENT= Terminal emulator based on GTK and VTE
|
|
|
|
LICENSE= GPLv2
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
USE_GNOME= vte3
|
|
USES= cmake pkgconfig gettext tar:bzip2
|
|
LDFLAGS+= -lintl
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/NOT MATCHES "Debug"/d ; \
|
|
/"-O2"/d ; \
|
|
's,share/man,man,g' ; \
|
|
/FILES INSTALL/d' ${WRKSRC}/CMakeLists.txt
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/INSTALL ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|