# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-text/djvu/djvu-3.5.19.ebuild,v 1.9 2007/06/27 06:03:59 corsair Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" inherit fdo-mime nsplugins flag-o-matic eutils multilib toolchain-funcs autotools MY_P="${PN}libre-${PV}" DESCRIPTION="DjVu viewers, encoders and utilities." HOMEPAGE="http://djvu.sourceforge.net" SRC_URI="mirror://sourceforge/djvu/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd" IUSE="xml qt3 jpeg tiff debug threads nls nsplugin kde doc" DEPEND="jpeg? ( >=media-libs/jpeg-6b-r2 ) tiff? ( media-libs/tiff ) qt3? ( replace-flags -march=pentium4 -march=pentium3 echo LINGUAS=$LINGUAS # When enabling qt it must be compiled with threads. See bug #89544. if use qt3 ; then QTCONF=" --with-qt --enable-threads " elif use threads ; then QTCONF=" --without-qt --disable-djview --enable-threads " else QTCONF=" --without-qt --disable-djview --disable-threads " fi # We install all desktop files by hand. econf --disable-desktopfiles \ $(use_enable xml xmltools) \ $(use_with jpeg) \ $(use_with tiff) \ $(use_enable nls i18n) \ $(use_enable debug) \ ${QTCONF} \ || die "econf failed" if ! use nsplugin; then sed -e 's:nsdejavu::' -i "${S}"/gui/Makefile || die fi emake -j1 || die "emake failed" } src_install() { make DESTDIR="${D}" plugindir=/usr/$(get_libdir)/${PLUGINS_DIR} install dodoc README TODO NEWS use doc && cp -r doc/ "${D}"/usr/share/doc/${PF} # Install desktop files. cd desktopfiles insinto /usr/share/icons/hicolor/22x22/mimetypes && newins hi22-djvu.png image-vnd.djvu.png insinto /usr/share/icons/hicolor/32x32/mimetypes && newins hi32-djvu.png image-vnd.djvu.png insinto /usr/share/icons/hicolor/48x48/mimetypes && newins hi48-djvu.png image-vnd.djvu.png insinto /usr/share/mime/packages && doins djvulibre-mime.xml if use kde ; then insinto /usr/share/mimelnk/image && doins vnd.djvu.desktop x-djvu.desktop cp "${D}"/usr/share/mimelnk/image/{vnd.djvu.desktop,x-djvu.desktop} sed -i -e 's:image/vnd.djvu:image/x-djvu:' "${D}"/usr/share/mimelnk/image/x-djvu.desktop fi insinto /usr/share/icons/hicolor/32x32/apps && newins hi32-djview3.png djvulibre-djview3.png insinto /usr/share/applications/ && doins djvulibre-djview3.desktop } pkg_postinst() { fdo-mime_desktop_database_update fdo-mime_mime_database_update } pkg_postrm() { fdo-mime_desktop_database_update fdo-mime_mime_database_update }