Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Aug 2022 17:26:46 +0800
From:      "Michael A. Oshin" <micadeyeye@gmail.com>
To:        Ronald Klop <ronald-lists@klop.ws>
Cc:        freebsd-ports@freebsd.org
Subject:   Re: New Port: Security/liblurch & Security/Pidgin-lurch
Message-ID:  <CAN2Rk0cwhzZrhrrnNWdWjdRUa4guBarxF7tN=kn7yKUSqCW0Aw@mail.gmail.com>
In-Reply-To: <ac46f61c-4812-3417-6a5f-1b5068b39790@klop.ws>
References:  <CAN2Rk0eJU-q%2BBSsS_yvXbkGLYGPn8tnR5kd4sujM=ZNt7Q7sVw@mail.gmail.com> <1062387933.146.1661491191507@localhost> <CAN2Rk0dZcGmqGDS8C6RCv4=dORBUVBeQNU-UNgv9yWSd17cudg@mail.gmail.com> <1126283524.90.1661501545184@localhost> <CAN2Rk0dPVFWBfK0wE-kUQt9eB_5eUOuRpV=vZ1O-q6oQsfjuCg@mail.gmail.com> <CAN2Rk0enAt-0hVj1p%2BafGw5RjAnp4zWcGPGcCEJB5aoyisOP6Q@mail.gmail.com> <ac46f61c-4812-3417-6a5f-1b5068b39790@klop.ws>

next in thread | previous in thread | raw e-mail | index | archive | help
--0000000000000de9ea05e735a2a1
Content-Type: text/plain; charset="UTF-8"

Thanks everyone. I missed those reply because I subscribed to a daily
digest.

I shall work on them. I don't know what else to use if not do-install. Most
Makefiles had post-install, which emitted pkg-static dir. access error when
used here.

The lib, before being ported, was also installing into the
~/.purple/plugins dir for pidgin to  use. I think that is where the otr lib
goes into too.

I shall drop the use GH then, @Cy had earlier recommended it.

On Sat, Aug 27, 2022, 15:22 Ronald Klop <ronald-lists@klop.ws> wrote:

