Summary: | [patch] www/testlink missing dependency | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Sergey V. Dyatko <sergey.dyatko> | ||||
Component: | Individual Port(s) | Assignee: | TAKATSU Tomonari <tota> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | ||||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Sergey V. Dyatko
2013-01-21 11:50:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->tota Over to maintainer (via the GNATS Auto Assign Tool) Author: tota Date: Mon Jan 21 13:44:47 2013 New Revision: 310768 URL: http://svnweb.freebsd.org/changeset/ports/310768 Log: - Add missing dependency [1] - Bump PORTREVISION - Remove indefinite article from COMMENT - Replace NOPORTDOCS with PORT_OPTIONS:MDOCS - Replace NOPORTEXAMPLES with PORT_OPTIONS:MEXAMPLES PR: ports/175478 [1] Submitted by: Sergey V. Dyatko <sergey.dyatko@gmail.com> [1] Modified: head/www/testlink/Makefile Modified: head/www/testlink/Makefile ============================================================================== --- head/www/testlink/Makefile Mon Jan 21 12:19:29 2013 (r310767) +++ head/www/testlink/Makefile Mon Jan 21 13:44:47 2013 (r310768) @@ -2,16 +2,17 @@ PORTNAME= testlink PORTVERSION= 1.9.5 +PORTREVISION= 1 CATEGORIES= www devel MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME}/TestLink%201.9/TestLink%20${PORTVERSION} MAINTAINER= tota@FreeBSD.org -COMMENT= A web based test management and test execution system +COMMENT= Web based test management and test execution system LICENSE= GPLv2 -USE_PHP= gd iconv mbstring session +USE_PHP= gd iconv mbstring session xml WANT_PHP_WEB= yes NO_BUILD= yes PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} @@ -72,7 +73,7 @@ do-install: @cd ${WRKSRC} && ${COPYTREE_SHARE} third_party ${WWWDIR} @cd ${WRKSRC} && ${COPYTREE_SHARE} upload_area ${WWWDIR} @${INSTALL_DATA} ${WRKSRC}/*.php* ${WWWDIR} -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for f in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} @@ -80,7 +81,7 @@ do-install: @${TAR} ${EXCLUDE_EXAMPLES} -C ${WRKSRC}/docs -cf - . | ${TAR} --unlink -C ${DOCSDIR} -xf - @${LN} -s ${DOCSDIR} ${WWWDIR}/docs .endif -.if !defined(NOPORTEXAMPLES) +.if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${EXAMPLESDIR} .for f in ${EXAMPLES} @cd ${WRKSRC}/docs && ${COPYTREE_SHARE} ${f} ${EXAMPLESDIR} _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Committed. Thanks! |