Bug 182315 - [maintainer update] Unbreak ddd on FreeBSD 10
Summary: [maintainer update] Unbreak ddd on FreeBSD 10
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: Boris Samorodov
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-23 10:30 UTC by Sergio Mangialardi
Modified: 2013-09-23 20:50 UTC (History)
0 users

See Also:


Attachments
file.diff (944 bytes, patch)
2013-09-23 10:30 UTC, Sergio Mangialardi
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Sergio Mangialardi 2013-09-23 10:30:00 UTC
Apply a patch to unbreak the ddd compilation on FreeBSD 10 using clang as compiler.

Added files:

ddd/files/patch-ddd-VSLDefList.C

Fix: Patch attached with submission follows:
Comment 1 Boris Samorodov freebsd_committer freebsd_triage 2013-09-23 17:04:13 UTC
Responsible Changed
From-To: freebsd-ports-bugs->bsam

Take.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-09-23 20:40:17 UTC
Author: bsam
Date: Mon Sep 23 19:40:09 2013
New Revision: 328032
URL: http://svnweb.freebsd.org/changeset/ports/328032

Log:
  Fix build at 10.x.
  
  While here:
  . use stage phase;
  . use MKDIR macro instead of INSTALL -d one to create a directory;
  . unmute install command.
  
  PR:		ports/182315
  Submitted by:	Sergio Mangialardi <sergio@softshark.org> (maintainer)

Added:
  head/devel/ddd/files/patch-ddd-VSLDefList.C   (contents, props changed)
Modified:
  head/devel/ddd/Makefile
  head/devel/ddd/pkg-plist   (contents, props changed)

Modified: head/devel/ddd/Makefile
==============================================================================
--- head/devel/ddd/Makefile	Mon Sep 23 19:06:06 2013	(r328031)
+++ head/devel/ddd/Makefile	Mon Sep 23 19:40:09 2013	(r328032)
@@ -23,7 +23,6 @@ CONFIGURE_ARGS=	--with-motif-libraries="
 
 PLIST_SUB=	VERSION=${PORTVERSION}
 
-MAN1=		ddd.1
 DOCS=		AUTHORS INSTALL PROBLEMS README TIPS TODO \
 		doc/html/ddd.html doc/ddd-paper.ps \
 		doc/ddd-themes.pdf doc/ddd.pdf
@@ -39,7 +38,6 @@ LIBXMDIR!=	${ECHO_CMD} ${MOTIFLIB} | ${S
 LIBXMDIR=	${LOCALBASE}
 .endif
 
-NO_STAGE=	yes
 pre-patch:
 	@${RM} -fv ${WRKSRC}/ddd/ddd.info*
 	@${RM} -fv ${WRKSRC}/ddd/ddd-themes.info*
@@ -52,13 +50,11 @@ post-configure:
 	@${ECHO_CMD} "LIBXM = ${MOTIFLIB}" >> ${WRKSRC}/ddd/Makefile
 
 post-install:
-.if !defined(NOPORTDOCS)
-	@${INSTALL} -d -o ${DOCOWN} -g ${DOCGRP} ${DOCSDIR}
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 .for file in ${DOCS}
-	@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
 .endfor
-	@${GZIP_CMD} ${DOCSDIR}/*.ps
-.endif
+	${GZIP_CMD} ${STAGEDIR}${DOCSDIR}/*.ps
 
 check:
 	(cd ${WRKSRC} ; ${GMAKE} check)

Added: head/devel/ddd/files/patch-ddd-VSLDefList.C
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ddd/files/patch-ddd-VSLDefList.C	Mon Sep 23 19:40:09 2013	(r328032)
@@ -0,0 +1,11 @@
+--- ddd/VSLDefList.C.orig	2013-09-23 10:38:30.000000000 +0200
++++ ddd/VSLDefList.C	2013-09-23 10:39:12.000000000 +0200
+@@ -60,7 +60,7 @@
+     {
+ 	std::ostringstream s;
+ 	s << *arg;
+-	VSLLib::eval_error("no suiting definition for " + f_name() + s);
++	VSLLib::eval_error("no suiting definition for " + f_name() + s.str().c_str());
+     }
+ 
+     return d ? d->eval(arg) : 0;

Modified: head/devel/ddd/pkg-plist
==============================================================================
--- head/devel/ddd/pkg-plist	Mon Sep 23 19:06:06 2013	(r328031)
+++ head/devel/ddd/pkg-plist	Mon Sep 23 19:40:09 2013	(r328032)
@@ -1,4 +1,5 @@
 bin/ddd
+man/man1/ddd.1.gz
 share/applications/ddd.desktop
 share/ddd-%%VERSION%%/COPYING
 share/ddd-%%VERSION%%/NEWS
_______________________________________________
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 Boris Samorodov freebsd_committer freebsd_triage 2013-09-23 20:42:30 UTC
State Changed
From-To: open->closed

Committed along with some tiny changes, thanks!