> Hi Michael,
>
> This was answered yesterday.
>
> https://lists.freebsd.org/archives/freebsd-ports/2022-August/002539.html
> https://lists.freebsd.org/archives/freebsd-ports/2022-August/002540.html
>
> Regards,
> Ronald.
>
>
>
> On 8/27/22 07:20, Michael A. Oshin wrote:
> > Thanks Ronald and other folks,
> > It now builds and deploys into the right dir. I needed to get rid of the
> LD_CONFIG too.
> > See the makefile at
> https://github.com/micadeyeye/freebsd-ports/blob/master/security/liblurch/Makefile
> <
> https://github.com/micadeyeye/freebsd-ports/blob/master/security/liblurch/Makefile
> >.
> >
> > 1) However, how do I get rid of the below error?
> > ---------
> > ===>   Generating temporary packing list
> > .....
> > ......
> > ====> Compressing man pages (compress-man)
> > ===>  Installing for liblurch-0.7.0
> > ===>  Checking if liblurch is already installed
> > usage: cp [-R [-H | -L | -P]] [-f | -i | -n] [-alpsvx] source_file
> target_file
> >         cp [-R [-H | -L | -P]] [-f | -i | -n] [-alpsvx] source_file ...
> target_directory
> > *** Error code 64
> >
> > Stop.
> > make: stopped in /usr/ports/security/liblurch/
> > -------
> >
> > 2) Next, try use the GH repo (Preferred) and you will see the below
> error:
> > ----------
> > ===>  Building for liblurch-0.7.0
> > gmake[1]: Entering directory
> '......ports/security/liblurch/work/lurch-84f72d8'
> > cc -fPIC -O2 -pipe  -fstack-protector-strong -fno-strict-aliasing
>  -std=c11 -Wall -g -Wstrict-overflow -I/usr/local/include/glib-2.0
> -I/usr/local/lib/glib-2.0/include -I/usr/local/include
>  -I/usr/local/include/libpurple -I/usr/local/include/glib-2.0
> -I/usr/local/lib/glib-2.0/include -I/usr/local/include
>  -I/usr/local/include/libxml2 -I./headers/jabber -I./lib/libomemo/src
> -I./lib/axc/src -I./lib/axc/lib/libsignal-protocol-c/src
> -D_XOPEN_SOURCE=700 -D_BSD_SOURCE -D_DEFAULT_SOURCE -DPURPLE_PLUGINS -c
> ./src/lurch.c -o build/lurch.o
> > ./src/lurch.c:14:10: fatal error: 'libomemo.h' file not found
> > #include "libomemo.h"
> >           ^~~~~~~~~~~~
> > 1 error generated.
> > gmake[1]: *** [Makefile:148: build/lurch.o] Error 1
> > ------
> > --------------
> >
> > I have tried several options - e.g. SUB_FILES=
>  ${WRKSRC}/lib/libomemo/ - but no luck.How else can I get it built? I think
> the do-install throws error too for GH.
> >
> > On a final note, what other steps do I need to do to finalise and
> publish into ports? I have read the pages but need quicker porting.
> >
> > Michael
> >
> > On Fri, Aug 26, 2022, 16:12 Ronald Klop <ronald-lists@klop.ws <mailto:
> ronald-lists@klop.ws>> wrote:
> >
> >     Mmm, lets take another look at it.
> >
> >      From /usr/ports/Mk/bsd.ports.mk <http://bsd.ports.mk>:
> >
> >     "# Set these variables if your port doesn't need some of the steps.
> >     # Note that there are no NO_PATCH or NO_CONFIGURE variables because
> >     # those steps are empty by default.  NO_EXTRACT is not allowed
> anymore
> >     # since we need to at least create ${WRKDIR}.  Also, NO_CHECKSUM is
> a user
> >     # variable and is not to be set in a port's Makefile.  See above for
> NO_PACKAGE.
> >     #
> >     # NO_BUILD      - Use a dummy (do-nothing) build target.
> >     # NO_INSTALL    - Use a dummy (do-nothing) install target.
> >     # NO_TEST       - Use a dummy (do-nothing) test target."
> >
> >     Oh, lets take a look at your Makefile.
> >     You have "GNU_CONFIGURE= yes" defined. That is why it tries to run
> configure.
> >     Remove that line and try again.
> >
> >     See also the link I posted in the previous reply:
> >     "If |HAS_CONFIGURE| or |GNU_CONFIGURE| is set, WRKSRC/configure is
> run."
> >
> >     Regards,
> >     Ronald.
> >
> >     *Van:* "Michael A. Oshin" <micadeyeye@gmail.com <mailto:
> micadeyeye@gmail.com>>
> >     *Datum:* vrijdag, 26 augustus 2022 08:55
> >     *Aan:* Ronald Klop <ronald-lists@klop.ws <mailto:
> ronald-lists@klop.ws>>
> >     *Onderwerp:* Re: Fwd: New Port: Security/liblurch &
> Security/Pidgin-lurch
> >
> >         HAS_CONFIGURE=off in Makefile did not work. A blank configure
> file in dir did not either. I have not seen one in pkg dirs though.
> >         On Fri, 26 Aug 2022 at 13:19, Ronald Klop <ronald-lists@klop.ws
> <mailto:ronald-lists@klop.ws>> wrote:
> >
> >             Does this work?
> >             HAS_CONFIGURE=off
> >
> >
> https://docs.freebsd.org/en/books/porters-handbook/slow-porting/#slow-work
> <
> https://docs.freebsd.org/en/books/porters-handbook/slow-porting/#slow-work
> >
> >
> >             *Van:* "Michael A. Oshin" <micadeyeye@gmail.com <mailto:
> micadeyeye@gmail.com>>
> >             *Datum:* 26 augustus 2022 05:37
> >             *Aan:* freebsd-ports@freebsd.org <mailto:
> freebsd-ports@freebsd.org>
> >             *Onderwerp:* Fwd: New Port: Security/liblurch &
> Security/Pidgin-lurch
> >
> >                 Good Morning folks,
> >
> >                 I made a few changes to the liblurch Makefile. It now
> points to the developer's github for the pkg. See
> https://github.com/micadeyeye/freebsd-ports/blob/master/security/liblurch/Makefile
> <
> https://github.com/micadeyeye/freebsd-ports/blob/master/security/liblurch/Makefile
> >.
> >
> >                 One problem I have with the liblurch is that it wants to
> run '.configure'. See the below:
> >
> >                 ______________________
> >                 make -C
> /usr/local/opt/github/freebsd-ports/security/liblurch/ install clean
> >                 ===>   liblurch-0.7.0 depends on package: gmake>=4.3 -
> found
> >                 ===>   liblurch-0.7.0 depends on package:
> pkgconf>=1.3.0_1 - found
> >                 ===>   liblurch-0.7.0 depends on file:
> /usr/local/bin/ccache - found
> >                 ===>   liblurch-0.7.0 depends on shared library:
> libmxml.so - found (/usr/local/lib/libmxml.so)
> >                 ===>   liblurch-0.7.0 depends on shared library:
> libpurple.so - found (/usr/local/lib/libpurple.so)
> >                 ===>  Configuring for liblurch-0.7.0
> >                 env: ./configure: No such file or directory
> >                 ===>  Script "configure" failed unexpectedly.
> >                 Please report the problem to micadeyeye@gmail.com
> <mailto:micadeyeye@gmail.com> [maintainer] and attach the
> >
>  "/usr/local/opt/github/freebsd-ports/security/liblurch/work/lurch-0.7.0-src/config.log"
> >                 including the output of the failure of your make
> command. Also, it might be
> >                 a good idea to provide an overview of all packages
> installed on your system
> >                 (e.g. a /usr/local/sbin/pkg-static info -g -Ea).
> >                 *** Error code 1
> >
> >                 Stop.
> >                 make: stopped in
> /usr/local/opt/github/freebsd-ports/security/liblurch/
> >                 _________________________________
> >
> >                 What it should do is ONLY run 'gmake install'. Please
> show me how to replace the process  "===>  Configuring for liblurch-0.7.0
> >                 env: ./configure: No such file or directory" with the
> "gmake install".
> >
> >                 On the other hand, please note that the pidgin-lurch (
> https://github.com/micadeyeye/freebsd-ports/blob/master/security/pidgin-lurch/Makefile
> <
> https://github.com/micadeyeye/freebsd-ports/blob/master/security/pidgin-lurch/Makefile>)
> is the UI modification to Pidgin, and currently, I have only copied the OTR
> UI with no modifications yet to its source code. I need a lot of assistance
> here.
> >
> >
> >
>
>

--0000000000000de9ea05e735a2a1
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"auto">Thanks everyone. I missed those reply because I subscribe=
d to a daily digest.=C2=A0<div dir=3D"auto"><br></div><div dir=3D"auto">I s=
hall work on them. I don&#39;t know what else to use if not do-install. Mos=
t Makefiles had post-install, which emitted pkg-static dir. access error wh=
en used here.</div><div dir=3D"auto"><br></div><div dir=3D"auto">The lib, b=
efore being ported, was also installing into the ~/.purple/plugins dir for =
pidgin to=C2=A0 use. I think that is where the otr lib goes into too.</div>=
<div dir=3D"auto"><br></div><div dir=3D"auto">I shall drop the use GH then,=
 @Cy had earlier recommended it.</div></div><br><div class=3D"gmail_quote">=
<div dir=3D"ltr" class=3D"gmail_attr">On Sat, Aug 27, 2022, 15:22 Ronald Kl=
op &lt;<a href=3D"mailto:ronald-lists@klop.ws">ronald-lists@klop.ws</a>&gt;=
 wrote:<br></div><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8=
ex;border-left:1px #ccc solid;padding-left:1ex">Hi Michael,<br>
<br>
This was answered yesterday.<br>
<br>
<a href=3D"https://lists.freebsd.org/archives/freebsd-ports/2022-August/002=
539.html" rel=3D"noreferrer noreferrer" target=3D"_blank">https://lists.fre=
ebsd.org/archives/freebsd-ports/2022-August/002539.html</a><br>
<a href=3D"https://lists.freebsd.org/archives/freebsd-ports/2022-August/002=
540.html" rel=3D"noreferrer noreferrer" target=3D"_blank">https://lists.fre=
ebsd.org/archives/freebsd-ports/2022-August/002540.html</a><br>
<br>
Regards,<br>
Ronald.<br>
<br>
<br>
<br>
On 8/27/22 07:20, Michael A. Oshin wrote:<br>
&gt; Thanks Ronald and other folks,<br>
&gt; It now builds and deploys into the right dir. I needed=C2=A0to get rid=
 of the LD_CONFIG too.<br>
&gt; See the makefile at <a href=3D"https://github.com/micadeyeye/freebsd-p=
orts/blob/master/security/liblurch/Makefile" rel=3D"noreferrer noreferrer" =
target=3D"_blank">https://github.com/micadeyeye/freebsd-ports/blob/master/s=
ecurity/liblurch/Makefile</a> &lt;<a href=3D"https://github.com/micadeyeye/=
freebsd-ports/blob/master/security/liblurch/Makefile" rel=3D"noreferrer nor=
eferrer" target=3D"_blank">https://github.com/micadeyeye/freebsd-ports/blob=
/master/security/liblurch/Makefile</a>&gt;.<br>
&gt; <br>
&gt; 1) However, how do I get rid of the below error?<br>
&gt; ---------<br>
&gt; =3D=3D=3D&gt; =C2=A0 Generating temporary packing list<br>
&gt; .....<br>
&gt; ......<br>
&gt; =3D=3D=3D=3D&gt; Compressing man pages (compress-man)<br>
&gt; =3D=3D=3D&gt; =C2=A0Installing for liblurch-0.7.0<br>
&gt; =3D=3D=3D&gt; =C2=A0Checking if liblurch is already installed<br>
&gt; usage: cp [-R [-H | -L | -P]] [-f | -i | -n] [-alpsvx] source_file tar=
get_file<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0cp [-R [-H | -L | -P]] [-f | -i | -n]=
 [-alpsvx] source_file ... target_directory<br>
