Every Flavour Beans

“The time has come…to talk of many [technologies].” –Lewis Carroll(’The Walrus and the Carpenter’)
Development Tools. Web Frameworks. GNU/Linux. Nokia N800. Video Encoding.

March 21, 2006

Java on Gentoo

Filed under: GNU/Linux, Gentoo, Java — tabrez @ 3:36 pm

The simplest way to get started with Java development in Gentoo is to install the Blackdown JDK-1.4.2 along with the Eclipse IDE:

sh# emerge blackdown-jdk eclipse-sdk

If you want to install the sun’s version of the jdk instead of the blackdown jdk, you can get the 1.4.2 version of it using:

sh# emerge sun-jdk java-sdk-docs

To install the 1.5 version of the jdk, you need to unmask it first. Add the following two lines to your /etc/portage/package.keywords file:

>=dev-java/sun-jdk-1.5.0 ~x86
>=dev-java/java-sdk-docs-1.5.0 ~x86

Now do the emerge:

sh# emerge sun-jdk java-sdk-docs

You can also install both of these versions at the same time, and then make one of them as the default jdk. If you need java support in other applications too(like web browser etc), then make sure to add the relevant keywords in the /etc/portage/package.use file:

=dev-java/sun-jdk-1.4.2.10-r2 X alsa browserplugin doc examples jce mozilla nsplugin

This also installs the documentation and the examples - remove these words if you don’t to install them. Also change the version number if you are installing the 1.5 version of the jdk.

If you want to use Eclipse IDE to create C++ programs, you need the eclipse-cdt plugin. First unmask it by placing the following line in /etc/portage/package.keywords file:

>=dev-util/eclipse-cdt-2.0 ~x86

Now do the emerge:

sh# emerge eclipse-cdt

More information on installing java 1.5 and eclipse 3.x on Gentoo OS.


If you want to receive future posts by email, enter your email address here:

