summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Grozin <grozin@gentoo.org>2012-06-01 17:32:49 +0000
committerAndrey Grozin <grozin@gentoo.org>2012-06-01 17:32:49 +0000
commit09ba4043c9c6ad68d7c0ec5fc9fcdfccd59d8d19 (patch)
treec3c797fea06b666bc55fd1dad257ee5538b3a9ed
parentfixed compilation issue described in bug 384011, and added a missing config s... (diff)
downloadgentoo-2-09ba4043c9c6ad68d7c0ec5fc9fcdfccd59d8d19.tar.gz
gentoo-2-09ba4043c9c6ad68d7c0ec5fc9fcdfccd59d8d19.tar.bz2
gentoo-2-09ba4043c9c6ad68d7c0ec5fc9fcdfccd59d8d19.zip
Snapshot now hosted at dev.gentoo.org
(Portage version: 2.2.0_alpha108/cvs/Linux i686)
-rw-r--r--sci-mathematics/form/ChangeLog5
-rw-r--r--sci-mathematics/form/form-4.0_p20120529.ebuild10
2 files changed, 9 insertions, 6 deletions
diff --git a/sci-mathematics/form/ChangeLog b/sci-mathematics/form/ChangeLog
index 0336886eb2e8..3077e6ef6f60 100644
--- a/sci-mathematics/form/ChangeLog
+++ b/sci-mathematics/form/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-mathematics/form
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/form/ChangeLog,v 1.2 2012/05/31 13:22:09 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/form/ChangeLog,v 1.3 2012/06/01 17:32:49 grozin Exp $
+
+ 01 Jun 2012; Andrey Grozin <grozin@gentoo.org> form-4.0_p20120529.ebuild:
+ Snapshot now hosted at dev.gentoo.org
31 May 2012; Andrey Grozin <grozin@gentoo.org> form-4.0_p20120529.ebuild:
Fixing RDEPEND
diff --git a/sci-mathematics/form/form-4.0_p20120529.ebuild b/sci-mathematics/form/form-4.0_p20120529.ebuild
index e6daa6a6d2e6..5d5e4a5e9c4d 100644
--- a/sci-mathematics/form/form-4.0_p20120529.ebuild
+++ b/sci-mathematics/form/form-4.0_p20120529.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/form/form-4.0_p20120529.ebuild,v 1.2 2012/05/31 13:22:09 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/form/form-4.0_p20120529.ebuild,v 1.3 2012/06/01 17:32:49 grozin Exp $
EAPI=4
@@ -8,7 +8,7 @@ inherit autotools
DESCRIPTION="Symbolic Manipulation System"
HOMEPAGE="http://www.nikhef.nl/~form/"
-SRC_URI="http://github.com/downloads/jauhien/sources/${P}.tar.gz"
+SRC_URI="http://dev.gentoo.org/~grozin/${P}.tar.gz"
S="${WORKDIR}/formcvs"
@@ -52,17 +52,17 @@ src_configure() {
src_compile() {
default
if use devref; then
- pushd doc/devref > /dev/null
+ pushd doc/devref > /dev/null || die "doc/devref does not exist"
LANG=C emake pdf
popd > /dev/null
fi
if use doc; then
- pushd doc/manual > /dev/null
+ pushd doc/manual > /dev/null || die "doc/manual does not exist"
LANG=C emake pdf
popd > /dev/null
fi
if use doxygen; then
- pushd doc/doxygen > /dev/null
+ pushd doc/doxygen > /dev/null || die "doc/doxygen does not exist"
emake html
popd > /dev/null
fi