&gt; *** Error code 64<br>
&gt; <br>
&gt; Stop.<br>
&gt; make: stopped in /usr/ports/security/liblurch/<br>
&gt; -------<br>
&gt; <br>
&gt; 2) Next, try use the GH repo (Preferred) and you will see the below er=
ror:<br>
&gt; ----------<br>
&gt; =3D=3D=3D&gt; =C2=A0Building for liblurch-0.7.0<br>
&gt; gmake[1]: Entering directory &#39;......ports/security/liblurch/work/l=
urch-84f72d8&#39;<br>
&gt; cc -fPIC -O2 -pipe =C2=A0-fstack-protector-strong -fno-strict-aliasing=
 =C2=A0-std=3Dc11 -Wall -g -Wstrict-overflow -I/usr/local/include/glib-2.0 =
-I/usr/local/lib/glib-2.0/include -I/usr/local/include =C2=A0-I/usr/local/i=
nclude/libpurple -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/in=
clude -I/usr/local/include =C2=A0-I/usr/local/include/libxml2 -I./headers/j=
abber -I./lib/libomemo/src -I./lib/axc/src -I./lib/axc/lib/libsignal-protoc=
ol-c/src -D_XOPEN_SOURCE=3D700 -D_BSD_SOURCE -D_DEFAULT_SOURCE -DPURPLE_PLU=
GINS -c ./src/lurch.c -o build/lurch.o<br>
&gt; ./src/lurch.c:14:10: fatal error: &#39;libomemo.h&#39; file not found<=
br>
&gt; #include &quot;libomemo.h&quot;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0^~~~~~~~~~~~<br>
&gt; 1 error generated.<br>
&gt; gmake[1]: *** [Makefile:148: build/lurch.o] Error 1<br>
&gt; ------<br>
&gt; --------------<br>
&gt; <br>
&gt; I have tried several options - e.g. SUB_FILES=3D =C2=A0 =C2=A0 =C2=A0$=
{WRKSRC}/lib/libomemo/=C2=A0- but no luck.How else can I get it built? I th=
ink the do-install throws error too for GH.<br>
&gt; <br>
&gt; On a final note, what other steps do I need to do to=C2=A0finalise and=
 publish into ports? I have read the pages but need quicker porting.<br>