Related Posts:

  • Java 1.5 and Eclipse in Gentoo - Part II
  • Two Applications For Easy Management Of ‘USE’ Flags In Gentoo
  • How to Speed up Booting Into GNOME - A Gentoo Wiki Tip
  • Installing Sun Java SE 6, Maven 2 and Tomcat 5.5 on Fedora GNU/Linux
  • Moving A GNU/Linux Installation To A Different Partition
  • C# & MonoDevelop (.NET) on Gentoo and Ubuntu
  • A NFS Story on Gentoo

  • Readers who viewed this page, also viewed:


    March 20, 2006

    Installing C++ Boost on Slackware/Zenwalk

    Filed under: C++ Boost, GNU/Linux — tabrez @ 7:52 am

    C++ Boost 1.33.1 on Slackware/Zenwalk:

    1. Download bjam slackware package(tgz) and boost-1_33_1 source package(tar.gz) from the sourceforge.net website:
      bjam for slackware
      c++ boost source package
      (or Google for the latest versions of these two packages)
    2. Save these two files in the home directory and then cd into it:
      sh# cd $HOME
    3. Install bjam(as root):
      sh# installpkg boost-jam-3.1.11-1-linuxx86.tgz
      sh# export PATH=$PATH:/boost-jam-3.1.11-1-linuxx86/
    4. Compile and install boost(as root):
      sh# tar xjvf boost_1_33_1.tar.bz2
      sh# cd boost_1_33_1
      sh# bjam “-sTOOLS=gcc” install

    C++ Boost is now installed. This procedure doesn’t install the files in the default library paths, so compilation commands are slightly longer than they are for Gentoo and Debian/Ubuntu:

    sh# g++ -o first first.cpp -I/usr/local/include/boost-1_33_1
    sh# g++ -o second second.cpp -I/usr/local/include/boost-1_33_1 -L/usr/local/lib -lboost_filesystem-gcc

    You can simplify this by adding the paths of boost folders to gcc library environment variables:

    sh# export CPLUS_INCLUDE_PATH=/usr/local/include/boost-1_33_1
    sh# export LIBRARY_PATH=/usr/local/lib

    The compilation can now be performed using the following simple commands:

    sh# g++ -o first first.cpp
    sh# g++ -o second second.cpp -lboost_filesystem-gcc

    The two ‘export’ commands can be added at the end of the profile file(/etc/profile or $HOME/.bash_profile) to avoid having to type them every time a new shell is opened. Other way to simplify the process would be to create symbolic links to boost library paths in the Slackware standard include paths so that gcc can find them directly.


    If you want to receive future posts by email, enter your email address here:

    Related Posts:

  • Installing C++ Boost 1.34.1 on Slackware/Zenwalk
  • Installing C++ Boost on SuSE and Fedora
  • How to Test C++ Boost Installation
  • C++ Boost Filesystem Library(Part III): Example Programs
  • C++ Boost Filesystem Library(Part II): Example Programs
  • Boost Filesystem Library: Writing Portable C++ Programs to Acess The Filesystem
  • Setting the Stage for C++ Boost

  • Readers who viewed this page, also viewed:


    March 16, 2006

    How to Test C++ Boost Installation

    Filed under: C++ Boost — tabrez @ 4:02 pm

    Once C++ Boost is installed on a machine, the fastest way to test the installation is to use some of the libraries from it in test C++ programs and try to build them. The following two programs can be used for this purpose:
    first.cpp

    C++:
    1. #include<iostream>
    2. #include<boost/any.hpp>
    3. int main()
    4. {
    5.     boost::any a(5);
    6.     a = 7.67;
    7.     std::cout<<boost::any_cast<double>(a)<<std::endl;
    8. }

    Build this program using:

    sh# g++ -o first first.cpp

    The second example needs to be linked to a library file.
    second.cpp

    C++:
    1. #include<iostream>
    2. #include<boost/filesystem/operations.hpp>
    3. namespace bfs=boost::filesystem;
    4. int main()
    5. {
    6.     bfs::path p("second.cpp");
    7.     if(bfs::exists(p))
    8.     std::cout<<p.leaf()<<std::endl;
    9. }

    sh# g++ -o second second.cpp -lboost_filesystem

    If the above two programs build and run with out any problems, then boost is installed and working properly on your system.


    If you want to receive future posts by email, enter your email address here:

    Related Posts:

  • Installing C++ Boost on SuSE and Fedora
  • Installing C++ Boost on Gentoo and Debian/Ubuntu
  • Installing C++ Boost 1.34.1 on Slackware/Zenwalk
  • C++ Boost Filesystem Library(Part III): Example Programs
  • Installing C++ Boost on Slackware/Zenwalk
  • Installing C++ Boost on Microsoft Windows for Visual Studio .NET 2003/2005/Orcas
  • C++ Boost Filesystem Library(Part II): Example Programs

  • Readers who viewed this page, also viewed:


    March 15, 2006

    Installing C++ Boost on Gentoo and Debian/Ubuntu

    Filed under: C++ Boost, GNU/Linux, Gentoo, Ubuntu — tabrez @ 4:00 pm

    Note: Updated the post to note the availability of C++ Boost 1.34.1 libraries for Gentoo and (especially) for Ubuntu 7.10(Gutsy Gibbon).

    1. C++ Boost on Gentoo:

    On the shell prompt, type:

    sh# emerge boost

    This should install the latest version of boost available for Gentoo. Currently 1.33.1 version of Boost Libraries is available for Gentoo. Synchronise('emerge –sync') with the Gentoo portage if your 'emerge -p boost' shows an earlier version. You can install the latest version Boost 1.34.1 by adding the line "dev-libs/boost ~x86" to "/etc/portage/package.keywords" file.

    2. C++ Boost on Debian/Ubuntu:

    • Update2:
      Boost 1.34.1 version is now available. To install the latest version, run the following command(or select these packages from Synaptic Package Manager):

      sh# apt-get   install   libboost-date-time-dev libboost-date-time1.34.1   libboost-dev   libboost-doc   libboost-filesystem-dev   libboost-filesystem1.34.1   libboost-graph-dev   libboost-graph1.34.1   libboost-iostreams-dev   libboost-iostreams1.34.1 libboost-program-options-dev   libboost-program-options1.34.1   libboost-python-dev   libboost-python1.34.1   libboost-regex-dev   libboost-regex1.34.1   libboost-signals-dev   libboost-signals1.34.1   libboost-test-dev   libboost-test1.34.1   libboost-thread-dev   libboost-thread1.34.1  

      Or,

      sh# apt-get install libboost.*-dev libboost-doc libboost.*1.34.1
    • Update1: See the new update above
      Boost 1.33.1 version is now available. To install this version, run the following command(or select these packages from Synaptic Package Manager):

      sh# apt-get   install   libboost-date-time-dev libboost-date-time1.33.1   libboost-dev   libboost-doc   libboost-filesystem-dev   libboost-filesystem1.33.1   libboost-graph-dev   libboost-graph1.33.1   libboost-iostreams-dev   libboost-iostreams1.33.1 libboost-program-options-dev   libboost-program-options1.33.1   libboost-python-dev   libboost-python1.33.1   libboost-regex-dev   libboost-regex1.33.1   libboost-signals-dev   libboost-signals1.33.1   libboost-test-dev   libboost-test1.33.1   libboost-thread-dev   libboost-thread1.33.1  

      Or,

      sh# apt-get install libboost.*-dev libboost-doc libboost.*1.33.1
    • Run the following command(or select these packages from Synaptic Package Manager): See the update above
      sh# apt-get   install   libboost-date-time-dev libboost-date-time1.33.0   libboost-dev   libboost-doc   libboost-filesystem-dev   libboost-filesystem1.33.0   libboost-graph-dev   libboost-graph1.33.0   libboost-iostreams-dev   libboost-iostreams1.33.0 libboost-program-options-dev   libboost-program-options1.33.0   libboost-python-dev   libboost-python1.33.0   libboost-regex-dev   libboost-regex1.33.0   libboost-signals-dev   libboost-signals1.33.0   libboost-test-dev   libboost-test1.33.0   libboost-thread-dev   libboost-thread1.33.0  

      You can use the following simple command to install every library present in Boost that matches the pattern, if you don't want to be selective about which libraries to install:

      sh# apt-get install libboost.*-dev libboost-doc libboost.*1.33.0

    All this mess could be avoided if only Debian/Ubuntu packages could build a meta-package to include all the C++ Boost libraries. One could use the pattern libboost.* but it includes the Boost debug files(libboost-dbg) too.

    3. Build C++ Programs Using Boost Libraries

    Once the boost package is installed, the C++ programs that make use of boost libraries can be built simply like this:

    sh# g++ -o first first.cpp

    If the program needs to be linked to a library(for eg: filesystem library), then specify the name of the library using the -l switch:

    sh# g++ -o second second.cpp -lboost-filesystem

    I will follow this up with the installation procedure for Slackware and RPM based distributions(Done).


    Update:Thanks to Jun Zhang for pointing out the missing packages in the Boost installation command for Ubuntu; the command is now updated.


    If you want to receive future posts by email, enter your email address here:

    Related Posts:

  • Installing C++ Boost on SuSE and Fedora
  • C++ Boost Filesystem Library(Part III): Example Programs
  • Installing C++ Boost on Slackware/Zenwalk
  • C++ Boost Filesystem Library(Part II): Example Programs
  • Installing C++ Boost 1.34.1 on Slackware/Zenwalk
  • Boost Filesystem Library: Writing Portable C++ Programs to Acess The Filesystem
  • How to Test C++ Boost Installation

  • Readers who viewed this page, also viewed:


    March 9, 2006

    Setting the Stage for C++ Boost

    Filed under: C++ Boost — tabrez @ 2:57 pm

    C++ is a modern language. There is a difference between calling a programming language to be “still applicable” and calling it to be “modern”. “still applicable” languages exist because they are efficient enough to solve the problems for which they were originally created and that such problems still exist. Modern languages, on the contrary, solve the problems of today, and solve them efficiently. For a language that was created in 1970s, when today’s problems were unimaginable, C++ grew with the time, gone through constant modifications so that it can better reflect the requirements of every age. One excellent proof of the constant improvements that C++ language has undergone to remain competent enough to meet the new challenges is the C++ Standard Library.

    To see the tremendous improvement in the productivity levels obtained by using the higher-level utilities of C++ standard library, consider the following examples: the first one reads a set of names from the standard input, sorts them in the alphabetical order, and then prints them out to the standard output:

    C++:
    1. vector<string> names;
    2. string name;
    3. while(cin<<name)
    4.     names.push_back(name);
    5. sort(names.begin(), names.end());
    6. copy(names.begin(), names.end(), ostream_insterter(cout, "\n"));

    Lines 2, 3, and 4 can be further simplified, but I wanted them to be that way. Consider another example, which checks whether a string is a palendrome or not:

    C++:
    1. compare(pal.begin(), pal.end(), pal.rbegin());

    The C++ Standard Library : A Tutorial and ReferenceNo, there isn’t anything missing out there. That’s all the code that you need to check for a palendrome. Try writing these two samples without using the C++ standard library, and you will see the difference. Its not just a time-consuming effort to write them in C-style of programming but it also needs more investments in terms of testing and the maintenance jobs. Still a large number of C++ programmers do not make sufficient use of it. But those who do, look at C++ language from a completely different perspective - as a modern and a highly productive software development tool. Like, there hardly would be any memory management chores to do by the programmer, except when creating the low-level libraries.

    C++ Templates: The Complete GuideWhen one gets used to this style of software development with C++ - making use of its standard library - one starts to wish for more such utilities that could solve their everyday problems equally effectively. Changes to the C++ language/standard library are not made very frequently in order to provide a level of stability to the it. The void thus created has been partially addressed by another excellent collection of quality libraries, called C++ Boost Libraries. Its not an official part of the C++ language, but its portable, efficient, rich in functionality and is very close to the philosphy of standard C++ library. Infact, many of the new additions proposed for the next version of C++ standard library are picked from the Boost libraries. A large number of C++ programmers have already started to make use of these libraries, making it unofficially official part of the C++ language ;)

    Some example libraries present in Boost are: filesystem access library, thread libarary, network socket library, regular expression library, lambda template library etc. There is a large set of collections, algorithms and iterators too. Look at the complete list of libraries if you are interested: there is a list according to the categories of the libraries and an alphabetical list.I will soon follow this up with a few examples using some of these C++ Boost libraries.



    If you want to receive future posts by email, enter your email address here:

    Related Posts:

  • Boost Filesystem Library: Writing Portable C++ Programs to Acess The Filesystem
  • Installing C++ Boost on SuSE and Fedora
  • C++ Boost Filesystem Library(Part II): Example Programs
  • How to Test C++ Boost Installation
  • Installing C++ Boost on Slackware/Zenwalk
  • Installing C++ Boost 1.34.1 on Slackware/Zenwalk
  • Getting Started with C++ TR1 Libraries

  • Readers who viewed this page, also viewed:


    Next Page »

    Copyright (c) 2006, 2007 Tabrez Iqbal.
    Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. Verbatim copying and distribution of this entire article is permitted in any medium without royalty provided this notice is preserved. A copy of the license is included in the section entitled "GNU Free Documentation License".


    Powered by WordPress
    This website is hosted by Dreamhost