diff options
author | wen <wen@FreeBSD.org> | 2010-04-06 10:52:08 +0800 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2010-04-06 10:52:08 +0800 |
commit | 57a02acc1af490caec9a84b8768fbb8fc38e0f87 (patch) | |
tree | 64c41270bccf86dcba7272d62c42fb3e1c10f4a6 /sysutils | |
parent | afce2d04f8a3ca6a22d073994e3bb2ea4f900d55 (diff) | |
download | freebsd-ports-gnome-57a02acc1af490caec9a84b8768fbb8fc38e0f87.tar.gz freebsd-ports-gnome-57a02acc1af490caec9a84b8768fbb8fc38e0f87.tar.zst freebsd-ports-gnome-57a02acc1af490caec9a84b8768fbb8fc38e0f87.zip |
- Fix run error when using zsh or sh as shell [1][2]
- Fix build error with custom LOCALBASE
PR: ports/145349 [1]
ports/144760 [2]
Submitted by: Ryan Steinmetz <rpsfa@rit.edu> [1],
Erwan david <erwan@rail.eu.org> [2]
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/tmux/Makefile | 15 | ||||
-rw-r--r-- | sysutils/tmux/files/extra-patch-configure | 10 |
2 files changed, 24 insertions, 1 deletions
diff --git a/sysutils/tmux/Makefile b/sysutils/tmux/Makefile index 4c5a7eb9466c..57326456288b 100644 --- a/sysutils/tmux/Makefile +++ b/sysutils/tmux/Makefile @@ -7,6 +7,7 @@ PORTNAME= tmux PORTVERSION= 1.2 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -24,9 +25,21 @@ PLIST_FILES= bin/tmux PORTDOCS= CHANGES FAQ NOTES PORTEXAMPLES= * +CFLAGS+= -I${LOCALBASE}/include +#LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS+= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} <= 703100 +EXTRA_PATCHES= ${FILESDIR}/extra-patch-configure +.endif + post-patch: @${REINPLACE_CMD} -e '/^#define HAVE_TREE_H/d' \ ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's#/usr/local#${LOCALBASE}#g' \ + ${WRKSRC}/Makefile do-install: @${INSTALL_PROGRAM} ${WRKSRC}/tmux ${PREFIX}/bin @@ -45,4 +58,4 @@ post-install: @${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/sysutils/tmux/files/extra-patch-configure b/sysutils/tmux/files/extra-patch-configure new file mode 100644 index 000000000000..6b9a7d99fe99 --- /dev/null +++ b/sysutils/tmux/files/extra-patch-configure @@ -0,0 +1,10 @@ +--- configure.orig 2010-03-17 09:12:09.000000000 +0800 ++++ configure 2010-03-17 09:11:28.000000000 +0800 +@@ -204,6 +204,7 @@ + FreeBSD|DragonFly) + cat <<EOF >>$CONFIG_H + #define HAVE_ASPRINTF ++#define HAVE_BROKEN_KQUEUE + #define HAVE_BZERO + #define HAVE_DAEMON + #define HAVE_FGETLN |