&gt; <br>
&gt; Michael<br>
&gt; <br>
&gt; On Fri, Aug 26, 2022, 16:12 Ronald Klop &lt;<a href=3D"mailto:ronald-l=
ists@klop.ws" target=3D"_blank" rel=3D"noreferrer">ronald-lists@klop.ws</a>=
 &lt;mailto:<a href=3D"mailto:ronald-lists@klop.ws" target=3D"_blank" rel=
=3D"noreferrer">ronald-lists@klop.ws</a>&gt;&gt; wrote:<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Mmm, lets take another look at it.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 From /usr/ports/Mk/<a href=3D"http://bsd.ports.mk"=
 rel=3D"noreferrer noreferrer" target=3D"_blank">bsd.ports.mk</a> &lt;<a hr=
ef=3D"http://bsd.ports.mk" rel=3D"noreferrer noreferrer" target=3D"_blank">=
http://bsd.ports.mk</a>&gt;:<br>;
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0&quot;# Set these variables if your port doesn&#39;=
t need some of the steps.<br>
&gt;=C2=A0 =C2=A0 =C2=A0# Note that there are no NO_PATCH or NO_CONFIGURE v=
ariables because<br>
&gt;=C2=A0 =C2=A0 =C2=A0# those steps are empty by default.=C2=A0 NO_EXTRAC=
T is not allowed anymore<br>
&gt;=C2=A0 =C2=A0 =C2=A0# since we need to at least create ${WRKDIR}.=C2=A0=
 Also, NO_CHECKSUM is a user<br>
