|
List Info
Thread: jhalfs - BLFS
|
|
| jhalfs - BLFS |

|
2006-05-24 17:52:14 |
Manuel,
In are earlier email (the TODO list) you stated one of
the goals as
"- To develop the code to create the Makefile"
Are you looking for a
linear makefile where the current package depends on the
build of the
previous package.. i.e.
pkg-1:
pkg-2: pkg-1
pkg-3: pkg-2
..etc
<make code>
or ( from blfs-parser.sh koffice )
koffice: libxslt kdebase
<code>
libxslt:
<code>
kdebase: jdk kdelibs
<code>
kdelibs: gamin aRts
<code>
gamin: glib2
<code>
aRts: qt
<code>
qt: libmng
<code>
jdk: x-window-system
<code>
x-window-system: xorg7
<code>
xorg7: xorg7-driver luit xorg7-lib xorg7-util
<code>
xorg7-driver: xorg7-server
<code>
xorg7-server: xorg7-font
<code>
xorg7-font: xorg7-app xorg7-data
<code>
xorg7-app:
<code>
xorg-data:
<code>
xorg7-lib: fontconfig
<code>
fontconfig:
<code>
xorg7-util:
<code>
luit:
<code>
--
http://linuxfromscratch.org/mailman/listinfo/alfs-discu
ss
FAQ: http://www.linux
fromscratch.org/faq/
Unsubscribe: See the above information page
|
|
| jhalfs - BLFS |

|
2006-05-24 18:06:49 |
El Miércoles, 24 de Mayo de 2006 19:52, George Boudreau
escribió:
> Manuel,
>
> In are earlier email (the TODO list) you stated one
of the goals as
> "- To develop the code to create the
Makefile" Are you looking for a
> linear makefile where the current package depends on
the build of the
> previous package.. i.e.
Linear build, like we are doing for {C,H}LFS but allowing to
regenerate the
Makefile after editing the build scripts.
In that way, a user will be able to add/remove any desired
package (not wanted
individual optional dependencies, build not-BLFS optional
dependencies, etc),
from the default set of build scripts.
When done the scrips/packages fixes and regenerated the
Makefile, a plain
"make" will build all desired packages in their
proper order.
--
Manuel Canales Esparcia
Usuario de LFS nº2886: http://www.linuxfroms
cratch.org
LFS en castellano: http://www.escomp
oslinux.org/lfs-es http://www.lfs-es.com
TLDP-ES: http://es.tldp.org
--
http://linuxfromscratch.org/mailman/listinfo/alfs-discu
ss
FAQ: http://www.linux
fromscratch.org/faq/
Unsubscribe: See the above information page
|
|
| jhalfs - BLFS |

