Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Mar 2004 13:37:12 -0800 (PST)
From:      Lee Harr <missive@hotmail.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/64179: games/grande build fix
Message-ID:  <200403122137.i2CLbCZh039848@www.freebsd.org>
Resent-Message-ID: <200403122140.i2CLeBMo091837@freefall.freebsd.org>

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

>Number:         64179
>Category:       ports
>Synopsis:       games/grande build fix
>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:   Fri Mar 12 13:40:11 PST 2004
>Closed-Date:
>Last-Modified:
>Originator:     Lee Harr
>Release:        -stable
>Organization:
>Environment:
FreeBSD homer 4.9-STABLE FreeBSD 4.9-STABLE #3: Fri Mar  5 18:14:40 EST 2004     lee@homer:/mnt/obj/mnt/src/sys/HOMER  i386

>Description:
Building ports/games/grande was failing.


automake: configure.in: required file `./depcomp' not found
/usr/local/share/automake/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL
/usr/local/share/automake/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL
/usr/local/share/automake/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL
/usr/local/share/automake/am/lang-compile.am: AMDEP does not appear in AM_CONDITIONAL
*** Error code 1

>How-To-Repeat:
Try to build or upgrade games/grande

>Fix:
Need to run aclocal before configuring, and create the
file depcomp in the work area. This patch does the trick:


--- Makefile.orig       Fri Jan 30 17:47:30 2004
+++ Makefile    Fri Mar 12 07:40:07 2004
@@ -22,6 +22,12 @@
 USE_X_PREFIX=  yes
 GNU_CONFIGURE= yes
 USE_AUTOCONF_VER=      253
+ACLOCAL=        aclocal
+
+pre-configure:
+       cd ${WRKDIR}/${DISTNAME} && ${ACLOCAL}
+       cd ${WRKDIR}/${DISTNAME} && touch depcomp
+

 pre-install:
        ${MKDIR} ${PREFIX}/share/${PORTNAME}/score

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



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