public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: dev-libs/mathjax/
@ 2012-06-29 18:34 Sebastien Fabbro
  0 siblings, 0 replies; 2+ messages in thread
From: Sebastien Fabbro @ 2012-06-29 18:34 UTC (permalink / raw
  To: gentoo-commits

commit:     f6cb88cda736f558efb94fe9821cfffca8bcacc4
Author:     Sebastien Fabbro <sfabbro <AT> uvic <DOT> ca>
AuthorDate: Fri Jun 29 18:34:27 2012 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Fri Jun 29 18:34:27 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=f6cb88cd

dev-libs/mathjax: Initial import

(Portage version: 2.2.01.20430-prefix/git/Linux x86_64, unsigned Manifest commit)

---
 dev-libs/mathjax/ChangeLog          |   10 +++++++
 dev-libs/mathjax/mathjax-2.0.ebuild |   50 +++++++++++++++++++++++++++++++++++
 dev-libs/mathjax/metadata.xml       |   17 ++++++++++++
 3 files changed, 77 insertions(+), 0 deletions(-)

diff --git a/dev-libs/mathjax/ChangeLog b/dev-libs/mathjax/ChangeLog
new file mode 100644
index 0000000..ca20ec9
--- /dev/null
+++ b/dev-libs/mathjax/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-libs/mathjax
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*mathjax-2.0 (29 Jun 2012)
+
+  29 Jun 2012; Sebastien Fabbro <fabbros@gentoo.org> +mathjax-2.0.ebuild,
+  +metadata.xml:
+  dev-libs/mathjax: Initial import
+

diff --git a/dev-libs/mathjax/mathjax-2.0.ebuild b/dev-libs/mathjax/mathjax-2.0.ebuild
new file mode 100644
index 0000000..14e5e5a
--- /dev/null
+++ b/dev-libs/mathjax/mathjax-2.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+DESCRIPTION="JavaScript display engine for LaTeX, MathML and AsciiMath"
+HOMEPAGE="http://www.mathjax.org/"
+SRC_URI="https://github.com/mathjax/MathJax/tarball/v${PV} -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc examples"
+
+DEPEND=""
+RDEPEND=""
+
+src_unpack() {
+	unpack ${A} && mv ${PN}-MathJax-* ${P}
+}
+
+src_install() {
+	find . -name .gitignore -delete
+	dodoc README*
+	use doc && dohtml -r docs/html/*
+	if use examples; then
+		insinto /usr/share/doc/${PF}/examples
+		doins -r test/*
+	fi
+	rm -rf test docs LICENSE README*
+	#local installdir=/var/www/${PN}
+	local installdir=/usr/share/${PN}
+	insinto ${installdir}
+	doins -r *
+	# web server config file - should we really do this?
+	cat > MathJax.conf <<-EOF
+		Alias /MathJax/ ${EPREFIX}${installdir}/
+		Alias /mathjax/ ${EPREFIX}${installdir}/
+
+		<Directory ${EPREFIX}${installdir}>
+			Options None
+			AllowOverride None
+			Order allow,deny
+			Allow from all
+		</Directory>
+	EOF
+	insinto /etc/httpd/conf.d
+	doins MathJax.conf
+}

diff --git a/dev-libs/mathjax/metadata.xml b/dev-libs/mathjax/metadata.xml
new file mode 100644
index 0000000..0544fc3
--- /dev/null
+++ b/dev-libs/mathjax/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci</herd>
+<longdescription lang='en'>
+  MathJax is an open-source JavaScript display engine for LaTeX and
+  MathML that works in all modern browsers. It was designed with the
+  goal of consolidating the recent advances in web technologies into a
+  single, definitive, math-on-the-web platform supporting the major
+  browsers and operating systems. It requires no setup on the part of
+  the user (no plugins to downlaod or software to install), so the
+  page author can write web documents that include mathematics and be
+  confident that users will be able to view it naturally and
+  easily. One simply includes MathJax and some mathematics in a web
+  page, and MathJax does the rest.
+</longdescription>
+</pkgmetadata>



^ permalink raw reply related	[flat|nested] 2+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-libs/mathjax/
@ 2013-02-25  1:20 Sebastien Fabbro
  0 siblings, 0 replies; 2+ messages in thread
From: Sebastien Fabbro @ 2013-02-25  1:20 UTC (permalink / raw
  To: gentoo-commits

commit:     b421e354dc86f4803709b1e0326a202ebd179e15
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 21 21:21:49 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Feb 21 21:21:49 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=b421e354

mathjax now in main tree

---
 dev-libs/mathjax/ChangeLog          |   10 -------
 dev-libs/mathjax/mathjax-2.0.ebuild |   50 -----------------------------------
 dev-libs/mathjax/metadata.xml       |   17 ------------
 3 files changed, 0 insertions(+), 77 deletions(-)

diff --git a/dev-libs/mathjax/ChangeLog b/dev-libs/mathjax/ChangeLog
deleted file mode 100644
index ca20ec9..0000000
--- a/dev-libs/mathjax/ChangeLog
+++ /dev/null
@@ -1,10 +0,0 @@
-# ChangeLog for dev-libs/mathjax
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-*mathjax-2.0 (29 Jun 2012)
-
-  29 Jun 2012; Sebastien Fabbro <fabbros@gentoo.org> +mathjax-2.0.ebuild,
-  +metadata.xml:
-  dev-libs/mathjax: Initial import
-

diff --git a/dev-libs/mathjax/mathjax-2.0.ebuild b/dev-libs/mathjax/mathjax-2.0.ebuild
deleted file mode 100644
index 14e5e5a..0000000
--- a/dev-libs/mathjax/mathjax-2.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-DESCRIPTION="JavaScript display engine for LaTeX, MathML and AsciiMath"
-HOMEPAGE="http://www.mathjax.org/"
-SRC_URI="https://github.com/mathjax/MathJax/tarball/v${PV} -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples"
-
-DEPEND=""
-RDEPEND=""
-
-src_unpack() {
-	unpack ${A} && mv ${PN}-MathJax-* ${P}
-}
-
-src_install() {
-	find . -name .gitignore -delete
-	dodoc README*
-	use doc && dohtml -r docs/html/*
-	if use examples; then
-		insinto /usr/share/doc/${PF}/examples
-		doins -r test/*
-	fi
-	rm -rf test docs LICENSE README*
-	#local installdir=/var/www/${PN}
-	local installdir=/usr/share/${PN}
-	insinto ${installdir}
-	doins -r *
-	# web server config file - should we really do this?
-	cat > MathJax.conf <<-EOF
-		Alias /MathJax/ ${EPREFIX}${installdir}/
-		Alias /mathjax/ ${EPREFIX}${installdir}/
-
-		<Directory ${EPREFIX}${installdir}>
-			Options None
-			AllowOverride None
-			Order allow,deny
-			Allow from all
-		</Directory>
-	EOF
-	insinto /etc/httpd/conf.d
-	doins MathJax.conf
-}

diff --git a/dev-libs/mathjax/metadata.xml b/dev-libs/mathjax/metadata.xml
deleted file mode 100644
index 0544fc3..0000000
--- a/dev-libs/mathjax/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>sci</herd>
-<longdescription lang='en'>
-  MathJax is an open-source JavaScript display engine for LaTeX and
-  MathML that works in all modern browsers. It was designed with the
-  goal of consolidating the recent advances in web technologies into a
-  single, definitive, math-on-the-web platform supporting the major
-  browsers and operating systems. It requires no setup on the part of
-  the user (no plugins to downlaod or software to install), so the
-  page author can write web documents that include mathematics and be
-  confident that users will be able to view it naturally and
-  easily. One simply includes MathJax and some mathematics in a web
-  page, and MathJax does the rest.
-</longdescription>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-02-25  1:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-29 18:34 [gentoo-commits] proj/sci:master commit in: dev-libs/mathjax/ Sebastien Fabbro
  -- strict thread matches above, loose matches on Subject: below --
2013-02-25  1:20 Sebastien Fabbro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox