From owner-svn-ports-head@freebsd.org Mon Mar 15 16:55:59 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E6BC35A8CA6; Mon, 15 Mar 2021 16:55:59 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DzjH36CbSz3MJ9; Mon, 15 Mar 2021 16:55:59 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C800813EC9; Mon, 15 Mar 2021 16:55:59 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12FGtxt6013259; Mon, 15 Mar 2021 16:55:59 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12FGtxGh013257; Mon, 15 Mar 2021 16:55:59 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <202103151655.12FGtxGh013257@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Mon, 15 Mar 2021 16:55:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568473 - head/x11/rxvt-unicode X-SVN-Group: ports-head X-SVN-Commit-Author: bapt X-SVN-Commit-Paths: head/x11/rxvt-unicode X-SVN-Commit-Revision: 568473 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Mar 2021 16:56:00 -0000 Author: bapt Date: Mon Mar 15 16:55:59 2021 New Revision: 568473 URL: https://svnweb.freebsd.org/changeset/ports/568473 Log: rxvt-unicode: The terminfo definition is not needed anymore: in all freebsd version supported: termcap do have a definition of rxvt-unicode ncurses itself in it database also provides the terminfo definition for rxvt-unicode Reviewed by: thierry Approved by: thierry Differential Revision: https://reviews.freebsd.org/D28993 Modified: head/x11/rxvt-unicode/Makefile head/x11/rxvt-unicode/pkg-plist Modified: head/x11/rxvt-unicode/Makefile ============================================================================== --- head/x11/rxvt-unicode/Makefile Mon Mar 15 16:55:25 2021 (r568472) +++ head/x11/rxvt-unicode/Makefile Mon Mar 15 16:55:59 2021 (r568473) @@ -3,7 +3,7 @@ PORTNAME= rxvt-unicode PORTVERSION= 9.22 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11 MASTER_SITES= http://dist.schmorp.de/rxvt-unicode/%SUBDIR%/ MASTER_SITE_SUBDIR= . Attic @@ -17,16 +17,13 @@ BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/fontconf LIB_DEPENDS= libfreetype.so:print/freetype2 RUN_DEPENDS= ${LOCALBASE}/bin/fc-cache:x11-fonts/fontconfig -USES= cpe perl5 pkgconfig shebangfix tar:bzip2 terminfo xorg +USES= cpe perl5 pkgconfig shebangfix tar:bzip2 xorg USE_XORG= x11 xft xmu xpm xrender xt GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -lutil CONFIGURE_ENV= TIC=${LOCALBASE}/bin/tic CONFIGURE_ARGS= --enable-everything --with-term=rxvt -.if !exists(/usr/bin/tic) -CONFIGURE_ARGS+= --with-terminfo=${LOCALBASE}/share/misc/terminfo.db -.endif CPE_VENDOR= marc_lehmann OPTIONS_DEFINE= PERL XIM UNICODE3 ISO14755 COMBINING RXVT_SCROLLBAR \ @@ -160,17 +157,11 @@ post-patch-IMLOCALE_FIX-on: cd ${WRKSRC}/src && ./gentables pre-configure: -.if exists(/usr/bin/tic) ${REINPLACE_CMD} -e "/rxvt-unicode.terminfo/d" ${WRKSRC}/doc/Makefile.in -.endif ${RM} ${WRKSRC}/src/perl/kuake.orig post-build-DOCS-on: ${CP} ${PORTDOCS1:S|^|${WRKSRC}/|} ${WRKSRC}/doc - -post-install: - ${INSTALL_DATA} ${WRKSRC}/doc/etc/rxvt-unicode.terminfo \ - ${STAGEDIR}${PREFIX}/share/misc/ post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/x11/rxvt-unicode/pkg-plist ============================================================================== --- head/x11/rxvt-unicode/pkg-plist Mon Mar 15 16:55:25 2021 (r568472) +++ head/x11/rxvt-unicode/pkg-plist Mon Mar 15 16:55:59 2021 (r568473) @@ -57,4 +57,3 @@ man/man1/urxvtcd.1.gz man/man1/urxvtd.1.gz %%PERL%%man/man3/urxvtperl.3.gz man/man7/urxvt.7.gz -share/misc/rxvt-unicode.terminfo