summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2009-08-26 06:05:44 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2009-08-26 06:05:44 +0000
commitfaecc8430792525979f902ff40a3be76d5e04260 (patch)
treeb405588fdf7d598ee1999d2828187ca63ddad8b3 /sci-mathematics/mathomatic
parentInitial commit (bug #282349) (diff)
downloadgentoo-2-faecc8430792525979f902ff40a3be76d5e04260.tar.gz
gentoo-2-faecc8430792525979f902ff40a3be76d5e04260.tar.bz2
gentoo-2-faecc8430792525979f902ff40a3be76d5e04260.zip
Version bump. secure flag now obsolete, done with mathomatic -s
(Portage version: 2.2_rc38/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics/mathomatic')
-rw-r--r--sci-mathematics/mathomatic/ChangeLog9
-rw-r--r--sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild53
-rw-r--r--sci-mathematics/mathomatic/mathomatic-14.5.3.ebuild (renamed from sci-mathematics/mathomatic/mathomatic-14.5.2.ebuild)13
-rw-r--r--sci-mathematics/mathomatic/metadata.xml3
4 files changed, 11 insertions, 67 deletions
diff --git a/sci-mathematics/mathomatic/ChangeLog b/sci-mathematics/mathomatic/ChangeLog
index 9d2ae55cc0bd..e9a139093263 100644
--- a/sci-mathematics/mathomatic/ChangeLog
+++ b/sci-mathematics/mathomatic/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for sci-mathematics/mathomatic
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.43 2009/07/26 00:16:47 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.44 2009/08/26 06:05:44 bicatali Exp $
+
+*mathomatic-14.5.3 (26 Aug 2009)
+
+ 26 Aug 2009; Sébastien Fabbro <bicatali@gentoo.org>
+ -mathomatic-14.4.5.ebuild, -mathomatic-14.5.2.ebuild,
+ +mathomatic-14.5.3.ebuild, metadata.xml:
+ Version bump. secure flag now obsolete, done with mathomatic -s
*mathomatic-14.5.2 (26 Jul 2009)
diff --git a/sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild b/sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild
deleted file mode 100644
index be09405ff51a..000000000000
--- a/sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild,v 1.2 2009/06/24 04:34:02 bicatali Exp $
-
-inherit eutils
-
-DESCRIPTION="Automatic algebraic manipulator"
-HOMEPAGE="http://www.mathomatic.com/"
-SRC_URI="http://www.panix.com/~gesslein/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc secure"
-
-DEPEND="sys-libs/readline
- sys-libs/ncurses"
-RDEPEND="${DEPEND}"
-
-src_compile() {
- sed -i \
- -e '/^CFLAGS/ s/-O.//' \
- makefile primes/makefile || die "sed failed"
- sed -i -e "s/-s.*-O/${CFLAGS}/" compile.secure || die
- emake READLINE=1 || die "emake failed"
- emake -C primes || die "emake in primes failed"
- if use secure; then
- ./compile.secure || die "compiling secure version failed"
- fi
-}
-
-src_test() {
- emake test || die "emake test failed"
- emake -C primes test || die "emake test in primes failed"
-}
-
-src_install() {
- # It was easier just to install the files manually
- dobin mathomatic primes/matho-{primes,pascal,sumsq} || die
- dodoc changes.txt README.txt AUTHORS || die
- doman mathomatic.1 primes/*.1 || die
- doicon icons/mathomatic.png || die
- domenu icons/mathomatic.desktop || die
- newdoc primes/README.txt README-primes.txt || die
- if use doc; then
- dohtml doc/* || die
- insinto /usr/share/doc/${PF}
- doins -r tests factorial m4 || die
- fi
- if use secure; then
- dobin mathomatic_secure || die
- fi
-}
diff --git a/sci-mathematics/mathomatic/mathomatic-14.5.2.ebuild b/sci-mathematics/mathomatic/mathomatic-14.5.3.ebuild
index 4aea004e12ac..94656bf3ca5e 100644
--- a/sci-mathematics/mathomatic/mathomatic-14.5.2.ebuild
+++ b/sci-mathematics/mathomatic/mathomatic-14.5.3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.5.2.ebuild,v 1.1 2009/07/26 00:16:47 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.5.3.ebuild,v 1.1 2009/08/26 06:05:44 bicatali Exp $
inherit eutils
@@ -11,7 +11,7 @@ SRC_URI="http://www.panix.com/~gesslein/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc secure"
+IUSE="doc"
DEPEND="sys-libs/readline
sys-libs/ncurses"
@@ -22,12 +22,8 @@ src_compile() {
sed -i \
-e '/^CFLAGS/ s/-O.//' \
makefile primes/makefile || die "sed failed"
- sed -i -e "s/-s.*-O/${CFLAGS}/" compile.secure || die
emake READLINE=1 || die "emake failed"
emake -C primes || die "emake in primes failed"
- if use secure; then
- ./compile.secure || die "compiling secure version failed"
- fi
}
src_test() {
@@ -38,7 +34,7 @@ src_test() {
src_install() {
# It was easier just to install the files manually
dobin mathomatic primes/matho-{primes,pascal,sumsq} || die
- dodoc changes.txt README.txt AUTHORS || die
+ dodoc changes.txt README.txt AUTHORS
doman mathomatic.1 primes/*.1 || die
doicon icons/mathomatic.png || die
domenu icons/mathomatic.desktop || die
@@ -48,7 +44,4 @@ src_install() {
insinto /usr/share/doc/${PF}
doins -r tests factorial m4 || die
fi
- if use secure; then
- dobin mathomatic_secure || die
- fi
}
diff --git a/sci-mathematics/mathomatic/metadata.xml b/sci-mathematics/mathomatic/metadata.xml
index 094608e472fa..04ff44bf1e5d 100644
--- a/sci-mathematics/mathomatic/metadata.xml
+++ b/sci-mathematics/mathomatic/metadata.xml
@@ -11,7 +11,4 @@
algebraic equations, perform polynomial and complex arithmetic,
etc.
</longdescription>
- <use>
- <flag name='secure'>Create an extra secure version, with no I/O.</flag>
- </use>
</pkgmetadata>