&gt;=C2=A0 =C2=A0 =C2=A0# variable and is not to be set in a port&#39;s Mak=
efile.=C2=A0 See above for NO_PACKAGE.<br>
&gt;=C2=A0 =C2=A0 =C2=A0#<br>
&gt;=C2=A0 =C2=A0 =C2=A0# NO_BUILD=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 - Use a du=
mmy (do-nothing) build target.<br>
&gt;=C2=A0 =C2=A0 =C2=A0# NO_INSTALL=C2=A0=C2=A0=C2=A0 - Use a dummy (do-no=
thing) install target.<br>
&gt;=C2=A0 =C2=A0 =C2=A0# NO_TEST=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 - Use=
 a dummy (do-nothing) test target.&quot;<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Oh, lets take a look at your Makefile.<br>
&gt;=C2=A0 =C2=A0 =C2=A0You have &quot;GNU_CONFIGURE=3D yes&quot; defined. =
That is why it tries to run configure.<br>
&gt;=C2=A0 =C2=A0 =C2=A0Remove that line and try again.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0See also the link I posted in the previous reply:<b=
r>
&gt;=C2=A0 =C2=A0 =C2=A0&quot;If |HAS_CONFIGURE| or |GNU_CONFIGURE| is set,=
 WRKSRC/configure is run.&quot;<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Regards,<br>
