From owner-svn-ports-head@FreeBSD.ORG Fri Apr 11 01:01:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5B887101; Fri, 11 Apr 2014 01:01:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B9D71A62; Fri, 11 Apr 2014 01:01:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3B11vEn038730; Fri, 11 Apr 2014 01:01:57 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3B11uq5038723; Fri, 11 Apr 2014 01:01:56 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201404110101.s3B11uq5038723@svn.freebsd.org> From: Bryan Drewery Date: Fri, 11 Apr 2014 01:01:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r350869 - in head/irc/ircII: . files X-SVN-Group: ports-head 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.17 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: Fri, 11 Apr 2014 01:01:57 -0000 Author: bdrewery Date: Fri Apr 11 01:01:55 2014 New Revision: 350869 URL: http://svnweb.freebsd.org/changeset/ports/350869 QAT: https://qat.redports.org/buildarchive/r350869/ Log: - Stage - Convert to USES=tar - Convert tab to space in WWW - Add LICENSE Added: head/irc/ircII/files/patch-Makefile.in (contents, props changed) head/irc/ircII/files/patch-configure.in (contents, props changed) Modified: head/irc/ircII/Makefile head/irc/ircII/pkg-descr head/irc/ircII/pkg-plist Modified: head/irc/ircII/Makefile ============================================================================== --- head/irc/ircII/Makefile Fri Apr 11 01:01:37 2014 (r350868) +++ head/irc/ircII/Makefile Fri Apr 11 01:01:55 2014 (r350869) @@ -9,14 +9,14 @@ MASTER_SITES= http://ircii.warped.com/ MAINTAINER= sylvio@FreeBSD.org COMMENT= The 'Internet Relay Chat' and 'Internet Citizens Band' Client +LICENSE= BSD3CLAUSE + GNU_CONFIGURE= yes CONFIGURE_ENV= IRCLIB=${PREFIX}/share/irc +USE_AUTOTOOLS= autoconf213 autoheader213 -USE_BZIP2= yes - -MAN1= irc.1 ircII.1 ircbug.1 +USES= tar:bzip2 PLIST_SUB= VERSION="${PORTVERSION}" -NO_STAGE= yes .include Added: head/irc/ircII/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/ircII/files/patch-Makefile.in Fri Apr 11 01:01:55 2014 (r350869) @@ -0,0 +1,57 @@ +--- ./Makefile.in.orig 2014-04-10 10:51:26.400763791 -0500 ++++ ./Makefile.in 2014-04-10 10:53:08.187756816 -0500 +@@ -164,15 +164,15 @@ + ( \ + cd $(topdir)/script; \ + for i in *; do \ +- if test "$$i" = "local" -a -f $(INSTALL_SCRIPT)/local; then \ ++ if test "$$i" = "local" -a -f $(DESTDIR)$(INSTALL_SCRIPT)/local; then \ + if test -f local; then \ +- $(INSTALL_DATA) local $(INSTALL_SCRIPT)/local.orig; \ ++ $(INSTALL_DATA) local $(DESTDIR)$(INSTALL_SCRIPT)/local.orig; \ + fi; \ + elif test "$$i" != "CVS" -a "$$i" != ".CVS"; then \ +- $(INSTALL_DATA) $$i $(INSTALL_SCRIPT); \ ++ $(INSTALL_DATA) $$i $(DESTDIR)$(INSTALL_SCRIPT); \ + fi; \ + done; \ +- chmod -x $(INSTALL_SCRIPT)/* \ ++ chmod -x $(DESTDIR)$(INSTALL_SCRIPT)/* \ + ) + + installtranslation: installdirs +@@ -180,10 +180,10 @@ + cd $(topdir)/translation; \ + for i in *; do \ + if test "$$i" != "CVS" -a "$$i" != ".CVS"; then \ +- $(INSTALL_DATA) $$i $(TRANS_PATH); \ ++ $(INSTALL_DATA) $$i $(DESTDIR)$(TRANS_PATH); \ + fi; \ + done; \ +- chmod -x $(TRANS_PATH)/* \ ++ chmod -x $(DESTDIR)$(TRANS_PATH)/* \ + ) + + installserv: installio +@@ -198,8 +198,8 @@ + + installhelp: + $(INSTALL_HELP_CMD) +- find $(HELP_DIR) -type d -print | xargs chmod a+rx +- find $(HELP_DIR) -type f -print | xargs chmod a+r ++ find $(DESTDIR)$(HELP_DIR) -type d -print | xargs chmod a+rx ++ find $(DESTDIR)$(HELP_DIR) -type f -print | xargs chmod a+r + + installman: + (cd $(topdir)/doc; for i in ircII.1 ircbug.1; do $(INSTALL_DATA) $$i $(mandir); done) +@@ -209,8 +209,8 @@ + # $(INSTALL_DATA) $(topdir)/doc/query-pr.1 $(mandir) + + installdirs: +- umask 022; $(topdir)/mkinstalldirs $(IRCLIB) $(bindir) $(mandir) \ +- $(TRANS_PATH) $(INSTALL_SCRIPT) $(HELP_DIR) $(libexecdir) ++ umask 022; $(topdir)/mkinstalldirs $(DESTDIR)$(IRCLIB) $(bindir) $(mandir) \ ++ $(DESTDIR)$(TRANS_PATH) $(DESTDIR)$(INSTALL_SCRIPT) $(DESTDIR)$(HELP_DIR) $(libexecdir) + + clena clean: + cd $(objdir) && $(RM) $(PROGRAMS) $(OBJECTS) \ Added: head/irc/ircII/files/patch-configure.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/ircII/files/patch-configure.in Fri Apr 11 01:01:55 2014 (r350869) @@ -0,0 +1,21 @@ +--- ./configure.in.orig 2014-04-10 10:50:59.524766021 -0500 ++++ ./configure.in 2014-04-10 10:51:21.359765624 -0500 +@@ -882,15 +882,15 @@ + fi + if test "x$COPY_DIRECTORY" = "xpax"; + then +- INSTALL_HELP_CMD='cd $(topdir)/help; pax -r -w -s ";.*/CVS$$;;" -s ";.*/\.CVS$$;;" -s ";.*/CVS/.*;;" -s ";.*/\.CVS/.*;;" . $(HELP_DIR)' ++ INSTALL_HELP_CMD='cd $(topdir)/help; pax -r -w -s ";.*/CVS$$;;" -s ";.*/\.CVS$$;;" -s ";.*/CVS/.*;;" -s ";.*/\.CVS/.*;;" . $(DESTDIR)$(HELP_DIR)' + else + if test "x$COPY_DIRECTORY" = "xtar"; + then +- INSTALL_HELP_CMD='cd $(topdir)/help; tar -cf - . | ( cd $(HELP_DIR); tar -xf - )' ++ INSTALL_HELP_CMD='cd $(topdir)/help; tar -cf - . | ( cd $(DESTDIR)$(HELP_DIR); tar -xf - )' + else + if test "x$COPY_DIRECTORY" = "xcpio"; + then +- INSTALL_HELP_CMD='cd $(topdir)/help; find . -print | cpio -pdu $(HELP_DIR)' ++ INSTALL_HELP_CMD='cd $(topdir)/help; find . -print | cpio -pdu $(DESTDIR)$(HELP_DIR)' + else + INSTALL_HELP_CMD="@echo \"I couldn't figure out a way to install the help files.\"" + fi Modified: head/irc/ircII/pkg-descr ============================================================================== --- head/irc/ircII/pkg-descr Fri Apr 11 01:01:37 2014 (r350868) +++ head/irc/ircII/pkg-descr Fri Apr 11 01:01:55 2014 (r350869) @@ -2,4 +2,4 @@ The ircII program is a full screen, term Chat. It gives full access to all of the normal IRC functions, plus a variety of additional options. -WWW: http://www.eterna.com.au/ircii/ +WWW: http://www.eterna.com.au/ircii/ Modified: head/irc/ircII/pkg-plist ============================================================================== --- head/irc/ircII/pkg-plist Fri Apr 11 01:01:37 2014 (r350868) +++ head/irc/ircII/pkg-plist Fri Apr 11 01:01:55 2014 (r350869) @@ -4,6 +4,9 @@ bin/ircbug bin/ircflush libexec/ircio libexec/wserv +man/man1/irc.1.gz +man/man1/ircII.1.gz +man/man1/ircbug.1.gz share/irc/help/! share/irc/help/.date share/irc/help/: