diff options
author | Peter Volkov <pva@gentoo.org> | 2009-12-21 20:50:42 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2009-12-21 20:50:42 +0000 |
commit | b90dd4213814eabc9cdcb7cb64644b4d237a8be5 (patch) | |
tree | 9352be464b1356195cfd3896a288fe27dd62476d /x11-plugins/pidgin-latex/pidgin-latex-1.3.3.ebuild | |
parent | make a note about threaded io support (diff) | |
download | gentoo-2-b90dd4213814eabc9cdcb7cb64644b4d237a8be5.tar.gz gentoo-2-b90dd4213814eabc9cdcb7cb64644b4d237a8be5.tar.bz2 gentoo-2-b90dd4213814eabc9cdcb7cb64644b4d237a8be5.zip |
Version bump.
(Portage version: 2.1.7.15/cvs/Linux x86_64)
Diffstat (limited to 'x11-plugins/pidgin-latex/pidgin-latex-1.3.3.ebuild')
-rw-r--r-- | x11-plugins/pidgin-latex/pidgin-latex-1.3.3.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/x11-plugins/pidgin-latex/pidgin-latex-1.3.3.ebuild b/x11-plugins/pidgin-latex/pidgin-latex-1.3.3.ebuild new file mode 100644 index 000000000000..b3dcbbc8deb3 --- /dev/null +++ b/x11-plugins/pidgin-latex/pidgin-latex-1.3.3.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-latex/pidgin-latex-1.3.3.ebuild,v 1.1 2009/12/21 20:50:42 pva Exp $ + +EAPI="2" +inherit multilib toolchain-funcs + +DESCRIPTION="Pidgin plugin that renders latex formulae" +HOMEPAGE="http://sourceforge.net/projects/pidgin-latex" +SRC_URI="mirror://sourceforge/pidgin-latex/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +COMMON_DEPEND="net-im/pidgin[gtk] + x11-libs/gtk+:2" +DEPEND="${COMMON_DEPEND} + sys-devel/libtool + dev-util/pkgconfig" +RDEPEND="${COMMON_DEPEND} + virtual/latex-base + app-text/dvipng" + +S=${WORKDIR}/${PN} + +src_prepare() +{ + sed -e "s:\(CC.*=\).*:\1 $(tc-getCC):" \ + -e "/LIB_INSTALL_DIR/{s:/lib/pidgin:/$(get_libdir)/pidgin:;}" \ + -i Makefile || die +} + +src_compile() { + emake PREFIX=/usr || die +} + +src_install() +{ + make PREFIX="${D}/usr" install || die "make install failed" + dodoc README CHANGELOG TODO || die +} |