# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=4 DESCRIPTION="Merge multipled PDF files to one" HOMEPAGE="http://code.google.com/p/bashscripts/source/browse/trunk/spacefm-plugin/pdfs-merge/pdfs-merge" SRC_URI="http://bashscripts.googlecode.com/files/PDFs-merge_v${PV}.spacefm-plugin.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND="app-text/ghostscript-gpl x11-misc/spacefm" S=${WORKDIR} src_install() { find -name COPYING -delete insinto /usr/share/spacefm/plugins/pdfmerge doins -r cstm_* plugin insinto /usr/share/spacefm/plugin-files doins "${DISTDIR}"/PDFs-merge_v${PV}.spacefm-plugin.tar.gz cd "${D}" find . -name "exec.sh" -exec fperms +x '{}' + || die } pkg_postinst() { einfo "You might need to restart spacefm for the changes to take effect." elog "If you want to add a plugin to a different menu via design-mode" elog "use the plugin-files from '/usr/share/spacefm/plugin-files'." } pkg_postrm() { elog "If you have copied the plugin to a different menu using the" elog "design mode you might want to remove it from there as well." }