# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="An open-source GIS with raster and vector functionality" HOMEPAGE="http://grass.itc.it/" SRC_URI="http://grass.itc.it/grass60/source/${P}.tar.gz http://grass.meteo.uni.wroc.pl/grass60/source/${P}.tar.gz http://grass.ibiblio.org/grass60/source/${P}.tar.gz" LICENSE="GPL-2" SLOT="6" KEYWORDS="~x86" IUSE="tcltk png jpeg tiff postgres odbc motif mysql blas lapack fftw truetype opengl readline" RESTRICT=nostrip DEPEND=">=sys-devel/make-3.80 >=sys-libs/zlib-1.1.4 >=sys-devel/flex-2.5.4a >=sys-devel/bison-1.35 >=sys-libs/ncurses-5.3 >=sys-libs/gdbm-1.8.0 >=sys-devel/gcc-3.2.2 sys-apps/man >=sci-libs/proj-4.4.7 blas? ( virtual/blas ) fftw? ( =sci-libs/fftw-2* ) >=sci-libs/gdal-1.1.9 gd? ( >=media-libs/gd-1.8.3 ) jpeg? ( media-libs/jpeg ) lapack? ( virtual/lapack ) motif? ( x11-libs/openmotif ) mysql? ( dev-db/mysql ) odbc? ( >=dev-db/unixODBC-2.0.6 ) png? ( >=media-libs/libpng-1.2.2 ) postgres? ( >=dev-db/postgresql-7.3 ) readline? ( sys-libs/readline ) tcltk? ( >=dev-lang/tcl-8.3.4 >=dev-lang/tk-8.3.4 ) tiff? ( >=media-libs/tiff-3.5.7 ) truetype? ( >=media-libs/freetype-2.0 ) virtual/x11" src_unpack() { unpack ${A} cd ${S} epatch rpm/fedora/grass-readline.patch } src_compile() { # ./configure will not detect C++ compiler (atleast for 6.0.0), but in Gentoo we always have one... # Oh, yeah, GDAL is optional, but Grass 6.0 will fail to build without it ;) MYCONF=" --with-cxx --with-gdal" # Grass expects freetype to be in freetype dir, but it is in freetype2/freetype if use truetype; then MYCONF="${MYCONF} --with-freetype-includes=/usr/include/freetype2/ " fi use mysql \ && MYCONF="${MYCONF} --with-mysql --with-mysql-includes=/usr/include/mysql --with-mysql-libs=/usr/lib/mysql" \ || MYCONF="${MYCONF} --without-mysql" if use opengl; then MYCONF="${MYCONF} --with-opengl-libs=/usr/lib/opengl/xorg-x11/lib/" fi ./configure \ `use_with tcltk tcltk` \ `use_with postgres postgres` \ `use_with motif motif` \ `use_with blas blas` \ `use_with lapack lapack` \ `use_with fftw fftw` \ `use_with truetype freetype` \ `use_with jpeg jpeg` \ `use_with png png` \ `use_with tiff tiff` \ `use_with odbc odbc` \ `use_enable amd64 64bit` \ `use_with opengl opengl` \ `use_with gd` \ `use_with readline` \ ${MYCONF} || die "Error: configure failed!" emake -j1 || die "Error: emake failed!" } src_install() { make install \ prefix=${D}/usr UNIX_BIN=${D}/usr/bin BINDIR=${D}/usr/bin PREFIX=${D}/usr \ || die "Error: make install failed!" sed -i "s:^GISBASE=.*$:GISBASE=/usr/grass60:" \ ${D}/usr/bin/grass60 # Install grass always in one directory # This is required for GRASS dependent ebuilds (ie. QGIS) mv ${D}/usr/${P} ${D}/usr/grass60 }