diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2006-01-04 23:04:12 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2006-01-04 23:04:12 +0000 |
commit | 03f61cd44367471ccceb2b15edf257ebd97851eb (patch) | |
tree | c57cf162e4d1b0cb5c920515099e8a5cde5bfb5a /x11/rxvt-unicode/Makefile | |
parent | fbe708601acc782e692f73e3fe644a28254d565a (diff) |
Upgrade to 6.3. This is a security fix: restore permissions properly.
Full changelog at <http://dist.schmorp.de/rxvt-unicode/Changes>.
A embedded Perl interpreter is installed by default, use WITHOUT_PERL
to disable it.
PR:
Security: VuXML c2fdb3bc-7d72-11da-b96e-000fb586ba73
Notes
Notes:
svn path=/head/; revision=152757
Diffstat (limited to 'x11/rxvt-unicode/Makefile')
-rw-r--r-- | x11/rxvt-unicode/Makefile | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/x11/rxvt-unicode/Makefile b/x11/rxvt-unicode/Makefile index a56680093112..49262cb3a8e3 100644 --- a/x11/rxvt-unicode/Makefile +++ b/x11/rxvt-unicode/Makefile @@ -6,7 +6,7 @@ # PORTNAME= rxvt-unicode -PORTVERSION= 6.2 +PORTVERSION= 6.3 CATEGORIES= x11 MASTER_SITES= http://dist.schmorp.de/rxvt-unicode/%SUBDIR%/ MASTER_SITE_SUBDIR= . Attic @@ -17,7 +17,6 @@ COMMENT= A clone of the terminal emulator rxvt modified to support Unicode LIB_DEPENDS= Xft.2:${PORTSDIR}/x11-fonts/libXft BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconfig -USE_PERL5_BUILD= yes USE_X_PREFIX= yes USE_XPM= yes GNU_CONFIGURE= yes @@ -33,6 +32,17 @@ PORTDOCS1= Changes PORTDOCS= README.menu ${PORTDOCS1} EXAMPLES= example.menu jedmenu.sl menu rxvt.menu rxvt.zh-menu terminal.menu +# disable the embedded perl interpreter +.if defined(WITHOUT_PERL) +CONFIGURE_ARGS+= --disable-perl +USE_PERL5_BUILD= yes +PLIST_SUB= PERL="@comment " +.else +USE_PERL5= yes +MAN3= urxvtperl.3 +PLIST_SUB= PERL="" +.endif + # disable XIM (X Input Method) protocol support .if defined(WITHOUT_XIM) CONFIGURE_ARGS+= --disable-xim @@ -147,6 +157,7 @@ pre-everything:: @${ECHO_MSG} @${ECHO_MSG} "You may use the following build options:" @${ECHO_MSG} + @${ECHO_MSG} "WITHOUT_PERL disable the embedded Perl interpreter" @${ECHO_MSG} "WITHOUT_XIM disable support for XIM (X Input Method) protocol" @${ECHO_MSG} "WITHOUT_MENUBAR disable support for menu bar system" @${ECHO_MSG} "WITHOUT_RXVT_SCROLLBAR disable support for the original rxvt scrollbar" |