On Mon, Nov 17, 2008 at 09:09:11AM +0100, Landry Breuil wrote:
> On Sat, Nov 15, 2008 at 09:38:54PM -0200, Martin Pieuchot wrote:
> > Hi,
> > 
> > On Sat, 2008-11-15 at 23:11 +0000, Jacob Meuser wrote:
> > > On Sat, Nov 15, 2008 at 05:39:54PM -0200, Martin Pieuchot wrote:
> > > > Hello ports,
> > > > 
> > > > I tried to install gstreamer-plugins-good from port today and I
> > > > encountered a problem during "make configure", see the log below.
> > > > 
> > > > The problem is that the autogen.sh script calls autopoint, that
> > > > try to initiate a cvs checkout forbidden by the systrace policy. I
> > > > wonder if this issue is related to my system, see my mk.conf below, or
> > > > if anyone had already encountered this problem?
> > > > 
> > > > I fixed it by commenting the autopoint call. Is it really necessary for
> > > > the package creation? Here is the little patch...
> > > > 
> > > > Thanks for your explanations,
> > > 
> > > the patch is needed, autopoint maybe not.  I've never seen this
> > > happen and I always use systrace.  are you building ports as
> > > root?
> > 
> > No I am not, I am using a wheel/operator/wsrc user... Can you reproduce
> > that problem? Any clue?
> 
> I had the same problem in a bulk build on ppc, but didn't have time to
> look at it. It should be fixed this way, and i think it's harmless to
> comment autopoint.

here's a patch that makes it stop using autopoint.

I've also gotten a report that the goom plugin from this package
crashes rhythmbox, and I can reproduce it.  does anyone else notice
this?  would it be ok to not install the goom plugin?

-- 
[EMAIL PROTECTED]
SDF Public Access UNIX System - http://sdf.lonestar.org

Index: Makefile
===================================================================
RCS file: 
/home2/cvs/OpenBSD/ports/multimedia/gstreamer-0.10/plugins-good/Makefile,v
retrieving revision 1.25
diff -u -r1.25 Makefile
--- Makefile    3 Nov 2008 23:24:08 -0000       1.25
+++ Makefile    17 Nov 2008 10:02:15 -0000
@@ -169,6 +169,7 @@
        cp -R ${FILESDIR} ${WRKSRC}/ext/libsndio
 
 pre-configure:
+       echo 'mkdir -p $1' > ${WRKSRC}/mkinstalldirs
        cd ${WRKSRC} && AUTOCONF_VERSION=${AUTOCONF_VERSION} \
                AUTOMAKE_VERSION=${AUTOMAKE_VERSION} NOCONFIGURE="true" 
./autogen.sh
 
Index: patches/patch-autogen_sh
===================================================================
RCS file: patches/patch-autogen_sh
diff -N patches/patch-autogen_sh
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-autogen_sh    17 Nov 2008 10:02:15 -0000
@@ -0,0 +1,12 @@
+$OpenBSD$
+--- autogen.sh.orig    Mon Nov 17 01:19:13 2008
++++ autogen.sh Mon Nov 17 01:20:55 2008
+@@ -69,7 +69,7 @@ if test -f po/Makefile.in.in;
+ then
+   patch -p0 -R < common/gettext.patch
+ fi
+-tool_run "$autopoint --force"
++#tool_run "$autopoint --force"
+ patch -p0 < common/gettext.patch
+ 
+ tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"

Reply via email to