From owner-svn-ports-all@FreeBSD.ORG Sun Mar 30 18:01:42 2014 Return-Path: Delivered-To: svn-ports-all@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 C4539B43; Sun, 30 Mar 2014 18:01:42 +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 99906959; Sun, 30 Mar 2014 18:01:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2UI1gwi003310; Sun, 30 Mar 2014 18:01:42 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2UI1g47003308; Sun, 30 Mar 2014 18:01:42 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201403301801.s2UI1g47003308@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 30 Mar 2014 18:01:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r349660 - head/devel/otrs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2014 18:01:42 -0000 Author: sunpoet Date: Sun Mar 30 18:01:41 2014 New Revision: 349660 URL: http://svnweb.freebsd.org/changeset/ports/349660 QAT: https://qat.redports.org/buildarchive/r349660/ Log: - Fix *_DEPENDS: - Add missing dependencies, including security/p5-Net-SSLGlue - Drop unused dependencies - Fix installation issues - Bump PORTREVISION for dependency and package change PR: ports/187736 Submitted by: Ryder Dain Approved by: Mikhail Tsatsenko (maintainer) Modified: head/devel/otrs/Makefile head/devel/otrs/pkg-plist Modified: head/devel/otrs/Makefile ============================================================================== --- head/devel/otrs/Makefile Sun Mar 30 18:01:37 2014 (r349659) +++ head/devel/otrs/Makefile Sun Mar 30 18:01:41 2014 (r349660) @@ -3,6 +3,7 @@ PORTNAME= otrs PORTVERSION= 3.3.5 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://ftp.otrs.org/pub/otrs/ \ ftp://ftp.samurai.com/pub/otrs/ \ @@ -34,7 +35,13 @@ BUILD_DEPENDS= p5-DBI>=0:${PORTSDIR}/dat p5-Date-Pcalc>=0:${PORTSDIR}/devel/p5-Date-Pcalc \ p5-Text-CSV>=0:${PORTSDIR}/textproc/p5-Text-CSV \ p5-XML-FeedPP>=0:${PORTSDIR}/textproc/p5-XML-FeedPP \ - p5-YAML-LibYAML>=0:${PORTSDIR}/textproc/p5-YAML-LibYAML + p5-YAML-LibYAML>=0:${PORTSDIR}/textproc/p5-YAML-LibYAML \ + p5-JavaScript-Minifier>=0:${PORTSDIR}/textproc/p5-JavaScript-Minifier \ + p5-CSS-Minifier>=0:${PORTSDIR}/textproc/p5-CSS-Minifier \ + p5-SOAP-Lite>=0:${PORTSDIR}/net/p5-SOAP-Lite \ + p5-Class-Inspector>=0:${PORTSDIR}/devel/p5-Class-Inspector \ + p5-Mozilla-CA>=0:${PORTSDIR}/www/p5-Mozilla-CA + RUN_DEPENDS:= ${BUILD_DEPENDS} USES= shebangfix perl5 @@ -61,7 +68,7 @@ GROUPS= ${USERS} www SUB_FILES= pkg-install pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message -ROOT_DIRS_LIST= Kernel bin scripts +ROOT_DIRS_LIST= Kernel bin scripts doc BIN_DIRS_LIST= "" cgi-bin fcgi-bin PM_DIRS_LIST= Kernel Kernel/Config Kernel/Config/Files Kernel/Language \ Modules Kernel/Output/HTML Kernel/Output/HTML/Lite \ @@ -72,6 +79,7 @@ DOCS_DIRS_LIST= "" manual/en DOCS_FILES_LIST= C[A-Z]* INSTALL.md RE* UPGRADING.md SCRIPTS_DIRS_LIST= "" database/update test tools +CRON_SCRIPTS= ${OTRSDIR}/var/cron/ CLEAN_FILES= scripts/suse* scripts/redhat* \ var/httpd/htdocs/js/thirdparty/ckeditor-4.0/_source \ var/httpd/htdocs/skins/Agent/*/img/source @@ -103,18 +111,17 @@ RUN_DEPENDS+= p5-GD>=0:${PORTSDIR}/graph .endif .if ${PORT_OPTIONS:MSMTP} -RUN_DEPENDS+= p5-Net-SMTP-SSL>=0:${PORTSDIR}/mail/p5-Net-SMTP-SSL \ - p5-Net-SMTP-TLS>=0:${PORTSDIR}/mail/p5-Net-SMTP-TLS \ - p5-Authen-SASL>=0:${PORTSDIR}/security/p5-Authen-SASL +RUN_DEPENDS+= p5-Authen-SASL>=0:${PORTSDIR}/security/p5-Authen-SASL \ + p5-Net-SSLGlue>=0:${PORTSDIR}/security/p5-Net-SSLGlue .endif .if ${PORT_OPTIONS:MPOP3} -RUN_DEPENDS+= p5-Mail-POP3Client>=0:${PORTSDIR}/mail/p5-Mail-POP3Client \ - p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL +RUN_DEPENDS+= p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL \ + p5-Net-SSLGlue>=0:${PORTSDIR}/security/p5-Net-SSLGlue .endif .if ${PORT_OPTIONS:MIMAP} -RUN_DEPENDS+= p5-Net-IMAP-Simple-SSL>=0:${PORTSDIR}/mail/p5-Net-IMAP-Simple-SSL +RUN_DEPENDS+= p5-Mail-IMAPClient>=0:${PORTSDIR}/mail/p5-Mail-IMAPClient .endif .if ${PORT_OPTIONS:MLDAP} @@ -171,6 +178,7 @@ do-install: ${SCRIPTS_DIRS_LIST:S!^!${OTRSDIR}/scripts/!} @${INSTALL_DATA} ${WRKSRC}/.*.dist ${OTRSDIR}/ @${INSTALL_DATA} ${WRKSRC}/RELEASE ${OTRSDIR}/ + @${INSTALL_DATA} ${WRKSRC}/ARCHIVE ${OTRSDIR}/ .for D in ${BIN_DIRS_LIST} @${INSTALL_SCRIPT} ${WRKSRC}/bin/${D}/*.* ${OTRSDIR}/bin/${D}/ .endfor @@ -197,6 +205,7 @@ do-install: @${INSTALL_DATA} ${WRKSRC}/doc/${D}/*.* ${DOCSDIR}/${D}/ .endfor .endif + @${FIND} ${CRON_SCRIPTS} -type f -name *.dist | ${SED} -e "p;s/\.dist//" | ${XARGS} -n2 ${MV} @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL post-install: Modified: head/devel/otrs/pkg-plist ============================================================================== --- head/devel/otrs/pkg-plist Sun Mar 30 18:01:37 2014 (r349659) +++ head/devel/otrs/pkg-plist Sun Mar 30 18:01:41 2014 (r349660) @@ -764,6 +764,7 @@ otrs/Kernel/System/Web/UploadCache/FS.pm otrs/Kernel/System/WebUserAgent.pm otrs/Kernel/System/XML.pm otrs/Kernel/System/YAML.pm +otrs/ARCHIVE otrs/RELEASE otrs/bin/Cron.sh otrs/bin/cgi-bin/app.psgi @@ -951,18 +952,18 @@ otrs/scripts/tools/md5sum.pl otrs/scripts/tools/sync-ldap2db.pl otrs/scripts/tools/xml2html.pl otrs/scripts/webform.pl -otrs/var/cron/aaa_base.dist -otrs/var/cron/cache.dist -otrs/var/cron/fetchmail.dist -otrs/var/cron/generate_dashboard_stats.dist -otrs/var/cron/generic_agent-database.dist -otrs/var/cron/generic_agent.dist -otrs/var/cron/pending_jobs.dist -otrs/var/cron/postmaster.dist -otrs/var/cron/postmaster_mailbox.dist -otrs/var/cron/rebuild_ticket_index.dist -otrs/var/cron/session.dist -otrs/var/cron/unlock.dist +otrs/var/cron/aaa_base +otrs/var/cron/cache +otrs/var/cron/fetchmail +otrs/var/cron/generate_dashboard_stats +otrs/var/cron/generic_agent-database +otrs/var/cron/generic_agent +otrs/var/cron/pending_jobs +otrs/var/cron/postmaster +otrs/var/cron/postmaster_mailbox +otrs/var/cron/rebuild_ticket_index +otrs/var/cron/session +otrs/var/cron/unlock otrs/var/fonts/DejaVuSans-Bold.ttf otrs/var/fonts/DejaVuSans-BoldOblique.ttf otrs/var/fonts/DejaVuSans-Oblique.ttf @@ -2472,6 +2473,7 @@ otrs/var/stats/Stats.TicketOverview.en.x @dirrm otrs/bin/fcgi-bin @dirrm otrs/bin/cgi-bin @dirrm otrs/bin +@dirrm otrs/doc @dirrm otrs/Kernel/System/Web/UploadCache @dirrm otrs/Kernel/System/Web @dirrm otrs/Kernel/System/VirtualFS