1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00

- Proper fix for utmpx [1]

- Disable no longer needed setuid bit
- Remove no longer needed CPPFLAGS and LIBS
- Bump PORTREVISION

Fixed by:	ed
This commit is contained in:
Lars Engels 2011-06-21 18:21:03 +00:00
parent 1bec3a7d7b
commit f649434cac
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=276020

View File

@ -7,7 +7,7 @@
PORTNAME= mrxvt-devel
PORTVERSION= 0.5.4
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= x11
MASTER_SITES= SF/materm/mrxvt%20source/${PORTVERSION}
DISTNAME= mrxvt-${PORTVERSION}
@ -42,8 +42,11 @@ OPTIONS= XFT "Enable Xft support for fonts" Off \
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 900007
CONFIGURE_ARGS+= --disable-lastlog --disable-wtmp
CONFIGURE_ARGS+= --enable-utempter
.if ${OSVERSION} >= 900004
CONFIGURE_ARGS+= --disable-lastlog
.else
LIB_DEPENDS+= utempter.0:${PORTSDIR}/sysutils/libutempter
.endif
.if defined(WITH_JAPANESE)
@ -121,9 +124,6 @@ CONFIGURE_ARGS+= --with-atab-extra=${EXTRA_ATAB_HEIGHT:M[0-9]*}
CONFIGURE_ARGS+= --with-tab-radius=${TAB_RADIUS:M[0-9]*}
.endif
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
LIBS="${LIBS} -L${LOCALBASE}/lib"
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/mrxvt ${PREFIX}/bin
${MKDIR} ${PREFIX}/share/pixmaps
@ -147,7 +147,4 @@ do-install:
.endif
@${CAT} ${PKGMESSAGE}
post-install:
${CHMOD} 4511 ${PREFIX}/bin/mrxvt
.include <bsd.port.post.mk>