|
2006-05-24 19:48:28 |
M.Canales.es wrote:
> El Miércoles, 24 de Mayo de 2006 19:52, George Boudreau
escribió:
>> Manuel,
>>
>> In are earlier email (the TODO list) you stated
one of the goals as
>> "- To develop the code to create the
Makefile" Are you looking for a
>> linear makefile where the current package depends
on the build of the
>> previous package.. i.e.
>
> Linear build, like we are doing for {C,H}LFS but
allowing to regenerate the
> Makefile after editing the build scripts.
>
> In that way, a user will be able to add/remove any
desired package (not wanted
> individual optional dependencies, build not-BLFS
optional dependencies, etc),
> from the default set of build scripts.
>
> When done the scrips/packages fixes and regenerated the
Makefile, a plain
> "make" will build all desired packages in
their proper order.
I understand the direction you wish to take. ( still
working on 'how
to' )
I added a few files to the directory and rearranged the
internals as
you suggested.
>
>
--
http://linuxfromscratch.org/mailman/listinfo/alfs-discu
ss
FAQ: http://www.linux
fromscratch.org/faq/
Unsubscribe: See the above information page
|
|
| jhalfs - BLFS |

|
2006-05-24 20:07:05 |
El Miércoles, 24 de Mayo de 2006 21:48, George Boudreau
escribió:
> I understand the direction you wish to take. ( still
working on 'how
> to' )
I have almost clean the global idea from some time ago. The
problem is to full
explain it in English and, of course, implement the code.
The, I let that my not-very-well-depured code, but fully
commented, speak for
me
> I added a few files to the directory and rearranged
the internals as
> you suggested.
Thanks.
I'm having some problems with the new circular dependencies
handler (and with
the gremlins). It will took more time than I was thinking
:-/
--
Manuel Canales Esparcia
Usuario de LFS nº2886: http://www.linuxfroms
cratch.org
LFS en castellano: http://www.escomp
oslinux.org/lfs-es http://www.lfs-es.com
TLDP-ES: http://es.tldp.org
--
http://linuxfromscratch.org/mailman/listinfo/alfs-discu
ss
FAQ: http://www.linux
fromscratch.org/faq/
Unsubscribe: See the above information page
|
|
| jhalfs - BLFS |

|
2006-05-24 20:34:41 |
M.Canales.es wrote:
> El Miércoles, 24 de Mayo de 2006 21:48, George Boudreau
escribió:
>
>> I understand the direction you wish to take. (
still working on 'how
>> to' )
>
> I have almost clean the global idea from some time ago.
The problem is to full
> explain it in English and, of course, implement the
code.
>
> The, I let that my not-very-well-depured code, but
fully commented, speak for
> me
>
>> I added a few files to the directory and
rearranged the internals as
>> you suggested.
>
> Thanks.
>
> I'm having some problems with the new circular
dependencies handler (and with
> the gremlins). It will took more time than I was
thinking :-/
I ran 'blfs-parser.sh gnome-media 3' My traces showed a
maximum
recursion depth of 15, gremlins love complicated code like
this.
I will start picking away at some of the support code you
requested.
G.
>
--
http://linuxfromscratch.org/mailman/listinfo/alfs-discu
ss
FAQ: http://www.linux
fromscratch.org/faq/
Unsubscribe: See the above information page
|
|
| jhalfs - BLFS |

|
2006-05-24 20:40:17 |
El Miércoles, 24 de Mayo de 2006 22:34, George Boudreau
escribió:
> I ran 'blfs-parser.sh gnome-media 3' My traces
showed a maximum
> recursion depth of 15, gremlins love complicated code
like this.
Actually, I'm having problems with 'blfs-parser.sh jdk
3', but jdk is solved
fine when is a dependency of other package
--
Manuel Canales Esparcia
Usuario de LFS nº2886: http://www.linuxfroms
cratch.org
LFS en castellano: http://www.escomp
oslinux.org/lfs-es http://www.lfs-es.com
TLDP-ES: http://es.tldp.org
--
http://linuxfromscratch.org/mailman/listinfo/alfs-discu
ss
FAQ: http://www.linux
fromscratch.org/faq/
Unsubscribe: See the above information page
|
|
| jhalfs - BLFS |

|
2006-05-24 21:02:39 |
El Miércoles, 24 de Mayo de 2006 21:48, George Boudreau
escribió:
> I added a few files to the directory and rearranged
the internals as
> you suggested.
Looks like constants.inc is missing on the repo.
--
Manuel Canales Esparcia
Usuario de LFS nº2886: http://www.linuxfroms
cratch.org
LFS en castellano: http://www.escomp
oslinux.org/lfs-es http://www.lfs-es.com
TLDP-ES: http://es.tldp.org
--
http://linuxfromscratch.org/mailman/listinfo/alfs-discu
ss
FAQ: http://www.linux
fromscratch.org/faq/
Unsubscribe: See the above information page
|
|
| jhalfs - BLFS |

|
2006-05-24 21:40:04 |
M.Canales.es wrote:
> El Miércoles, 24 de Mayo de 2006 21:48, George Boudreau
escribió:
>
>> I added a few files to the directory and
rearranged the internals as
>> you suggested.
>
> Looks like constants.inc is missing on the repo.
sorry.. it's there now..
G.
>
--
http://linuxfromscratch.org/mailman/listinfo/alfs-discu
ss
FAQ: http://www.linux
fromscratch.org/faq/
Unsubscribe: See the above information page
|
|
[1-8]
|
|
|
about | contact Other archives ( Real Estate discussion Medical topics )
|