Date: Fri, 11 Apr 2014 01:01:56 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r350869 - in head/irc/ircII: . files Message-ID: <201404110101.s3B11uq5038723@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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/:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404110101.s3B11uq5038723>