Re: [blfs-support] Languages not appearing in KDE-3.14.2

2014-10-21 Thread Fernando de Oliveira
On 20-10-2014 22:31, Bruce Dubbs wrote:
 Fernando de Oliveira wrote:



 I did slightly different, including in the kde/core/config.xml page
 Starting KDE, and referring to the kde/add/add-pkgs.xml for build
 instructions. If you don't like, please tell me, and I will move it
 there.

 The reason is that I believe the users want from start a DE in their own
 languages. Subsequent packages wil then appear localized also, as will
 hekde-download-http;kde-version;/src/kde-l10n/lp texts.
 
 That's fine.  The only change I'd recommend is to actually display the
 http url and drop the ftp one.
 
 ulink url=kde-download-http;kde-version;/src/kde-l10n/
 kde-download-http;kde-version;/src/kde-l10n//ulink

OK. Will do it later today.

I used like that because it is the form used in kde/add/add-pkgs.xml.
Should I change there, too?


-- 
[]s,
Fernando
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-support] configure: error: expected an absolute directory name for --prefix: PREFIX

2014-10-21 Thread spiky


On 21/10/14 12:53, Sainadh J wrote:

Hello,
i follows BLFS 7.6 book,when i try to build xorg fonts in 24th chapter 
i getting the following error given that below


make: *** No targets specified and no makefile found.  Stop.
make: *** No rule to make target 'install'.  Stop.
/sources/xc/font
/sources/xc/font/font-winitzki-cyrillic-1.0.3 /sources/xc/font
configure: WARNING: unrecognized options: --disable-static
configure: error: expected an absolute directory name for --prefix: 
PREFIX

make: *** No targets specified and no makefile found.  Stop.
make: *** No rule to make target 'install'.  Stop.
/sources/xc/font
/sources/xc/font/font-xfree86-type1-1.0.4 /sources/xc/font
configure: WARNING: unrecognized options: --disable-static
configure: error: expected an absolute directory name for --prefix: 
PREFIX

make: *** No targets specified and no makefile found.  Stop.
make: *** No rule to make target 'install'.  Stop.
/sources/xc/font


how to solve this issue please help me.thanks in advance.

Did you leave the enviroment reboot etc?

check echo $XORG_PREFIX
and XORG_CONFIG

-- 
http://lists.linuxfromscratch.org/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-support] configure: error: expected an absolute directory name for --prefix: PREFIX

2014-10-21 Thread Armin K.
On 10/21/2014 02:40 PM, spiky wrote:
 
 On 21/10/14 12:53, Sainadh J wrote:
 Hello,
 i follows BLFS 7.6 book,when i try to build xorg fonts in 24th chapter
 i getting the following error given that below

 make: *** No targets specified and no makefile found.  Stop.
 make: *** No rule to make target 'install'.  Stop.
 /sources/xc/font
 /sources/xc/font/font-winitzki-cyrillic-1.0.3 /sources/xc/font
 configure: WARNING: unrecognized options: --disable-static
 configure: error: expected an absolute directory name for --prefix:
 PREFIX
 make: *** No targets specified and no makefile found.  Stop.
 make: *** No rule to make target 'install'.  Stop.
 /sources/xc/font
 /sources/xc/font/font-xfree86-type1-1.0.4 /sources/xc/font
 configure: WARNING: unrecognized options: --disable-static
 configure: error: expected an absolute directory name for --prefix:
 PREFIX
 make: *** No targets specified and no makefile found.  Stop.
 make: *** No rule to make target 'install'.  Stop.
 /sources/xc/font


 how to solve this issue please help me.thanks in advance.

 Did you leave the enviroment reboot etc?
 check echo $XORG_PREFIX
 and XORG_CONFIG
 

He literally copy/pasted the /etc/profile.d/xorg.sh file without
changing the XORG_PREFIX value.

-- 
Note: My last name is not Krejzi.



signature.asc
Description: OpenPGP digital signature
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-support] configure: error: expected an absolute directory name for --prefix: PREFIX

