On Mon, 21 Nov 2011 17:31:15 -0600 Bruce Dubbs <[email protected]> wrote:
> Jeremy Henty wrote: > > Bruce Dubbs wrote: > > > >> I can probably write instructions to move all this stuff around to the > >> proper locations, > > OK, this is what I have: > > ./configure --prefix=/usr \ > --disable-native-texlive-build \ > --enable-shared \ > --without-luatex \ > --enable-mktextex-default \ > --with-banner-add=" - BLFS" && > make > > make check > > make DESTDIR=$PWD/livetex-tmp install && > rm -v $PWD/livetex-tmp/usr/bin/man && > for FN in $PWD/livetex-tmp/usr/bin `find -type l`; do > if [ `readlink $FN | grep "\.\./texmf"` ]; then should that be grep -q > ln -svf `readlink $FN | sed 's|\.\./texmf|../share/texmf|'` $FN > fi > done && > unset FN > > As root: > > cp -dRv livetex-tmp//usr/include/* /usr/include && > cp -dRv livetex-tmp/usr/lib/* /usr/lib && > cp -dRv livetex-tmp/usr/bin/* /usr/bin && > cp -dRv livetex-tmp/usr/doc/man/* /usr/share/man && I don't get any livetex-tmp/usr/doc directory, however, there are lots of man pages in livetex-tmp/usr/texmf/doc/man so this works for me: cp -dRv livetex-tmp/usr/texmf/doc/man/* /usr/share/man && > > tar -xf ../texlive-20110705-texmf.tar.xz -C /usr/share \ > --strip-components=1 && > > cp -dRv livetex-tmp/usr/texmf /usr/share/texmf && At this point I ran into problems: cp: cannot create regular file `/usr/share/texmf/texmf/web2c/fmtutil.cnf': No space left on device Oh dear. I'll have a look at the rest in a bit. Andy -- http://linuxfromscratch.org/mailman/listinfo/blfs-dev FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
