diff options
author | kwm <kwm@FreeBSD.org> | 2013-03-15 23:26:14 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2013-03-15 23:26:14 +0800 |
commit | 1662f91f21d76226d62fc7ed3db6c5786a154873 (patch) | |
tree | 25497436481732a36666eefdf7c9717280e2e472 /devel/dbus | |
parent | db81eb9b89037edc029948daf613e046a331fcf8 (diff) | |
download | freebsd-ports-gnome-1662f91f21d76226d62fc7ed3db6c5786a154873.tar.gz freebsd-ports-gnome-1662f91f21d76226d62fc7ed3db6c5786a154873.tar.zst freebsd-ports-gnome-1662f91f21d76226d62fc7ed3db6c5786a154873.zip |
Don't make /var/lib we don't use it in the port. [1]
While here fix the path to machine-id in the dbus-uuidgen manpage
Submitted by: bapt [1]
Diffstat (limited to 'devel/dbus')
-rw-r--r-- | devel/dbus/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/devel/dbus/Makefile b/devel/dbus/Makefile index 57c519d3980b..02c6c9d88c9a 100644 --- a/devel/dbus/Makefile +++ b/devel/dbus/Makefile @@ -54,12 +54,15 @@ post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ ${WRKSRC}/dbus/dbus-sysdeps-unix.c @${REINPLACE_CMD} -e 's|/lib/dbus/machine-id|/db/dbus/machine-id|g' \ + ${WRKSRC}/doc/dbus-uuidgen.1 \ ${WRKSRC}/dbus/Makefile.in \ ${WRKSRC}/tools/Makefile.in @${REINPLACE_CMD} '/^SUBDIRS/,/^$$/ s|test||g' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e 's|THREAD_LIBS -lrt|THREAD_LIBS|g ; \ s|dummy man2html|dummy man2html_disable|g' \ ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|install-data-am: install-data-local|install-data-am:|g' \ + ${WRKSRC}/tools/Makefile.in post-install: .if !defined(PACKAGE_BUILDING) |