mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
50e16d28ba
- 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]
62 lines
1.3 KiB
Makefile
62 lines
1.3 KiB
Makefile
# New ports collection makefile for: tmux
|
|
# Date created: 28 May 2008
|
|
# Whom: Wen Heping <wenheping@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tmux
|
|
PORTVERSION= 1.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= wen@FreeBSD.org
|
|
COMMENT= A Terminal Multiplexer
|
|
|
|
LIB_DEPENDS= event-1.4.3:${PORTSDIR}/devel/libevent
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
MAN1= tmux.1
|
|
|
|
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
|
|
@${INSTALL_MAN} ${WRKSRC}/tmux.1 ${MANPREFIX}/man/man1
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.if !defined(NOPORTEXAMPLES)
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|