diff options
author | rakuco <rakuco@FreeBSD.org> | 2017-04-30 13:13:36 +0000 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2017-04-30 13:13:36 +0000 |
commit | 93accc294223b4d990ebd75e64693324cf6823cd (patch) | |
tree | da0b6b540137690a75e79ffe1772564dba5b2eb6 | |
parent | ce7df42040ed0bc577d1c0b88c17ca77c4402c6e (diff) | |
download | FreeBSD-ports-93accc294223b4d990ebd75e64693324cf6823cd.zip FreeBSD-ports-93accc294223b4d990ebd75e64693324cf6823cd.tar.gz |
MFH: r439799
Drop machine-id path substitution in post-patch.
r431187 stopped using a non-default path for dbus's machine-id file, so the sed
call here is unnecessary and produces warnings at runtime:
IBUS-WARNING **: Unable to load /var/db/dbus/machine-id: Failed to open file
'/var/db/dbus/machine-id': No such file or directory
PR: 218812
Submitted by: Tatsuki Makino <tatsuki_makino@hotmail.com>
Approved by: Henry Hu <henry.hu.sh@gmail.com> (maintainer)
Approved by: ports-secteam (miwi)
-rw-r--r-- | textproc/ibus/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/textproc/ibus/Makefile b/textproc/ibus/Makefile index 40a871c..7e3e4c0 100644 --- a/textproc/ibus/Makefile +++ b/textproc/ibus/Makefile @@ -3,7 +3,7 @@ PORTNAME= ibus PORTVERSION= 1.5.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/${PORTVERSION}/:DEFAULT \ https://raw.githubusercontent.com/Ranks/emojione/${EMOJIONE_TAG}/:emojione @@ -110,9 +110,6 @@ PLIST_SUB+= COMPDIR="@comment " post-extract-EMOJI-on: ${CP} ${DISTDIR}/emoji.json ${WRKSRC}/ -post-patch: - ${REINPLACE_CMD} -e 's|/var/lib/dbus|/var/db/dbus|g' ${WRKSRC}/src/ibusshare.c - post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/xdg/autostart ${INSTALL_DATA} ${PATCHDIR}/ibus.desktop ${STAGEDIR}${PREFIX}/etc/xdg/autostart |