# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/kdelibs-3.2.0_beta1.ebuild,v 1.5 2003/11/14 20:07:39 seemant Exp $ inherit kde MY_PV=3.1.93 S=${WORKDIR}/${PN}-${MY_PV} IUSE="alsa cups ipv6 ssl" DESCRIPTION="KDE libraries needed by all kde programs" KEYWORDS="~x86" HOMEPAGE="http//www.kde.org/" SLOT="3.2" LICENSE="GPL-2 LGPL-2" SRC_URI="mirror://kde/unstable/${MY_PV}/src/${PN}-${MY_PV}.tar.bz2" # kde.eclass has kdelibs in DEPEND, and we can't have that in here. # so we recreate the entire DEPEND from scratch. DEPEND="dev-lang/perl media-libs/audiofile app-arch/bzip2 dev-libs/libxslt dev-libs/libpcre dev-libs/libxml2 ssl? ( dev-libs/openssl ) alsa? ( media-libs/alsa-lib virtual/alsa ) cups? ( net-print/cups ) media-libs/tiff app-admin/fam-oss app-text/ghostscript media-libs/libart_lgpl sys-devel/gettext ~kde-base/arts-1.2.0_beta1" newdepend "/autotools" RDEPEND="$RDEPEND app-text/sgml-common cups? ( net-print/cups ) doc? ( app-doc/doxygen ) dev-lang/python" qtver-from-kdever ${PV} need-qt $selected_version need-autoconf 2.5 set-kdedir ${PV} src_unpack() { kde_src_unpack cd ${S} && make -f admin/Makefile.common && aclocal cd ${S}/kio/misc/kpac cp Makefile.am Makefile.am.orig sed -e 's: $(bindir): $(DESTDIR)/$(bindir):g' Makefile.am.orig > Makefile.am rm Makefile.am.orig use alpha && cd ${S} && epatch ${FILESDIR}/${P}-kjs-alphaev6-gcc3-workaround.patch } src_compile() { kde_src_compile myconf myconf="$myconf --with-distribution=Gentoo --enable-libfam --enable-dnotify" use ipv6 || myconf="$myconf --with-ipv6-lookup=no" use ssl && myconf="$myconf --with-ssl-dir=/usr" || myconf="$myconf --without-ssl" use alsa && myconf="$myconf --with-alsa" || myconf="$myconf --without-alsa" use cups && myconf="$myconf --enable-cups" || myconf="$myconf --disable-cups" use x86 && myconf="$myconf --enable-fast-malloc=full" kde_src_compile configure make use doc && make apidox } src_install() { kde_src_install dohtml *.html if [ `use doc` ]; then einfo "Copying API documentation..." dodir ${KDEDIR}/share/doc/HTML/en/kdelibs-apidocs cp -r ${S}/apidocs/* ${D}/$KDEDIR/share/doc/HTML/en/kdelibs-apidocs else rm -r ${D}/$KDEDIR/share/doc/HTML/en/kdelibs-apidocs fi } pkg_postinst() { if [ `use doc` ]; then rm $KDEDIR/share/doc/HTML/en/kdelibs-apidocs/common ln -sf $KDEDIR/share/doc/HTML/en/common \ $KDEDIR/share/doc/HTML/en/kdelibs-apidocs/common fi }