# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $ inherit distutils DESCRIPTION="a simple web shares downloader" HOMEPAGE="http://theli.is-a-geek.org/blog/static/piglet" SRC_URI="http://theli.ho.com.ua/${PN}/${P}.tar.gz" LICENSE="GPL-3" KEYWORDS="~x86" SLOT="0" IUSE="js ocr" RDEPEND=">=virtual/python-2.4 js? (dev-lang/spidermonkey) ocr? (app-text/gocr media-gfx/imagemagick)" pkg_postinst() { distutils_pkg_postinst if ! use ocr; then einfo einfo "You chose not to install gocr" einfo "Without it plugins which depend on character recognition won't work" fi if ! use js; then einfo einfo "You chose not to install spidermonkey javascript parser" einfo "Without it plugins which depend on it won't work" fi }