diff options
author | Andrey Grozin <grozin@gentoo.org> | 2013-03-28 13:41:15 +0000 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2013-03-28 13:41:15 +0000 |
commit | 917477127456375021b50b6a780ceded4575da67 (patch) | |
tree | 60118d4272fdbfbb3cc58966bb8d0447f540ef59 /app-office/texmacs | |
parent | Marked ppc/ppc64 stable for bug #81958. (diff) | |
download | gentoo-2-917477127456375021b50b6a780ceded4575da67.tar.gz gentoo-2-917477127456375021b50b6a780ceded4575da67.tar.bz2 gentoo-2-917477127456375021b50b6a780ceded4575da67.zip |
Version bump
(Portage version: 2.2.0_alpha170/cvs/Linux i686, signed Manifest commit with key 0x3AFFCE974D34BD8C!)
Diffstat (limited to 'app-office/texmacs')
-rw-r--r-- | app-office/texmacs/ChangeLog | 7 | ||||
-rw-r--r-- | app-office/texmacs/texmacs-1.0.7.19.ebuild | 72 |
2 files changed, 78 insertions, 1 deletions
diff --git a/app-office/texmacs/ChangeLog b/app-office/texmacs/ChangeLog index 9b280619370c..62f7e839a062 100644 --- a/app-office/texmacs/ChangeLog +++ b/app-office/texmacs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-office/texmacs # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/texmacs/ChangeLog,v 1.107 2013/03/23 10:01:03 grozin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/texmacs/ChangeLog,v 1.108 2013/03/28 13:41:15 grozin Exp $ + +*texmacs-1.0.7.19 (28 Mar 2013) + + 28 Mar 2013; Andrey Grozin <grozin@gentoo.org> +texmacs-1.0.7.19.ebuild: + Version bump *texmacs-1.0.7.18 (23 Mar 2013) diff --git a/app-office/texmacs/texmacs-1.0.7.19.ebuild b/app-office/texmacs/texmacs-1.0.7.19.ebuild new file mode 100644 index 000000000000..95cb1ab6e27c --- /dev/null +++ b/app-office/texmacs/texmacs-1.0.7.19.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/texmacs/texmacs-1.0.7.19.ebuild,v 1.1 2013/03/28 13:41:15 grozin Exp $ + +EAPI=4 + +inherit autotools eutils fdo-mime gnome2-utils + +MY_P=${P/tex/TeX}-src + +DESCRIPTION="Wysiwyg text processor with high-quality maths" +HOMEPAGE="http://www.texmacs.org/" +# Due to some changes at ftp.texmacs.org, files can no longer be fetched by wget, +# only by wget --no-passive-ftp +#SRC_URI="ftp://ftp.texmacs.org/pub/TeXmacs/tmftp/source/${MY_P}.tar.gz" +SRC_URI="http://dev.gentoo.org/~grozin/${MY_P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +IUSE="imlib jpeg netpbm qt4 svg spell" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux" + +RDEPEND="dev-scheme/guile[deprecated] + virtual/latex-base + app-text/ghostscript-gpl + media-libs/freetype + x11-libs/libXext + x11-apps/xmodmap + qt4? ( dev-qt/qtgui:4 ) + imlib? ( media-libs/imlib2 ) + jpeg? ( || ( media-gfx/imagemagick media-gfx/jpeg2ps ) ) + svg? ( || ( media-gfx/inkscape gnome-base/librsvg:2 ) ) + netpbm? ( media-libs/netpbm ) + spell? ( app-text/aspell )" +DEPEND="${RDEPEND} + x11-proto/xproto" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + # respect LDFLAGS, bug #338459 + epatch "${FILESDIR}"/${PN}-plugins.patch + + # dont update mime and desktop databases and icon cache + epatch "${FILESDIR}"/${PN}-updates.patch + + eautoreconf +} + +src_configure() { + econf \ + $(use_with imlib imlib2) \ + --enable-optimize="${CXXFLAGS}" \ + $(use_enable qt4 qt) +} + +src_install() { + default + domenu "${FILESDIR}"/TeXmacs.desktop +} + +pkg_postinst() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update + gnome2_icon_cache_update +} |