diff options
author | Olivier Crête <tester@gentoo.org> | 2008-03-05 15:43:07 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2008-03-05 15:43:07 +0000 |
commit | c4dedd5c7a9e9062b6a88908744a66ac8a8c5722 (patch) | |
tree | 543e16f42a03ce0c88cd2de57c2978f397fef5ed /x11-plugins/pidgin-latex | |
parent | Version bumped. (diff) | |
download | gentoo-2-c4dedd5c7a9e9062b6a88908744a66ac8a8c5722.tar.gz gentoo-2-c4dedd5c7a9e9062b6a88908744a66ac8a8c5722.tar.bz2 gentoo-2-c4dedd5c7a9e9062b6a88908744a66ac8a8c5722.zip |
Version bump, bug #212392
(Portage version: 2.1.4.4)
Diffstat (limited to 'x11-plugins/pidgin-latex')
-rw-r--r-- | x11-plugins/pidgin-latex/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/pidgin-latex/pidgin-latex-1.2.1.ebuild | 42 |
2 files changed, 49 insertions, 1 deletions
diff --git a/x11-plugins/pidgin-latex/ChangeLog b/x11-plugins/pidgin-latex/ChangeLog index 5d85e4a1bc7e..15c7dda3794b 100644 --- a/x11-plugins/pidgin-latex/ChangeLog +++ b/x11-plugins/pidgin-latex/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-plugins/pidgin-latex # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-latex/ChangeLog,v 1.6 2008/01/07 23:11:30 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-latex/ChangeLog,v 1.7 2008/03/05 15:43:07 tester Exp $ + +*pidgin-latex-1.2.1 (05 Mar 2008) + + 05 Mar 2008; Olivier Crête <tester@gentoo.org> + +pidgin-latex-1.2.1.ebuild: + Version bump, bug #212392 07 Jan 2008; <tester@gentoo.org> pidgin-latex-1.0.ebuild: Add missing inherit eutils for built_with_use diff --git a/x11-plugins/pidgin-latex/pidgin-latex-1.2.1.ebuild b/x11-plugins/pidgin-latex/pidgin-latex-1.2.1.ebuild new file mode 100644 index 000000000000..4a6c8fad6fac --- /dev/null +++ b/x11-plugins/pidgin-latex/pidgin-latex-1.2.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2008 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.2.1.ebuild,v 1.1 2008/03/05 15:43:07 tester Exp $ + +inherit flag-o-matic multilib eutils + +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="" + +DEPEND="net-im/pidgin + >=x11-libs/gtk+-2" +RDEPEND="${DEPEND} + virtual/tetex + media-gfx/imagemagick" + +S=${WORKDIR}/${PN} + +pkg_setup() { + if ! built_with_use net-im/pidgin gtk; then + eerror "You need to compile net-im/pidgin with USE=gtk" + die "Missing gtk USE flag on net-im/pidgin" + fi +} + +src_compile() +{ + append-flags -fPIC + emake || die "emake failed" +} + +src_install() +{ + make LIB_INSTALL_DIR="${D}/usr/$(get_libdir)/pidgin" install PREFIX="${D}/usr" \ + || die "make install failed" + dodoc README CHANGELOG TODO +} |