Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 5 Aug 2002 03:39:52 +0200
From:      Clement Laforet <sheep.killer@cultdeadsheep.org>
To:        Pete Fritchman <petef@FreeBSD.org>
Cc:        edwin@mavetju.org, petef@FreeBSD.org, freebsd-ports@FreeBSD.org
Subject:   Re: ports/39193: [maintainer-update] net/papaya update to version 0.9.6
Message-ID:  <20020805033952.740881e8.sheep.killer@cultdeadsheep.org>
In-Reply-To: <200208050023.g750NlF5053317@freefall.freebsd.org>
References:  <200208050023.g750NlF5053317@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, 4 Aug 2002 17:23:47 -0700 (PDT)
Pete Fritchman <petef@FreeBSD.org> wrote:

Hi Pete,
I think "make depend" fails because the flag "-I../papaya" is missing
int the Makefile.
After configure work/papaya-src-0.96/src/plugins/Makefile look like this
(Sorry I don't use gtk2)
<snip>
.depend:
        $(CXX) -MM -I../include -I/usr/local/include/
-I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12
-I/usr/local/include -I/usr/X11R6/include $(SRC_FILES) >
.depend
        $(PERL) -i -p -e 's/..\/include\/version\.h//g' .depend
        $(PERL) -i -p -e 's/([^.]+)\.o/o\/\1.o/g' .depend

include .depend

And it should be like this :

.depend:
        $(CXX) -MM -I../include -I../papaya -I/usr/local/include/
-I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 
-I/usr/local/include -I/usr/X11R6/include $(SRC_FILES) > .depend
        $(PERL) -i -p -e 's/..\/include\/version\.h//g' .depend
        $(PERL) -i -p -e 's/([^.]+)\.o/o\/\1.o/g' .depend

include .depend

here's a patch :
--- src/plugins/Makefile.in.orig        Mon Aug  5 03:28:28 2002
+++ src/plugins/Makefile.in     Mon Aug  5 03:28:47 2002
@@ -58,13 +58,8 @@
        done

 .depend:
-       $(CXX) -MM -I../include -I/usr/local/include/ @GTK_C_FLAGS@
$(SRC_FILES) > .depend
+       $(CXX) -MM -I../include -I../papaya -I/usr/local/include/
@GTK_C_FLAGS@ $(SRC_FILES) > .depend
        $(PERL) -i -p -e 's/..\/include\/version\.h//g' .depend
        $(PERL) -i -p -e 's/([^.]+)\.o/o\/\1.o/g' .depend

 include .depend
-
-
-
-
-

bye,
clem

> Synopsis: [maintainer-update] net/papaya update to version 0.9.6
> 
> State-Changed-From-To: open->analyzed
> State-Changed-By: petef
> State-Changed-When: Sun Aug 4 17:23:13 PDT 2002
> State-Changed-Why: 
> Can't build:
> gmake[2]: Entering directory
> `/usr/home/petef/ports/papaya/work/papaya-src-0.96/src/plugins'
> Makefile:66: .depend: No such file or directory c++ -MM -I../include
> -I/usr/local/include/                                          
> -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0
> -I/usr/local/lib/glib-2.0/include -I/usr/X11R6/include/gtk-2.0
> -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include/pango-1.0
> -I/usr/X11R6/include -I/usr/local/include/freetype2
> -I/usr/local/include   Biff.cpp Clock.cpp ConnectionTimer.cpp
> Fraction.cpp Friends.cpp MSP.cpp MudLog.cpp Mudftp.cpp Multi.cpp
> PapayaUsers.cpp PromptPlugin.cpp SamplePlugin.cpp Speedwalk.cpp >
> .depend Clock.cpp:14: Win32PluginAPI.cpp: No such file or directory
> ConnectionTimer.cpp:10: Win32PluginAPI.cpp: No such file or directory
> Fraction.cpp:17: Win32PluginAPI.cpp: No such file or directory
> Friends.cpp:6: Win32PluginAPI.cpp: No such file or directory
> MudLog.cpp:22: Win32PluginAPI.cpp: No such file or directory
> Multi.cpp:16: Win32PluginAPI.cpp: No such file or directory
> PromptPlugin.cpp:12: Win32PluginAPI.cpp: No such file or directory
> Speedwalk.cpp:9: Win32PluginAPI.cpp: No such file or directory
> gmake[2]: *** [.depend] Error 1
> 
> ideas?
> 
> http://www.freebsd.org/cgi/query-pr.cgi?pr=39193
> 
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-ports" in the body of the message

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020805033952.740881e8.sheep.killer>