Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Dec 2013 23:57:57 GMT
From:      John Marino <freebsd@marino.st>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/184613: textproc/ispell: [PATCH] unbreak german ispell and ispell-neu on head
Message-ID:  <201312082357.rB8NvvhQ038171@oldred.freebsd.org>
Resent-Message-ID: <201312090000.rB9000Fw097128@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         184613
>Category:       ports
>Synopsis:       textproc/ispell: [PATCH] unbreak german ispell and ispell-neu on head
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Dec 09 00:00:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     John Marino
>Release:        
>Organization:
>Environment:
>Description:
german/ispell and german/ispell-neu do not build on F10 or head (check portsmon).  This is because $MAKE defaults to "make" which uses bmake instead of the specified gmake.

The attached patch to textproc/ispell will fix both of these broken german versions.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

--- Makefile.orig	2013-12-08 23:46:43.750610000 +0000
+++ Makefile
@@ -102,7 +102,8 @@ EXTRACT_ONLY+=	${BRDISTFILE}
 DENEUDISTFILE=	igerman98-20071211.tar.bz2
 MASTER_SITES+=	http://www.j3e.de/ispell/igerman98/dict/:denu
 EXTRA_DICT+=	${DENEUDISTFILE}:denu
-USE_GMAKE=	yes
+USES+=		gmake
+MAKE_ARGS+=	MAKE=${GMAKE}
 .endif
 .if defined(ISPELL_DEALT)
 DEALTDISTFILE=	hk-deutsch.tar.gz
@@ -116,7 +117,7 @@ MASTER_SITES+=	http://folk.uio.no/runekl
 EXTRA_DICT+=	${NODISTFILE}:no
 EXTRACT_ONLY+=	${NODISTFILE}
 MASKBITS?=	64
-USE_GMAKE=	yes
+USES+=		gmake
 .endif
 .if defined(ISPELL_NL)
 NLDISTFILE=	ispell-nl-1.0.0.tar.gz


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312082357.rB8NvvhQ038171>