Bug 170807 - [PATCH] www/axis2: fix EXAMPLES ports option
Summary: [PATCH] www/axis2: fix EXAMPLES ports option
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Jason Helfman
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-08-20 23:30 UTC by Artis Caune
Modified: 2012-08-21 06:30 UTC (History)
0 users

See Also:


Attachments
file.diff (595 bytes, patch)
2012-08-20 23:30 UTC, Artis Caune
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Artis Caune 2012-08-20 23:30:12 UTC
There is a typo in Makefile for EXAMPLES ports option

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2012-08-20 23:31:07 UTC
Responsible Changed
From-To: freebsd-ports-bugs->jgh

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2012-08-21 06:21:18 UTC
Author: jgh
Date: Tue Aug 21 05:21:04 2012
New Revision: 302842
URL: http://svn.freebsd.org/changeset/ports/302842

Log:
  - fix examples installation, bump portrevision
  
  PR:	170807
  Submitted by:	Artis.Caune@gmail.com

Modified:
  head/www/axis2/Makefile   (contents, props changed)

Modified: head/www/axis2/Makefile
==============================================================================
--- head/www/axis2/Makefile	Tue Aug 21 05:18:53 2012	(r302841)
+++ head/www/axis2/Makefile	Tue Aug 21 05:21:04 2012	(r302842)
@@ -6,6 +6,7 @@
 
 PORTNAME=	axis2
 PORTVERSION=	1.6.2
+PORTREVISION=	1
 CATEGORIES=	www java
 MASTER_SITES=	APACHE
 MASTER_SITE_SUBDIR=	axis/${PORTNAME}/java/core/${PORTVERSION}/
@@ -80,7 +81,8 @@ do-install:
 		${ECHO_MSG} "	Preserving local configuration file: ${APPHOME}/webapps/${PORTNAME}/WEB-INF/web.xml"; \
 	fi;
 		${INSTALL_DATA} ${WRKSRC}/webapp/WEB-INF/web.xml.${CONF_EXT} ${APPHOME}/webapps/${PORTNAME}/WEB-INF
-.if $(PORT_OPTIONS:MEXAMPLES}
+.if ${PORT_OPTIONS:MEXAMPLES}
+	${MKDIR} ${EXAMPLESDIR}
 	cd ${WRKSRC}/samples && ${FIND} . -type d -exec ${MKDIR} ${EXAMPLESDIR}/{} \;
 	cd ${WRKSRC}/samples && ${FIND} . -type f -not -name '*.class' -exec ${INSTALL_DATA} {} ${EXAMPLESDIR}/{} \;
 .endif
_______________________________________________
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"
Comment 3 Jason Helfman freebsd_committer freebsd_triage 2012-08-21 06:21:29 UTC
State Changed
From-To: open->closed

Committed, with minor changes. Thanks!