Page 1 of 3 123 LastLast
Results 1 to 10 of 25

Thread: Howto: Install kile without tetex

  1. #1
    Join Date
    Nov 2005
    Location
    127.0.0.1
    Beans
    354
    Distro
    Ubuntu Development Release

    Arrow Howto: Install kile without tetex

    Tips to install kile from the source without tetex....

    Information for this comes from kile webpage.

    Kile is an excellent frontend to be used with TeXLive (the most comprehensive LaTeX pack). But if you install it using apt-get or synaptic, tetex will also be installed. If you desire not to use tetex then this will help...

    Actually, compiling from sourse is easy. But good to know what packages/libs we need to avoid running into problems. I thought I will share my experience with you...

    Enable all the repositories required. If the installation was a fresh one then uncomment all the debs and deb-srcs..

    First install all the libs needed for installing kile, tools for compiling and 'make' process, etc
    Code:
    sudo apt-get install build-essential kdelibs-bin kdebase-dev libqt3-mt-dev
    These will bring many other libs with them that are required.

    So we have all the tools now. Download the latest source here
    unpack it and move
    Code:
    tar -jxf kile-1.9.tar.bz2
    sudo mv kile-1.9 /usr/local
    then
    Code:
    cd /usr/local/kile-1.9
    Now the compiliation:
    find out where the kde-config is, at the terminal
    Code:
    kde-config --prefix
    do
    Code:
    ./configure --prefix=/output/from/above
    In my case it gave me '/usr'.
    if it is successful then run
    Code:
    make
    sudo make install
    It should be placed in Applications>Office. Or
    Alt+F2 --> kile...will launch it...

    This is just a reference...Eventhough it brings up many KDE stuff (I use Gnome), I felt its much better/space-saving than all the tetex installations. I use texlive, tips for which are provided in my signature.

    Hope this is of some help...Thanks
    Last edited by neoflight; March 23rd, 2006 at 10:50 PM.

  2. #2
    Join Date
    Mar 2006
    Beans
    60
    Distro
    Ubuntu 6.06

    Re: Howto: Install kile without tetex

    it certainly brings up problems when trying to do upgrades...!!! gnome user might get upset in updating all the kde stuff...
    sudo apt-get install tobacco

  3. #3
    Join Date
    Sep 2005
    Location
    The Hague, Netherlands
    Beans
    105
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: Howto: Install kile without tetex

    Tnx for this how to; the first attempt failed but that was my fault
    Last edited by dada1958; June 2nd, 2006 at 06:43 PM.

  4. #4
    Join Date
    Jul 2005
    Location
    Italy
    Beans
    42
    Distro
    Kubuntu 6.10 Edgy

    Re: Howto: Install kile without tetex

    good
    Linux user 401171 - The dog of my avatar is Billy. It is passed away on July 10, 2006. RIP beloved Billy (it is written in italian language, but look at the pictures... )

  5. #5
    Join Date
    Nov 2005
    Location
    127.0.0.1
    Beans
    354
    Distro
    Ubuntu Development Release

    Re: Howto: Install kile without tetex

    thanks a lot... i think its working ok with dapper....

  6. #6
    Join Date
    Jul 2005
    Location
    Italy
    Beans
    42
    Distro
    Kubuntu 6.10 Edgy

    Wink Re: Howto: Install kile without tetex

    Quote Originally Posted by neoflight
    thanks a lot... i think its working ok with dapper....
    yes, i'm using dapper8)
    Linux user 401171 - The dog of my avatar is Billy. It is passed away on July 10, 2006. RIP beloved Billy (it is written in italian language, but look at the pictures... )

  7. #7
    Join Date
    Apr 2005
    Beans
    7

    Re: Howto: Install kile without tetex

    my solution was to install a dummy package that provides tetex. so you can install all the other packages that depends on tetex (like auctex) without installing tetex. then i installed TeXLive.

  8. #8
    Join Date
    Feb 2006
    Beans
    60

    Re: Howto: Install kile without tetex

    I tried to install Kile following this howto but it always failed during the installation giving the following error
    Code:
    trying to overwrite `/usr/share/apps/katepart/syntax/bibtex.xml', which is also in package kdelibs-data
    Please help.

    Quote Originally Posted by troy7777 View Post
    my solution was to install a dummy package that provides tetex. so you can install all the other packages that depends on tetex (like auctex) without installing tetex. then i installed TeXLive.
    How do I install the dummy package?

    Thank you.

  9. #9
    Join Date
    Apr 2005
    Beans
    7

    Re: Howto: Install kile without tetex

    How do I install the dummy package?
    i got the instruction from this forum, too, a while back. it wasn't specifically tetex. unfortunately, i could not find the original post. so, credit goes to the original poster.

    here's how i did it. i'm assuming you are doing all these in a terminal window.

    1. you need to install the equivs package. i think it's in universe, so activate the necessary line in your sources.list file. then do:

    Code:
    sudo apt-get install equivs
    2. create a text file called tetex-dummy.control and put the following:

    Code:
    Section: TeX Authoring
    Package: tetex-dummy
    Provides: tetex-base, tetex-bin, tetex-extra, tetex-doc, tetex-extra, tex-common
    Description: Dummy package for tetex so that TeXLive can be installed.
    3. create the package.

    Code:
    equivs-build tetex-dummy.control
    this will create, among other things, a tetex-dummy-xxx.deb

    4. install the deb file you created:

    Code:
    sudo dpkg -i tetex-dummy-xxx.deb
    5. install kile and TeXLive!

    hope this helps.

  10. #10
    Join Date
    Nov 2005
    Location
    127.0.0.1
    Beans
    354
    Distro
    Ubuntu Development Release

    Re: Howto: Install kile without tetex

    Quote Originally Posted by troy7777 View Post
    i got the instruction from this forum, too, a while back. it wasn't specifically tetex. unfortunately, i could not find the original post. so, credit goes to the original poster.

    here's how i did it. i'm assuming you are doing all these in a terminal window.

    1. you need to install the equivs package. i think it's in universe, so activate the necessary line in your sources.list file. then do:

    Code:
    sudo apt-get install equivs
    2. create a text file called tetex-dummy.control and put the following:

    Code:
    Section: TeX Authoring
    Package: tetex-dummy
    Provides: tetex-base, tetex-bin, tetex-extra, tetex-doc, tetex-extra, tex-common
    Description: Dummy package for tetex so that TeXLive can be installed.
    3. create the package.

    Code:
    equivs-build tetex-dummy.control
    this will create, among other things, a tetex-dummy-xxx.deb

    4. install the deb file you created:

    Code:
    sudo dpkg -i tetex-dummy-xxx.deb
    5. install kile and TeXLive!

    hope this helps.
    excellent....i will try this and will let u know.....it might be a better idea than compiling from the source... thanks

Page 1 of 3 123 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •