Date: Mon, 15 Jun 2020 10:41:56 +0000 (UTC) From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= <fernape@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r538869 - head/irc/irssi Message-ID: <202006151041.05FAfuKZ054046@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: fernape Date: Mon Jun 15 10:41:56 2020 New Revision: 538869 URL: https://svnweb.freebsd.org/changeset/ports/538869 Log: irc/irssi: fix utf8proc support Port was not using utf8proc since it didn't look for it in localbase. While here: * Add USE_LDCONFIG * Remove post-patch target since it has no effect PR: 247185 Submitted by: yuripv@ Reviewed by: dor.bsd@xm0.uk (maintainer) Modified: head/irc/irssi/Makefile Modified: head/irc/irssi/Makefile ============================================================================== --- head/irc/irssi/Makefile Mon Jun 15 09:54:47 2020 (r538868) +++ head/irc/irssi/Makefile Mon Jun 15 10:41:56 2020 (r538869) @@ -2,6 +2,7 @@ PORTNAME= irssi PORTVERSION= 1.2.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES?= irc MASTER_SITES= https://github.com/irssi/irssi/releases/download/${PORTVERSION}/ @@ -12,8 +13,9 @@ COMMENT= Modular IRC client with many features LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= autoreconf cpe gettext-runtime gmake gnome libtool ncurses \ - pkgconfig tar:xz +USES= autoreconf cpe gettext-runtime gmake gnome libtool localbase \ + ncurses pkgconfig tar:xz +USE_LDCONFIG= yes USE_GNOME= glib20 GNU_CONFIGURE= yes @@ -45,16 +47,13 @@ TRUECOLOR_DESC= Truecolor (24bit) support TRUECOLOR_CONFIGURE_ENABLE= true-color UTF8PROC_DESC= utf8proc support UTF8PROC_LIB_DEPENDS= libutf8proc.so:textproc/utf8proc +UTF8PROC_CONFIGURE_ENABLE= utf8proc .if defined(WITHOUT_SSL) CONFIGURE_ARGS+= --disable-ssl .else USES+= ssl .endif - -post-patch: - @${REINPLACE_CMD} -e 's|/usr|${PREFIX}|' -e 's|/etc|${PREFIX}&|' \ - ${WRKSRC}/docs/irssi.1 post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/irssi/modules
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006151041.05FAfuKZ054046>