From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 31 19:40:15 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.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 ESMTP id B439F3D0 for ; Thu, 31 Oct 2013 19:40:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 87B6F2C19 for ; Thu, 31 Oct 2013 19:40:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r9VJeF9e065517 for ; Thu, 31 Oct 2013 19:40:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r9VJeFCh065516; Thu, 31 Oct 2013 19:40:15 GMT (envelope-from gnats) Date: Thu, 31 Oct 2013 19:40:15 GMT Message-Id: <201310311940.r9VJeFCh065516@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: KATO Tsuguru Subject: Re: ports/181068: editors/asedit: Support CFLAGS properly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: KATO Tsuguru List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 19:40:15 -0000 The following reply was made to PR ports/181068; it has been noted by GNATS. From: KATO Tsuguru To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/181068: editors/asedit: Support CFLAGS properly Date: Fri, 1 Nov 2013 04:26:04 +0900 This is a multi-part message in MIME format. --Multipart=_Fri__1_Nov_2013_04_26_04_+0900_BdVcgFyq.o5gLlnm Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Remake of the patch against current tree. --Multipart=_Fri__1_Nov_2013_04_26_04_+0900_BdVcgFyq.o5gLlnm Content-Type: text/x-diff; name="editors_asedit.diff" Content-Disposition: attachment; filename="editors_asedit.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/editors/asedit/Makefile editors/asedit/Makefile --- /usr/ports/editors/asedit/Makefile 2013-09-22 01:14:40.000000000 +0900 +++ editors/asedit/Makefile 2013-11-01 00:00:00.000000000 +0900 @@ -3,10 +3,9 @@ PORTNAME= asedit PORTVERSION= 1.3.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= editors -MASTER_SITES= ${MASTER_SITE_XCONTRIB} -MASTER_SITE_SUBDIR= editors +MASTER_SITES= XCONTRIB/editors EXTRACT_SUFX= .tar.Z MAINTAINER= ports@FreeBSD.org @@ -15,7 +14,18 @@ USES= imake:notall motif USE_XORG= ice sm x11 xext xmu xp xt -MAN1= asedit.1 +PLIST_FILES= bin/asedit \ + lib/X11/app-defaults/Asedit \ + lib/X11/app-defaults/Asedit-sgi \ + lib/X11/app-defaults/Asedit_em \ + lib/X11/app-defaults/Asedit_em-sgi \ + lib/X11/asedit.hlp \ + lib/X11/asedit_em.hlp \ + man/man1/asedit.1.gz + +post-patch: + @${REINPLACE_CMD} -e \ + '/^XMLIB/s|-lPW|| ; \ + /^DEFINES/s|-O ||' ${WRKSRC}/Imakefile -NO_STAGE= yes .include diff -urN /usr/ports/editors/asedit/files/patch-aa editors/asedit/files/patch-aa --- /usr/ports/editors/asedit/files/patch-aa 2013-06-21 03:53:42.000000000 +0900 +++ editors/asedit/files/patch-aa 1970-01-01 09:00:00.000000000 +0900 @@ -1,19 +0,0 @@ -*** Imakefile.orig Sun Jul 28 21:43:57 1996 ---- Imakefile Sun Jul 28 21:44:31 1996 -*************** -*** 29,35 **** - - LOCAL_X_LIBDIR = - -! XMLIB = -lXm -lPW - - XCOMM - HP PW setup: XMLIB = -lXm -lc -lPW - XCOMM - SUN setup: XMLIB = -lXm ---- 29,35 ---- - - LOCAL_X_LIBDIR = - -! XMLIB = ${MOTIFLIB} - - XCOMM - HP PW setup: XMLIB = -lXm -lc -lPW - XCOMM - SUN setup: XMLIB = -lXm diff -urN /usr/ports/editors/asedit/pkg-plist editors/asedit/pkg-plist --- /usr/ports/editors/asedit/pkg-plist 2013-06-21 03:53:42.000000000 +0900 +++ editors/asedit/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,7 +0,0 @@ -bin/asedit -lib/X11/app-defaults/Asedit -lib/X11/app-defaults/Asedit-sgi -lib/X11/app-defaults/Asedit_em -lib/X11/app-defaults/Asedit_em-sgi -lib/X11/asedit.hlp -lib/X11/asedit_em.hlp --Multipart=_Fri__1_Nov_2013_04_26_04_+0900_BdVcgFyq.o5gLlnm--