DIST ipe-7.0.10-src.tar.gz 1158532 RMD160 1d57d362de66a5e718baf80ef79a6681ee48e046 SHA1 dc18230bb669b759b132c66440d99596b52fb833 SHA256 f343493d9e4d2390a9fdd5403162d187dd6ec1b204e7c026baec76657f40cd9c
DIST ipe-7.0.12-src.tar.gz 1304738 RMD160 2b70844cd8148e459fc9875fcc6923d0da899d1e SHA1 b872c7c4d0de762a855a0d42dfd9509b02044222 SHA256 8767ae4457d3187f56b4238f3741634e6177f22ecc414dfb4f84079e91df6c4b
DIST ipe-7.0.13-src.tar.gz 1318709 RMD160 a753fff1dcb7437adf3ce7bbb2a4b9be2aa7d077 SHA1 17471156d5becfd60147f94c765fbbf2c57e1782 SHA256 942335830bb1397a514b7eafdbb1929df4598a7b080296b05f8051f7c08ca295
+DIST ipe-7.0.14-src.tar.gz 1322856 RMD160 4f819bd7740e875170e66c4fa4431aad6cb4c835 SHA1 a9b744120019248a405caab63e88664258242151 SHA256 793d92e407649d7edaba2b98502ae28963d1a375d9fcc2bfc6021b44233cf807
EBUILD ipe-7.0.10.ebuild 2056 RMD160 c5ad5b0002cf557670353aec0bb9566253e35de2 SHA1 ce30d826bab989f4b6129cbe41a90a9cfddd376d SHA256 e0a1207c5f471cdded798cbeadc748f19805ce57adf9c3a6766785457a71e0ac
EBUILD ipe-7.0.12.ebuild 2318 RMD160 5cb5185fb17319862f196078a355f5b74c604d46 SHA1 f8b136bc1f8dd1d09c31cfec54dbeb4150d66956 SHA256 b7274ac0975d384c5b73f83c580346eb2e68b684f6234c55c64bee5fe702be46
EBUILD ipe-7.0.13-r1.ebuild 2568 RMD160 e0f62d77eaa84a4d8b5029552d6c6b9f29f90ebd SHA1 5970aad7f91c05a2cb52452072d89ba12fb7bbff SHA256 a2c93051a772cc1dfa89c9046c03172b81c33793295679693efb817105df4f6d
EBUILD ipe-7.0.13.ebuild 2844 RMD160 25228c648129cce0c51da1b0e0819e87bba2bfdc SHA1 733af4d32fbe065a6d68308d9a1664447a7eb494 SHA256 4627036656d6aa6a4ce54b1fa86b5e94b8432048ec9591200a00e425c2e1eb60
+EBUILD ipe-7.0.14.ebuild 2568 RMD160 e0f62d77eaa84a4d8b5029552d6c6b9f29f90ebd SHA1 5970aad7f91c05a2cb52452072d89ba12fb7bbff SHA256 a2c93051a772cc1dfa89c9046c03172b81c33793295679693efb817105df4f6d
--- /dev/null
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="2"
+inherit eutils toolchain-funcs qt4-r2
+
+DESCRIPTION="A drawing editor which creates figures for inclusion in LaTeX documents and makes PDF presentations."
+HOMEPAGE="http://ipe7.sourceforge.net/"
+SRC_URI="mirror://sourceforge/ipe7/ipe/${P}-src.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+RESTRICT="mirror"
+# highprec: applies patch in order to write coordinates with higher precision
+IUSE="highprec"
+
+DEPEND="
+ app-text/texlive-core
+ >=dev-lang/lua-5.1
+ >=media-libs/freetype-2.1.8
+ sys-libs/zlib
+ >=x11-libs/cairo-1.8.0
+ >=x11-libs/qt-core-4.5:4
+ >=x11-libs/qt-gui-4.5:4
+ "
+
+S=${S}/src
+COMMONDIR=/usr/share/ipe/common
+
+
+search_urw_fonts() {
+ local texmfdist="$(kpsewhich -var-value=TEXMFDIST)" # colon-separated list of paths
+ local urwdir=fonts/type1/urw # according to TeX directory structure
+ local IFS="${IFS}:" # add colon as field separator
+ for dir in ${texmfdist}; do
+ if [[ -d "${dir}/${urwdir}" ]]; then
+ URWFONTDIR="${dir}/${urwdir}"
+ return 0
+ fi
+ done
+
+ return 1
+}
+
+src_prepare() {
+ if use highprec; then
+ einfo "Adding patch for higher output precision"
+ epatch "${FILESDIR}"/${PN}-outputprecision.patch
+ fi
+}
+
+pkg_setup() {
+ if search_urw_fonts; then
+ einfo "URW fonts found in ${URWFONTDIR}."
+ else
+ ewarn "Could not find directory containing URW fonts. Ipe will not"
+ ewarn "function properly without them."
+ fi
+}
+
+src_compile() {
+ # fix detection of lua
+ sed -i -e 's/lua5.1/lua/g' config.mak || die
+ # don't strip installed binaries
+ sed -i -e 's/install -s/install/' common.mak || die
+ # use moc instead of moc-qt4
+ sed -i -e 's/moc-qt4/moc/' config.mak || die
+
+ # -j1, since there are no deps in the Makefiles on libipe
+ emake -j1 CXX=$(tc-getCXX) IPEPREFIX="/usr" \
+ IPEDOCDIR="/usr/share/doc/${PF}" || die "emake failed"
+}
+
+src_install() {
+ emake install IPEPREFIX="/usr" IPEDOCDIR="/usr/share/doc/${PF}" \
+ INSTALL_ROOT="${D}" || die "emake install failed"
+ dodoc ../{news,readme}.txt || die
+
+ # Link style sheets
+ if [ -d $COMMONDIR/styles ]; then
+ einfo "Linking common style sheets from $COMMONDIR"
+ for f in $COMMONDIR/styles/*; do
+ einfo " Linking ${f##*/}"
+ dosym $f usr/share/ipe/${PV}/styles/${f##*/}
+ done
+
+ elog "Style sheets from $COMMONDIR/styles have been symlinked to"
+ elog "the style sheet directory of ${P}. If you add additional"
+ elog "style sheets later to $COMMONDIR/styles you may symlink"
+ elog "them by hand to '/usr/share/ipe/${PV}/styles/'."
+ fi
+}
+