mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# New ports collection makefile for: mrxvt
|
|
# Date created: 27 Nov 2004
|
|
# Whom: David Yeske <dyeske@yahoo.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mrxvt
|
|
PORTVERSION= 0.4.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= materm
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= dyeske@yahoo.com
|
|
COMMENT= A tabbed version of rxvt
|
|
|
|
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
|
|
png.5:${PORTSDIR}/graphics/png
|
|
|
|
CONFLICTS= mrxvt-0.5.*
|
|
|
|
USE_X_PREFIX= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
.if defined(WITH_JAPANESE)
|
|
CONFIGURE_ARGS+= --enable-xim --enable-cjk --with-encoding=eucj
|
|
.endif # WITH_JAPANESE
|
|
|
|
.if defined(WITH_XFT)
|
|
LIB_DEPENDS+= Xft.2:${PORTSDIR}/x11-fonts/libXft
|
|
CONFIGURE_ARGS+= --enable-xft
|
|
.endif
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${X11BASE}/include -I${LOCALBASE}/include" \
|
|
LIBS="${LIBS} -L${LOCALBASE}/lib -L${X11BASE}/lib"
|
|
|
|
MAN1= mrxvt.1
|
|
|
|
pre-everything::
|
|
@${ECHO_MSG} "=========================================>"
|
|
@${ECHO_MSG} "For Japanese support use make -DWITH_JAPANESE install"
|
|
@${ECHO_MSG} "For XFT support use make -DWITH_XFT install"
|
|
@${ECHO_MSG} "=========================================>"
|
|
|
|
.include <bsd.port.mk>
|