X-Git-Url: https://git.sthu.org/?p=shuber-gentoo-overlay.git;a=blobdiff_plain;f=media-gfx%2Fpdftoipe%2Fpdftoipe-9999.ebuild;fp=media-gfx%2Fpdftoipe%2Fpdftoipe-9999.ebuild;h=dd0a6ef47d48acfb713617571aa527c1a1e8851e;hp=0000000000000000000000000000000000000000;hb=6f375a30436267c1ea6230053652b0f8549dd39d;hpb=5b10f5bfa74c1396451cf58f83dd5b2795ee2123 diff --git a/media-gfx/pdftoipe/pdftoipe-9999.ebuild b/media-gfx/pdftoipe/pdftoipe-9999.ebuild new file mode 100644 index 0000000..dd0a6ef --- /dev/null +++ b/media-gfx/pdftoipe/pdftoipe-9999.ebuild @@ -0,0 +1,37 @@ +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + + +EAPI=0 + +inherit git-2 + +DESCRIPTION="Converts PDF files to Ipe xml files" +HOMEPAGE="https://github.com/otfried/ipe-tools/tree/master/figtoipe" +EGIT_REPO_URI="https://github.com/otfried/ipe-tools.git" +SRC_URI="" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="app-text/poppler" +RDEPEND="${DEPEND}" + +BASEDIR="${WORKDIR}/${P}/pdftoipe" + +src_compile() { + cd ${BASEDIR} + emake +} + +src_install() { + cd ${BASEDIR} + exeinto /usr/bin/ + doexe pdftoipe + doman pdftoipe.1 + dodoc readme.txt +} + +