2014-10-21 Thread Fernando de Oliveira
On 21-10-2014 08:53, Sainadh J wrote:
 Hello,
 i follows BLFS 7.6 book,when i try to build xorg fonts in 24th chapter i 
 getting the following error given that below
 
 
 make: *** No targets specified and no makefile found.  Stop.
 make: *** No rule to make target 'install'.  Stop.

These two lines mean that configure has not run successfully.

 /sources/xc/font
 /sources/xc/font/font-winitzki-cyrillic-1.0.3 /sources/xc/font

This is before the last font, so, you must have many more errors before.

 configure: WARNING: unrecognized options: --disable-static

This is not a problem, it is in XORG_CONFIG for some other packages.

 configure: error: expected an absolute directory name for --prefix: PREFIX

This means that you probably used

export XORG_PREFIX=PREFIX

and

cat  /etc/profile.d/xorg.sh  EOF
XORG_PREFIX=PREFIX
XORG_CONFIG=--prefix=$XORG_PREFIX --sysconfdir=/etc
--localstatedir=/var --disable-static
export XORG_PREFIX XORG_CONFIG
EOF
chmod 644 /etc/profile.d/xorg.sh

without replacing PREFIX by an actual value, e.g. /usr

If your intention is to build Corg at /usr, those commands should be:

export XORG_PREFIX=/usr

and

cat  /etc/profile.d/xorg.sh  EOF
XORG_PREFIX=/usr
XORG_CONFIG=--prefix=$XORG_PREFIX --sysconfdir=/etc
--localstatedir=/var --disable-static
export XORG_PREFIX XORG_CONFIG
EOF
chmod 644 /etc/profile.d/xorg.sh

If you have done correctly, there is another possibility: you are
building as root user and /etc/profile is not being sourced.

 how to solve this issue please help me.thanks in advance.

Please, from the same user you got the errors, send us the output of

whoami

and

echo $XORG_PREFIX


Please, *do not do the following* before others confirm what I am writing:


If the this last command gives nothing probably you need to fix xorg
from the beginning. And everything was installed at /usr/local, which
gives a problem, and I am not sure, but perhaps you would need to remove
the Xorg packages manually, before restarting.

BLFS does not recommend building as root.

All this information is at

http://www.linuxfromscratch.org/blfs/view/7.6/x/xorg7.html

and a note in this pages sends to

http://www.linuxfromscratch.org/blfs/view/7.6/postlfs/profile.html


-- 
[]s,
Fernando
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-support] configure: error: expected an absolute directory name for --prefix: PREFIX

2014-10-21 Thread Sainadh J






On Tuesday, 21 October 2014 6:19 PM, Fernando de Oliveira fam...@yahoo.com.br 
wrote:
 


On 21-10-2014 08:53, Sainadh J wrote:
 Hello,
 i follows BLFS 7.6 book,when i try to build xorg fonts in 24th chapter i 
 getting the following error given that below
 
 
 make: *** No targets specified and no makefile found.  Stop.
 make: *** No rule to make target 'install'.  Stop.

These two lines mean that configure has not run successfully.

 /sources/xc/font
 /sources/xc/font/font-winitzki-cyrillic-1.0.3 /sources/xc/font

This is before the last font, so, you must have many more errors before.

 configure: WARNING: unrecognized options: --disable-static

This is not a problem, it is in XORG_CONFIG for some other packages.

 configure: error: expected an absolute directory name for --prefix: PREFIX

This means that you probably used

export XORG_PREFIX=PREFIX

and

cat  /etc/profile.d/xorg.sh  EOF
XORG_PREFIX=PREFIX
XORG_CONFIG=--prefix=$XORG_PREFIX --sysconfdir=/etc
--localstatedir=/var --disable-static
export XORG_PREFIX XORG_CONFIG
EOF
chmod 644 /etc/profile.d/xorg.sh

without replacing PREFIX by an actual value, e.g. /usr

