# Created by: gpalmer@FreeBSD.org # $FreeBSD$ PORTNAME= rxvt-unicode PORTVERSION= 9.20 CATEGORIES= x11 MASTER_SITES= http://dist.schmorp.de/rxvt-unicode/%SUBDIR%/ MASTER_SITE_SUBDIR= . Attic MAINTAINER= thierry@FreeBSD.org COMMENT= Clone of the terminal emulator rxvt modified to support Unicode LICENSE= GPLv2 BUILD_DEPENDS= tic:${PORTSDIR}/devel/ncurses \ ${LOCALBASE}/libdata/pkgconfig/fontconfig.pc:${PORTSDIR}/x11-fonts/fontconfig RUN_DEPENDS= ${LOCALBASE}/bin/fc-cache:${PORTSDIR}/x11-fonts/fontconfig \ ${LOCALBASE}/share/misc/terminfo.db:${PORTSDIR}/devel/ncurses USES= pkgconfig shebangfix tar:bzip2 USE_XORG= xpm xft xrender GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -lutil CONFIGURE_ENV= TIC=${LOCALBASE}/bin/tic CONFIGURE_ARGS= --enable-everything --with-term=rxvt \ --with-terminfo=${LOCALBASE}/share/misc/terminfo.db OPTIONS_DEFINE= PERL XIM UNICODE3 ISO14755 COMBINING RXVT_SCROLLBAR \ NEXT_SCROLLBAR XTERM_SCROLLBAR BACKSPACE_KEY DELETE_KEY \ MOUSEWHEEL SMART_RESIZE IMLOCALE_FIX GDK_PIXBUF \ NOTIFY 256_COLOR DOCS SHEBANG_FILES= ${WRKSRC}/src/perl/* perl_OLD_CMD= perl perl_CMD= ${SETENV} perl PERL_DESC= Embedded Perl interpreter XIM_DESC= Support for XIM (X Input Method) protocol UNICODE3_DESC= Support Unicode codepoints above 65535 ISO14755_DESC= Support for extended ISO 14755 modes COMBINING_DESC= Automatic composition of combining chars RXVT_SCROLLBAR_DESC= Support for the original rxvt scrollbar NEXT_SCROLLBAR_DESC= Support for a NeXT-like scrollbar XTERM_SCROLLBAR_DESC= Support for an Xterm-like scrollbar BACKSPACE_KEY_DESC= Handling of the backspace key by rxvt DELETE_KEY_DESC= Handling of the delete key by rxvt MOUSEWHEEL_DESC= Support for scrolling via mouse wheel SMART_RESIZE_DESC= Smart growth/shrink behaviour IMLOCALE_FIX_DESC= imlocale encoding conversion fix GDK_PIXBUF_DESC= Use gdk-pixbuf for background images NOTIFY_DESC= Freedesktop startup notification support 256_COLOR_DESC= Support for 256 colors OPTIONS_DEFAULT=PERL XIM UNICODE3 ISO14755 COMBINING RXVT_SCROLLBAR \ NEXT_SCROLLBAR XTERM_SCROLLBAR BACKSPACE_KEY DELETE_KEY \ MOUSEWHEEL SMART_RESIZE IMLOCALE_FIX GDK_PIXBUF \ 256_COLOR PORTDOCS1= Changes README.FAQ README.configure PORTDOCS= README.xvt ${PORTDOCS1} .include .if ${PORT_OPTIONS:MIMLOCALE_FIX} PATCH_DEPENDS+= p5-Encode-HanExtra>=0:${PORTSDIR}/chinese/p5-Encode-HanExtra \ p5-Encode-JIS2K>=0:${PORTSDIR}/converters/p5-Encode-JIS2K .endif # disable the embedded perl interpreter .if !${PORT_OPTIONS:MPERL} CONFIGURE_ARGS+= --disable-perl USES+= perl5 USE_PERL5= build PLIST_SUB= PERL="@comment " .else USES+= perl5 PLIST_SUB= PERL="" .endif # disable XIM (X Input Method) protocol support .if !${PORT_OPTIONS:MXIM} CONFIGURE_ARGS+= --disable-xim .endif # disable support for Unicode codepoints above 65535 .if !${PORT_OPTIONS:MUNICODE3} CONFIGURE_ARGS+= --disable-unicode3 .endif # disable support for extended ISO 14755 modes .if !${PORT_OPTIONS:MISO14755} CONFIGURE_ARGS+= --disable-iso14755 .endif # disable automatic composition of combining characters # into composite characters .if !${PORT_OPTIONS:MCOMBINING} CONFIGURE_ARGS+= --disable-combining .endif # disable support for the original rxvt scrollbar .if !${PORT_OPTIONS:MRXVT_SCROLLBAR} CONFIGURE_ARGS+= --disable-rxvt-scroll .endif # disable support for a NeXT-like scrollbar .if !${PORT_OPTIONS:MNEXT_SCROLLBAR} CONFIGURE_ARGS+= --disable-next-scroll .endif # disable support for an Xterm-like scrollbar .if !${PORT_OPTIONS:MXTERM_SCROLLBAR} CONFIGURE_ARGS+= --disable-xterm-scroll .endif # disable any handling of the backspace key by rxvt # let the X server do it .if !${PORT_OPTIONS:MBACKSPACE_KEY} CONFIGURE_ARGS+= --disable-backspace-key .endif # disable any handling of the delete key by rxvt .if !${PORT_OPTIONS:MDELETE_KEY} CONFIGURE_ARGS+= --disable-delete-key .endif # enable scrolling via mouse wheel or buttons 4 & 5 .if !${PORT_OPTIONS:MMOUSEWHEEL} CONFIGURE_ARGS+= --disable-mousewheel .endif # enable smart resize .if !${PORT_OPTIONS:MSMART_RESIZE} CONFIGURE_ARGS+= --disable-smart-resize .else CONFIGURE_ARGS+= --enable-smart-resize .endif # enable integration with gdk-pixbuf for background images .if !${PORT_OPTIONS:MGDK_PIXBUF} CONFIGURE_ARGS+= --disable-pixbuf .else USE_GNOME+= gdkpixbuf2 CONFIGURE_ARGS+= --enable-pixbuf .endif # enable startup notification .if !${PORT_OPTIONS:MNOTIFY} CONFIGURE_ARGS+= --disable-startup-notification .else CONFIGURE_ARGS+= --enable-startup-notification LIB_DEPENDS+= libstartup-notification-1.so:${PORTSDIR}/x11/startup-notification .endif # enable support for 256 colors .if ${PORT_OPTIONS:M256_COLOR} CONFIGURE_ARGS+= --enable-256-color .endif # compile in support for additional codeset groups .if ${PORT_OPTIONS:MENCODING} AVAIL_ENC= jp jp_ext kr zh zh_ext all . for ENC in ${AVAIL_ENC} . if (${WITH_ENCODING} == ${ENC}) _ENC= ${ENC} . endif . endfor . if !defined(_ENC) . error Invalid encoding for WITH_ENCODING . endif .else . if defined(PACKAGE_BUILDING) WITH_ENCODING= all . endif .endif .if ${PORT_OPTIONS:MENCODING} CONFIGURE_ARGS+= --with-codesets=${WITH_ENCODING} .endif # WITH_ENCODING pre-everything:: .ifndef(WITH_ENCODING) @${ECHO_MSG} "==> You can compile in support for additional codeset groups by setting the WITH_ENCODING variable" @${ECHO_MSG} '==> Options are: "jp" common japanese encodings;' @${ECHO_MSG} ' "jp_ext" rarely used but big japanese encodings;' @${ECHO_MSG} ' "kr" korean encodings;' @${ECHO_MSG} ' "zh" common chinese encodings;' @${ECHO_MSG} ' "zh_ext" rarely used but very big chinese encodigs;' @${ECHO_MSG} ' "all" all of the above;' @${ECHO_MSG} '==> For example, "WITH_ENCODING=kr" for korean encodings.' @${ECHO_MSG} .endif .if ${PORT_OPTIONS:MIMLOCALE_FIX} post-patch: ${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-imlocale cd ${WRKSRC}/src && ./gentables .endif pre-configure: ${RM} ${WRKSRC}/src/perl/kuake.orig post-build: .if ${PORT_OPTIONS:MDOCS} ${CP} ${PORTDOCS1:S|^|${WRKSRC}/|} ${WRKSRC}/doc .endif post-install: ${CHMOD} 4711 ${STAGEDIR}${PREFIX}/bin/urxvt \ ${STAGEDIR}${PREFIX}/bin/urxvtd ${INSTALL_DATA} ${WRKSRC}/doc/etc/rxvt-unicode.terminfo \ ${STAGEDIR}${PREFIX}/share/misc/ .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/doc/|} ${STAGEDIR}${DOCSDIR} @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif .include s-gnome/log/?h=gnome-3.24&id=5d0ef9915902d5af272c2f3081c269d586ec17cc'>root/net-im
Commit message (Expand)AuthorAgeFilesLines
* Unbreak build on FreeBSD 9.x amd64.mandree2016-11-111-3/+7
* - Add LICENSEamdmi32016-11-101-3/+8
* Mark as broken on aarch64: fails to link with sbrk.linimon2016-11-101-0/+2
* Maintainer update to new 1.1.4 release.mandree2016-11-102-6/+6
* Remove NVIDIA option from Linux ports now that the nvidia-driver can betijl2016-11-043-30/+11
* net-im/openfire: better RUN_DEPENDS line (no actual change in dependencies)gahr2016-11-031-1/+1
* net-im/sayaka: update to 3.2.2jbeich2016-11-024-62/+33
* net-im/openfire: update to 4.0.3, switch to OPTIONS helpersgahr2016-10-312-25/+21
* Fix build for 9.x i386jhale2016-10-311-3/+8
* net-im/freetalk: update to version 4.1jrm2016-10-263-38/+32
* - Update to 0.2.7kmoore2016-10-262-4/+4
* Set NO_ARCH.olgeni2016-10-261-0/+1
* Update net-im/py-python-telegram-bot to version 5.2.0.olgeni2016-10-262-4/+5
* - Mark BROKEN on 9.x i386:amdmi32016-10-251-0/+2
* Use USES=pathfix where applicable.mat2016-10-213-6/+0
* ${RM} already has -f.mat2016-10-214-5/+5
* - Mark broken on 9.x amd64:amdmi32016-10-211-0/+2
* net-im/oysttyer: 2.8.0 -> 2.8.1pi2016-10-212-4/+4
* Reassign makc's ports back to the pool.rakuco2016-10-202-2/+2
* Take over maintainership.olgeni2016-10-201-1/+1
* Add Linux CentOS 7 infrastructure ports.tijl2016-10-191-1/+1
* Introduce new extensible virtual categories for KDEtcberner2016-10-191-3/+1
* net-im/pidgin-skypeweb: update 1.2.1 -> 1.2.2robak2016-10-182-4/+4
* Update net-im/py-python-telegram-bot to version 5.1.1.olgeni2016-10-112-4/+4
* - Update to 16.09ashish2016-10-114-92/+77
* Update to version 1.5.2pawel2016-10-112-5/+4
* net-im/oysttyer: 2.7.2 -> 2.8.0pi2016-10-102-4/+4
* devel/nspr, security/nss: drop version from SONAMEjbeich2016-10-093-1/+3
* - Update to 1.3.3cpm2016-10-093-41/+43
* - Update corebird to 1.3.2cpm2016-10-052-4/+4
* net-im/telepathy-qt[45]: Fixup DOCSDIR, sipmlify -qt5tcberner2016-10-052-3/+3
* Make net-im/telepathy-qt5 a slaveport of net-im/telepathy-qt4tcberner2016-10-056-938/+459
* net-im/gajim: update to 0.16.6rm2016-10-045-44/+5
* graphics/opencv: add suffix to make room for 3.x seriesjbeich2016-10-041-3/+3
* - Relocate to githubehaupt2016-10-033-7/+11
* - Update to 1.0.3amdmi32016-10-012-3/+4
* multimedia/libvpx: update 1.6.0jbeich2016-09-304-1/+4
* Update to 0.5.0arved2016-09-293-20/+24
* Update to 0.9.1arved2016-09-294-317/+4
* Fix tox-bootstrapd.thierry2016-09-282-1/+2
* - Update devel/doxygen to 1.8.12antoine2016-09-282-3/+3
* Upgrade to 0.7.1.thierry2016-09-254-8/+17
* Refresh.thierry2016-09-252-5/+5
* Update net-im/py-python-telegram-bot to version 5.1.0.olgeni2016-09-252-4/+4
* net-im/farsight2: limit to python 2.xrm2016-09-241-1/+1
* Update net-im/py-fbmq to version 2.0.1.olgeni2016-09-212-4/+4
* Also mark as broken on sparc64. While here, pet portlint.linimon2016-09-201-2/+3
* - Update corebird to 1.3.1 releasecpm2016-09-162-11/+11
* GOOGLE_CODE has gone away.mat2016-09-149-0/+17
* net-im/prosody: Document SSL requirement and rework port makefilemarino2016-09-121-15/+21
* - Mark BROKEN:amdmi32016-09-121-0/+2
* net-im/libyahoo2: document and configure SSL build dependencymarino2016-09-111-1/+4
* net-im/imspector: configure SSL properly and honor LDFLAGSmarino2016-09-111-3/+4
* - Update to 1.21.1amdmi32016-09-103-14/+21
* net-im/py-nbxmpp: update to 0.5.4rm2016-09-082-5/+5
* - Update to 16.08ashish2016-09-076-149/+143
* - In Uses/linux.mk use the loop variable directly when appending totijl2016-09-076-4/+6
* - Update to 0.9.8.20160729amdmi32016-09-062-4/+5
* - Replace Mk/bsd.linux-apps.mk and Mk/bsd.linux-rpm.mk withtijl2016-09-066-34/+29
* Update net-im/py-fbmq to version 2.0.0.olgeni2016-09-052-4/+4
* Explicitly disable C++11 during the build.rakuco2016-09-051-0/+6
* - Update net-im/gloox to 1.0.17madpilot2016-09-044-7/+7
* Explicitly disable C++11 during the build.rakuco2016-09-031-0/+6
* There is no more net-im/venom port. Fix outdated package description.thierry2016-09-011-1/+1
* Add net-im/py-fbmq, a Python library for using the Facebook Messenger API.olgeni2016-08-294-0/+27
* Update to 9.1kevlo2016-08-282-4/+4
* Update net-im/jabberd to 2.4.0mm2016-08-2812-30/+53
* Replace Mk/bsd.kde4.mk by Mk/Uses/kde.mk in preparation for KDE Frameworks andtcberner2016-08-2419-58/+58
* Update to version 1.2.1pawel2016-08-162-5/+4
* Update to version 1.5.1pawel2016-08-158-35/+52
* Update to 1.3.0kevlo2016-08-117-34/+58
* - Strip binaryehaupt2016-08-081-3/+7
* Strip libraryehaupt2016-08-081-1/+3
* USE_BDB cleanup.mat2016-08-081-3/+2
* - Update to version 1.0.16pawel2016-08-063-5/+6
* Import py-telepot 8.3kevlo2016-08-054-0/+27
* - Update to 20160717cs2016-08-044-29/+8
* Don't use extension.ini any more, and have each extension install in itsmat2016-08-031-0/+1
* - Update corebird to 1.3 releasecpm2016-08-037-44/+27
* - Update to 3.4.2tota2016-08-032-6/+6
* - Add LICENSE_FILEcpm2016-08-011-4/+2
* Update to version 0.9.7pawel2016-07-317-31/+18
* Add missing dependency on graphics/webp.kevlo2016-07-271-2/+3
* Reset miwi@'s ports, he stepped down from the Ports Team.rene2016-07-261-1/+1
* New port: python-telegram-bot.demon2016-07-264-0/+40
* Add missing dependency.kevlo2016-07-251-0/+2
* Fix packaging with pkgconf 1.0antoine2016-07-251-7/+1
* Take maintainership.kevlo2016-07-221-1/+1
* - Add extra patch in files/ missed by previous commitkmoore2016-07-221-0/+8
* - Update to 1.2.6kmoore2016-07-224-20/+57
* Update to version 1.2pawel2016-07-212-9/+8
* Cleanup $() variables in ports Makefiles.mat2016-07-201-1/+1
* - Pass maintainershipt to portmaster@BSDforge.comamdmi32016-07-191-1/+1
* New port: net-im/telepathy-qt5.rakuco2016-07-185-0/+501
* Update net-im/telepathy-qt4 to 0.9.7tcberner2016-07-176-125/+11
* Adjust dependencies to fix `make stage-qa'.rakuco2016-07-161-2/+3
* security/libsodium: Upgrade version 1.0.8 => 1.0.10marino2016-07-133-1/+3
* net-im/oysttyer: 2.7.0 -> 2.7.2pi2016-07-092-4/+4
* Remove expired ports without open PRs:rene2016-07-0531-563/+0
* - Update to 0.2.6kmoore2016-07-022-4/+4
* Convert USE_PHP*=yes into USES=php*mat2016-06-281-4/+1
* - Convert to new options dependency helpersunpoet2016-06-271-9/+3
* - Update to 3.4.1tota2016-06-263-38/+34
* Diligent is unofficial cross-platform desktop client for Slack.kmoore2016-06-255-0/+56
* - Add LICENSEamdmi32016-06-242-13/+12
* Update to 2.11.0. Seemarcus2016-06-234-33/+9
* Rename all three p5-ReadLine-(Gnu,Perl,TTYtter) to their real namesmat2016-06-211-2/+2
* With the power of USES=dos2unix, get rid of most patches and filesmat2016-06-212-19/+18
* - Update to 16.04ashish2016-06-195-120/+204
* Fix build with libc++ 3.8.0.madpilot2016-06-193-1/+19
* Fix usage of WITH_OPENSSL_BASE, WITH_OPENSSL_PORT and OPENSSL_PORT.mat2016-06-162-3/+5
* Change MAINTAINER from xmj@FreeBSD.org to johannes@perceivon.nettz2016-06-151-1/+1
* net-im/telepathy-sofiasip: update MAINTAINER to his new addresspi2016-06-141-1/+1
* Deprecate ports broken for more than 6 monthsantoine2016-06-044-0/+8
* Github cleanup.mat2016-06-012-3/+3
* Update to 20160530 v0.9.5.thierry2016-06-013-9/+14
* New port: net-im/ring-gnomepi2016-05-307-0/+135
* New port: net-im/ring-libclientpi2016-05-2911-0/+266
* New port: net-im/ring-daemonpi2016-05-2921-0/+555
* devel/smokeqt, games/katomic, multimedia/gstreamer1-qt4, net-im/kopete-kde4,pi2016-05-281-1/+2
* Add USE_KDE4 so that KDE4_VERSION is definedswills2016-05-271-0/+1
* net-im/oysttyer: 2.6.3 -> 2.7.0pi2016-05-262-3/+4
* net-im/ktp-accounts-kcm: Fix plist, use other substpi2016-05-261-1/+1
* Remove expired misc/kdehier4 and update all of its consumers to not reference...rene2016-05-2615-15/+14
* Several ports: Change MAINTAINER from xmj@chaot.net to xmj@FreeBSD.orgpi2016-05-261-1/+1
* Remove useless WRKSRC definitions.mat2016-05-252-2/+0
* Remove NLS, DOCS, EXAMPLES and IPV6 from OPTIONS_DEFAULT, they are enabled by...amdmi32016-05-24