&gt;=C2=A0 =C2=A0 =C2=A0Ronald.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0*Van:* &quot;Michael A. Oshin&quot; &lt;<a href=3D"=
mailto:micadeyeye@gmail.com" target=3D"_blank" rel=3D"noreferrer">micadeyey=
e@gmail.com</a> &lt;mailto:<a href=3D"mailto:micadeyeye@gmail.com" target=
=3D"_blank" rel=3D"noreferrer">micadeyeye@gmail.com</a>&gt;&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0*Datum:* vrijdag, 26 augustus 2022 08:55<br>
&gt;=C2=A0 =C2=A0 =C2=A0*Aan:* Ronald Klop &lt;<a href=3D"mailto:ronald-lis=
ts@klop.ws" target=3D"_blank" rel=3D"noreferrer">ronald-lists@klop.ws</a> &=
lt;mailto:<a href=3D"mailto:ronald-lists@klop.ws" target=3D"_blank" rel=3D"=
noreferrer">ronald-lists@klop.ws</a>&gt;&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0*Onderwerp:* Re: Fwd: New Port: Security/liblurch &=
amp; Security/Pidgin-lurch<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0HAS_CONFIGURE=3Doff in Makefile did n=
ot work. A blank configure file in dir did not either. I have not seen one =
in pkg dirs though.<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0On Fri, 26 Aug 2022 at 13:19, Ronald =
Klop &lt;<a href=3D"mailto:ronald-lists@klop.ws" target=3D"_blank" rel=3D"n=
oreferrer">ronald-lists@klop.ws</a> &lt;mailto:<a href=3D"mailto:ronald-lis=
ts@klop.ws" target=3D"_blank" rel=3D"noreferrer">ronald-lists@klop.ws</a>&g=
t;&gt; wrote:<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Does this work?<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0HAS_CONFIGURE=3Doff<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://docs=
.freebsd.org/en/books/porters-handbook/slow-porting/#slow-work" rel=3D"nore=
ferrer noreferrer" target=3D"_blank">https://docs.freebsd.org/en/books/port=
ers-handbook/slow-porting/#slow-work</a> &lt;<a href=3D"https://docs.freebs=
d.org/en/books/porters-handbook/slow-porting/#slow-work" rel=3D"noreferrer =
noreferrer" target=3D"_blank">https://docs.freebsd.org/en/books/porters-han=
dbook/slow-porting/#slow-work</a>&gt;<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0*Van:* &quot;Michael A.=
 Oshin&quot; &lt;<a href=3D"mailto:micadeyeye@gmail.com" target=3D"_blank" =