If your intention is to build Corg at /usr, those commands should be:

export XORG_PREFIX=/usr

and

cat  /etc/profile.d/xorg.sh  EOF
XORG_PREFIX=/usr
XORG_CONFIG=--prefix=$XORG_PREFIX --sysconfdir=/etc
--localstatedir=/var --disable-static
export XORG_PREFIX XORG_CONFIG
EOF
chmod 644 /etc/profile.d/xorg.sh

If you have done correctly, there is another possibility: you are
building as root user and /etc/profile is not being sourced.

 how to solve this issue please help me.thanks in advance.

Please, from the same user you got the errors, send us the output of

whoami

and

echo $XORG_PREFIX


Please, *do not do the following* before others confirm what I am writing:


If the this last command gives nothing probably you need to fix xorg
from the beginning. And everything was installed at /usr/local, which
gives a problem, and I am not sure, but perhaps you would need to remove
the Xorg packages manually, before restarting.

BLFS does not recommend building as root.

All this information is at

http://www.linuxfromscratch.org/blfs/view/7.6/x/xorg7.html

and a note in this pages sends to

http://www.linuxfromscratch.org/blfs/view/7.6/postlfs/profile.html



-- 
[]s,
Fernando
-- 




hello,when completing installation of xorg applications i exit from the 
subshell then i go to the root user again i enterd choorot environment then 
continue to forther installtion i.e xorg Fontswhen i try to install i 
getting the error which is previously given. my xorg prefix is 
/usr.when i enter whoami it says root
 I
 can't getting the above error when installing the xorg applications and
 xorg libraries.i hope this information is help for you guide me.Thanks 
in advance.


--Sainadh j-- 
http://lists.linuxfromscratch.org/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-support] Languages not appearing in KDE-3.14.2

2014-10-21 Thread Fernando de Oliveira
On 21-10-2014 12:47, Bruce Dubbs wrote:
 Fernando de Oliveira wrote:
 On 20-10-2014 22:31, Bruce Dubbs wrote:
 Fernando de Oliveira wrote:



 I did slightly different, including in the kde/core/config.xml page
 Starting KDE, and referring to the kde/add/add-pkgs.xml for build
 instructions. If you don't like, please tell me, and I will move it
 there.

 The reason is that I believe the users want from start a DE in their
 own
 languages. Subsequent packages wil then appear localized also, as will
 hekde-download-http;kde-version;/src/kde-l10n/lp texts.

 That's fine.  The only change I'd recommend is to actually display the
 http url and drop the ftp one.

 ulink url=kde-download-http;kde-version;/src/kde-l10n/
 kde-download-http;kde-version;/src/kde-l10n//ulink

 OK. Will do it later today.

 I used like that because it is the form used in kde/add/add-pkgs.xml.
 Should I change there, too?
 
 I hadn't noticed that.  Yes, please change it there also.

Thanks.

Both fixed at r14697.


-- 
[]s,
Fernando
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-support] configure: error: expected an absolute directory name for --prefix: PREFIX

2014-10-21 Thread Sainadh J






On Tuesday, 21 October 2014 8:07 PM, Fernando de Oliveira fam...@yahoo.com.br 
wrote:
 


On 21-10-2014 10:22, Sainadh J wrote:
 On Tuesday, 21 October 2014 6:19 PM, Fernando de Oliveira 
 fam...@yahoo.com.br wrote:
 On 21-10-2014 08:53, Sainadh J wrote:

 i follows BLFS 7.6 book,when i try to build xorg fonts in 24th chapter i 
 getting the following error given that below


 make: *** No targets specified and no makefile found.  Stop.
 make: *** No rule to make target 'install'.  Stop.
 
 These two lines mean that configure has not run successfully.
 
 /sources/xc/font
 /sources/xc/font/font-winitzki-cyrillic-1.0.3 /sources/xc/font
 
 This is before the last font, so, you must have many more errors before.
 
 configure: WARNING: unrecognized options: --disable-static
 
 This is not a problem, it is in XORG_CONFIG for some other packages.
 
 configure: error: expected an absolute directory name for --prefix: PREFIX
 
 This means that you probably used

