mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
dfa6520331
http://hexchat.readthedocs.org/en/latest/changelog.html - Take maintainership - Add dependency for devel/gnome-common - Remove XFT Option, changed by upstream - Remove LIBSEXY, SOCKS and XFT from default Options - Add SOCKS_DESC - Remove Spell Options and dependencies, changed by upstream - Remove PORTSCOUT - USES python instead of USE_PYTHON=yes - Remove obsolete REINPLACE, changes accepted by upstream to use SH - Change REINPLACE, changed by upstream - Add CP and RM, not fixable with other ways - Recreate patch files/patch-src__common__ssl.c with make makepatch Approved by: maintainer (private email)
111 lines
3.1 KiB
Makefile
111 lines
3.1 KiB
Makefile
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hexchat
|
|
PORTVERSION= 2.10.1
|
|
CATEGORIES= irc gnome ipv6
|
|
MASTER_SITES= http://dl.hexchat.org/${PORTNAME}/
|
|
|
|
MAINTAINER= nemysis@FreeBSD.org
|
|
COMMENT= IRC chat program with GTK and Text Frontend
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= gnome-autogen.sh:${PORTSDIR}/devel/gnome-common
|
|
LIB_DEPENDS= libproxy.so:${PORTSDIR}/net/libproxy
|
|
|
|
USES= gmake desktop-file-utils libtool pkgconfig tar:xz
|
|
USE_GNOME= gtk20 libxml2
|
|
USE_AUTOTOOLS= automake autoconf libtoolize
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--enable-openssl --enable-gtkfe --disable-sysinfo \
|
|
--with-pkgconfigdir=${LOCALBASE}/libdata/pkgconfig
|
|
MAKE_ENV= INSTALL_STRIP_FLAG=${STRIP}
|
|
INSTALLS_ICONS= yes
|
|
|
|
LDFLAGS+= -pthread
|
|
LIBS+= -L${LOCALBASE}/lib -lX11
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= CA_BUNDLE CANBERRA DBUS DOAT DOCS FISHLIM NLS NOTIFY \
|
|
PERL PYTHON SOCKS TEXTFE
|
|
|
|
OPTIONS_DEFAULT= CA_BUNDLE CANBERRA DBUS NOTIFY PERL PYTHON
|
|
|
|
OPTIONS_SUB= yes
|
|
|
|
CA_BUNDLE_DESC= Include CA bundle for SSL verification
|
|
CANBERRA_DESC= Audio support via Libcanberra
|
|
DOAT_DESC= Do At plugin
|
|
FISHLIM_DESC= FiSHLiM plugin
|
|
TEXTFE_DESC= Text frontend
|
|
SOCKS_DESC= SOCKS proxy support, FORBIDDEN in FreeBSD 10+
|
|
|
|
CA_BUNDLE_RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss
|
|
CANBERRA_LIB_DEPENDS= libcanberra.so:${PORTSDIR}/audio/libcanberra
|
|
CANBERRA_CONFIGURE_ENABLE= libcanberra
|
|
DBUS_LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib
|
|
DBUS_CONFIGURE_ENABLE= dbus
|
|
DOAT_CONFIGURE_ENABLE= doat
|
|
FISHLIM_CONFIGURE_ENABLE= fishlim
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
NLS_USES= gettext
|
|
NOTIFY_RUN_DEPENDS= notify-send:${PORTSDIR}/devel/libnotify
|
|
NOTIFY_CONFIGURE_ENABLE= libnotify
|
|
PERL_CONFIGURE_ENABLE= perl
|
|
PYTHON_CONFIGURE_ENABLE= python
|
|
SOCKS_LIB_DEPENDS= libsocks.so:${PORTSDIR}/net/dante
|
|
SOCKS_CONFIGURE_ENABLE= socks
|
|
TEXTFE_CONFIGURE_ENABLE= textfe
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MCA_BUNDLE}
|
|
CA_BUNDLE= "${LOCALBASE}/share/certs/ca-root-nss.crt"
|
|
.else
|
|
CA_BUNDLE= NULL
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPYTHON}
|
|
USES+= python
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPERL}
|
|
USES+= perl5
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDBUS}
|
|
USE_GNOME+= gconf2
|
|
.endif
|
|
|
|
pre-configure:
|
|
@(cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ./autogen.sh)
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/^appdata_DATA/s|hexchat.appdata.xml||' \
|
|
${WRKSRC}/data/misc/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|%%CA_BUNDLE%%|${CA_BUNDLE}|' \
|
|
${WRKSRC}/src/common/server.c
|
|
|
|
post-install:
|
|
# Ugly CP and RM, only this works. Not works pathfix,
|
|
# --localedir=${LOCALBASE}/share/locale and patching.
|
|
# Upstream can't fix this and think that glib-gettextize (devel/glib20)
|
|
# is broken in FreeBSD.
|
|
@${CP} -a ${STAGEDIR}/usr/local/lib/locale/* ${STAGEDIR}/usr/local/share/locale/
|
|
@${RM} -fr ${STAGEDIR}/usr/local/lib/locale/
|
|
|
|
${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.md ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
# @(cd ${PREFIX}/lib/hexchat/plugins/ && ${RM} -f *.a)
|
|
|
|
.include <bsd.port.mk>
|