86 lines
2.5 KiB
Bash
86 lines
2.5 KiB
Bash
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header:
|
|
# /var/cvsroot/gentoo-x86/app-office/taskjuggler/taskjuggler-2.4.3.ebuild,v 1.0 2009/09/30 22:31:13 lalebarde Exp $
|
|
|
|
EAPI=1
|
|
|
|
inherit eutils qt3 flag-o-matic
|
|
|
|
DESCRIPTION="project management tool for Linux and UNIX system-based operating systems"
|
|
SRC_URI="http://www.taskjuggler.org/download/${P}.tar.bz2"
|
|
HOMEPAGE="http://taskjuggler.org"
|
|
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
|
|
IUSE="arts kde"
|
|
SLOT="0"
|
|
|
|
# Otherwise compilation will break for amd64 or when using -Os
|
|
DEPEND="x11-libs/qt:3
|
|
kde? ( kde-base/kdelibs:3.5
|
|
|| ( kde-base/libkdepim:3.5 kde-base/kdepim:3.5 )
|
|
|| ( kde-base/libkcal:3.5 kde-base/kdepim:3.5 ) )
|
|
app-text/openjade
|
|
dev-libs/libxslt
|
|
>=dev-perl/Class-MethodMaker-2.02
|
|
dev-perl/Date-Calc
|
|
dev-perl/PostScript-Simple
|
|
dev-perl/XML-Parser
|
|
net-print/poster"
|
|
|
|
src_compile() {
|
|
# 'db2html' does not know '--xencoding utf8' and is called 'docbook2html' in gentoo
|
|
# also 'db2ps --pdf' should be 'docbook2pdf' and 'db2ps' should be 'docbook2ps'
|
|
# see http://lists.suse.com/archive/taskjuggler-devel/2005-Mar/0011.html
|
|
sed -i -e 's/--xencoding utf-8//g' docs/en/Makefile.*
|
|
sed -i -e 's/db2ps --pdf/docbook2pdf/g' docs/en/Makefile.*
|
|
sed -i -e 's/db2ps/docbook2ps/g' docs/en/Makefile.*
|
|
|
|
# Need to fake out QT or we'll get sandbox probles
|
|
# from http://www.gentoo.org/cgi-bin/viewcvs.cgi/dev-db/tora/tora-1.3.13.ebuild?r1=1.2&r2=1.3
|
|
REALHOME="$HOME"
|
|
mkdir -p "$T"/fakehome/.kde
|
|
mkdir -p "$T"/fakehome/.qt
|
|
export HOME="$T/fakehome"
|
|
addwrite "${QTDIR}/etc/settings"
|
|
|
|
local myconf
|
|
myconf="--with-kde-support"
|
|
use kde \
|
|
&& myconf="${myconf}=yes" \
|
|
|| myconf="${myconf}=no"
|
|
|
|
use kde || myconf="${myconf} --with-ical-support=no"
|
|
|
|
myconf="${myconf} `use_with arts`"
|
|
|
|
# http://bugs.gentoo.org/show_bug.cgi?id=35725#c36
|
|
filter-flags -funsafe-math-optimizations -ffast-math
|
|
|
|
econf \
|
|
${myconf} \
|
|
|| die "configure failed"
|
|
|
|
# don't build docs, fails in docbook2html and docbook2pdf...
|
|
sed -i -e 's/ docs / /g' Makefile
|
|
|
|
# Delete the failing tests
|
|
rm -r "${WORKDIR}/${PF}"/TestSuite/TJX-Reports/
|
|
rm "${WORKDIR}/${PF}"/TestSuite/Syntax/Correct/Timezone.tjp
|
|
rm "${WORKDIR}/${PF}"/TestSuite/Syntax/Errors/Timezone.tjp
|
|
|
|
emake || die "emake failed"
|
|
}
|
|
|
|
src_install() {
|
|
# dodir /usr/share/apps/katepart/syntax
|
|
# doins Contrib/kate/taskjuggler.xml || die
|
|
make install DESTDIR="${D}" || die "install failed"
|
|
if use kde; then
|
|
cd Contrib/kate
|
|
make install DESTDIR="${D}" || die "install kate-addons failed"
|
|
fi
|
|
}
|