rel=3D"noreferrer">micadeyeye@gmail.com</a> &lt;mailto:<a href=3D"mailto:mi=
cadeyeye@gmail.com" target=3D"_blank" rel=3D"noreferrer">micadeyeye@gmail.c=
om</a>&gt;&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0*Datum:* 26 augustus 20=
22 05:37<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0*Aan:* <a href=3D"mailt=
o:freebsd-ports@freebsd.org" target=3D"_blank" rel=3D"noreferrer">freebsd-p=
orts@freebsd.org</a> &lt;mailto:<a href=3D"mailto:freebsd-ports@freebsd.org=
" target=3D"_blank" rel=3D"noreferrer">freebsd-ports@freebsd.org</a>&gt;<br=
>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0*Onderwerp:* Fwd: New P=
ort: Security/liblurch &amp; Security/Pidgin-lurch<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Good Morn=
ing folks,<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0I made a =
few changes to the liblurch Makefile. It now points to the developer&#39;s =
github for the pkg. See <a href=3D"https://github.com/micadeyeye/freebsd-po=
rts/blob/master/security/liblurch/Makefile" rel=3D"noreferrer noreferrer" t=
arget=3D"_blank">https://github.com/micadeyeye/freebsd-ports/blob/master/se=
curity/liblurch/Makefile</a> &lt;<a href=3D"https://github.com/micadeyeye/f=
reebsd-ports/blob/master/security/liblurch/Makefile" rel=3D"noreferrer nore=
ferrer" target=3D"_blank">https://github.com/micadeyeye/freebsd-ports/blob/=
master/security/liblurch/Makefile</a>&gt;.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0One probl=
em I have with the liblurch is that it wants to run &#39;.configure&#39;. S=
ee the below:<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0_________=
_____________<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0make -C /=
usr/local/opt/github/freebsd-ports/security/liblurch/ install clean<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=3D=3D=3D=
&gt; =C2=A0 liblurch-0.7.0 depends on package: gmake&gt;=3D4.3 - found<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=3D=3D=3D=
&gt; =C2=A0 liblurch-0.7.0 depends on package: pkgconf&gt;=3D1.3.0_1 - foun=
d<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=3D=3D=3D=
&gt; =C2=A0 liblurch-0.7.0 depends on file: /usr/local/bin/ccache - found<b=
r>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=3D=3D=3D=
&gt; =C2=A0 liblurch-0.7.0 depends on shared library: libmxml.so - found (/=
usr/local/lib/libmxml.so)<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=3D=3D=3D=
&gt; =C2=A0 liblurch-0.7.0 depends on shared library: libpurple.so - found =
(/usr/local/lib/libpurple.so)<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=3D=3D=3D=
&gt; =C2=A0Configuring for liblurch-0.7.0<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0env: ./co=
nfigure: No such file or directory<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=3D=3D=3D=
&gt; =C2=A0Script &quot;configure&quot; failed unexpectedly.<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Please re=
port the problem to <a href=3D"mailto:micadeyeye@gmail.com" target=3D"_blan=
k" rel=3D"noreferrer">micadeyeye@gmail.com</a> &lt;mailto:<a href=3D"mailto=
:micadeyeye@gmail.com" target=3D"_blank" rel=3D"noreferrer">micadeyeye@gmai=
l.com</a>&gt; [maintainer] and attach the<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&quot;/us=
r/local/opt/github/freebsd-ports/security/liblurch/work/lurch-0.7.0-src/con=
fig.log&quot;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0including=
 the output of the failure of your make command. Also, it might be<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0a good id=
ea to provide an overview of all packages installed on your system<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(e.g. a /=
usr/local/sbin/pkg-static info -g -Ea).<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0*** Error=
 code 1<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Stop.<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0make: sto=
pped in /usr/local/opt/github/freebsd-ports/security/liblurch/<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0_________=
________________________<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0What it s=
hould do is ONLY run &#39;gmake install&#39;. Please show me how to replace=
 the process =C2=A0&quot;=3D=3D=3D&gt; =C2=A0Configuring for liblurch-0.7.0=
<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0env: ./co=
nfigure: No such file or directory&quot; with the &quot;gmake install&quot;=
.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0On the ot=
her hand, please note that the pidgin-lurch (<a href=3D"https://github.com/=
micadeyeye/freebsd-ports/blob/master/security/pidgin-lurch/Makefile" rel=3D=
"noreferrer noreferrer" target=3D"_blank">https://github.com/micadeyeye/fre=
ebsd-ports/blob/master/security/pidgin-lurch/Makefile</a> &lt;<a href=3D"ht=
tps://github.com/micadeyeye/freebsd-ports/blob/master/security/pidgin-lurch=
/Makefile" rel=3D"noreferrer noreferrer" target=3D"_blank">https://github.c=
om/micadeyeye/freebsd-ports/blob/master/security/pidgin-lurch/Makefile</a>&=
gt;) is the UI modification to Pidgin, and currently, I have only copied th=
e OTR UI with no modifications yet to its source code. I need a lot of assi=
stance here.<br>
&gt; <br>
&gt; <br>
&gt; <br>
<br>
</blockquote></div>

--0000000000000de9ea05e735a2a1--



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