export XORG_PREFIX=PREFIX


 hello,when completing installation of xorg applications i exit 
 from the subshell then i go to the root user again i enterd choorot
 environment then
 continue to forther installtion i.e xorg Fontswhen i try to
 install i getting the error which is previously given. my xorg prefix
 is /usr.when i enter whoami it says root I can't getting the
 above error when installing the xorg applications and xorg
 libraries.i hope this information is help for you guide me.Thanks in
 advance.

I understand that before you exited chroot, you had already installed
applications and libraries, is that right?

When you enter chroot again, I think (note that I am not completely
sure) that you need to define XORG_PREFIX and XORG_CONFIG again. But I
don't understand how you get WARNING: unrecognized options:
--disable-static, which seems that XORG_CONFIG is set, but XORG_PREFIX
is not.

Again, when you run (one after the other):

echo $XORG_PREFIX

find / -type d -name X11

what do you get?

Please, if possible, copy what is in the terminal and paste into the
email, including the commands.



Hello,
yes your right,before i exited chroot i had alredy installed applications and 
libraries.
again your right when i define xorg prefix and config after entering chroot i 
installed xorg fonts successfully but the warning still apper the installation 
of xorg fonts output is given bellow you can figure out the configure warning 
in the below output:

checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for root directory for font files... /usr/share/fonts/X11
checking for directory for Type1 files... ${FONTROOTDIR}/Type1
checking for fc-cache... /usr/bin/fc-cache
checking for mkfontdir... /usr/bin/mkfontdir
checking for mkfontscale... /usr/bin/mkfontscale
configure: creating ./config.status
config.status: creating Makefile
config.status: executing depfiles commands
configure: WARNING: unrecognized options: --disable-static
make: Nothing to be done for 'all'.
make[1]: Entering directory '/sources/xc/font/font-xfree86-type1-1.0.4'
make[1]: Nothing to be done for 'install-exec-am'.
test -z /usr/share/fonts/X11/Type1 || /bin/mkdir -p 
/usr/share/fonts/X11/Type1
 /usr/bin/install -c -m 644 cursor.pfa '/usr/share/fonts/X11/Type1'
make  install-data-hook
make[2]: Entering directory '/sources/xc/font/font-xfree86-type1-1.0.4'
/usr/bin/mkfontscale /usr/share/fonts/X11/Type1
/usr/bin/mkfontdir /usr/share/fonts/X11/Type1
/usr/bin/fc-cache /usr/share/fonts/X11/Type1
make[2]: Leaving directory '/sources/xc/font/font-xfree86-type1-1.0.4'
make[1]: Leaving directory '/sources/xc/font/font-xfree86-type1-1.0.4'
/sources/xc/font

here is find / -type d -name X11 output is given below:

root [ / ]# find / -type d -name X11
/etc/X11
/usr/include/X11
/usr/lib/X11
/usr/share/fonts/X11
/usr/share/X11

Thanks now my problem is solved.but i can't find out i.e configure warning if 
you know  what was i make mistake please help me.thanks in advance.

--sainadh j-- 
http://lists.linuxfromscratch.org/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-support] configure: error: expected an absolute directory name for --prefix: PREFIX

2014-10-21 Thread Ken Moffat
On Wed, Oct 22, 2014 at 01:13:35AM +0800, Sainadh J wrote:
 configure: WARNING: unrecognized options: --disable-static
 and
 Thanks now my problem is solved.but i can't find out i.e configure warning if 
 you know  what was i make mistake please help me.thanks in advance.
 
 --sainadh j

 I have seen people telling you that *that* warning is nothing to
worry about : for libraries, it stops unwanted static libraries, for
fonts it is just a harmless warning.

ĸen
-- 
Nanny Ogg usually went to bed early. After all, she was an old lady.
Sometimes she went to bed as early as 6 a.m.
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page