Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/yacas: ChangeLog metadata.xml yacas-1.2.2.ebuild
Date: Wed, 07 Nov 2007 23:26:17
Message-Id: E1IpuHj-0004sz-Kd@stork.gentoo.org
1 bicatali 07/11/07 23:26:11
2
3 Modified: ChangeLog metadata.xml
4 Added: yacas-1.2.2.ebuild
5 Log:
6 Version bump, and added longdescription in metadata.xml
7 (Portage version: 2.1.3.16)
8
9 Revision Changes Path
10 1.18 sci-mathematics/yacas/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/yacas/ChangeLog?rev=1.18&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/yacas/ChangeLog?rev=1.18&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/yacas/ChangeLog?r1=1.17&r2=1.18
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v
19 retrieving revision 1.17
20 retrieving revision 1.18
21 diff -u -r1.17 -r1.18
22 --- ChangeLog 10 Aug 2007 18:00:16 -0000 1.17
23 +++ ChangeLog 7 Nov 2007 23:26:11 -0000 1.18
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sci-mathematics/yacas
26 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v 1.17 2007/08/10 18:00:16 markusle Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v 1.18 2007/11/07 23:26:11 bicatali Exp $
29 +
30 +*yacas-1.2.2 (07 Nov 2007)
31 +
32 + 07 Nov 2007; Sébastien Fabbro <bicatali@g.o> metadata.xml,
33 + +yacas-1.2.2.ebuild:
34 + Version bump, and added longdescription in metadata.xml
35
36 *yacas-1.1.0 (10 Aug 2007)
37
38
39
40
41 1.3 sci-mathematics/yacas/metadata.xml
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/yacas/metadata.xml?rev=1.3&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/yacas/metadata.xml?rev=1.3&content-type=text/plain
45 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/yacas/metadata.xml?r1=1.2&r2=1.3
46
47 Index: metadata.xml
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/metadata.xml,v
50 retrieving revision 1.2
51 retrieving revision 1.3
52 diff -u -r1.2 -r1.3
53 --- metadata.xml 31 Jul 2006 18:02:48 -0000 1.2
54 +++ metadata.xml 7 Nov 2007 23:26:11 -0000 1.3
55 @@ -2,4 +2,12 @@
56 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
57 <pkgmetadata>
58 <herd>sci-mathematics</herd>
59 +<longdescription lang="en">
60 +Yacas (Yet Another Computer Algebra System) is a small and highly
61 +flexible general-purpose computer algebra language. The syntax uses a
62 +infix-operator grammar parser. The distribution contains a small
63 +library of mathematical functions, but its real strength is in the
64 +language in which you can easily write your own symbolic manipulation
65 +algorithms.
66 +</longdescription>
67 </pkgmetadata>
68
69
70
71 1.1 sci-mathematics/yacas/yacas-1.2.2.ebuild
72
73 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/yacas/yacas-1.2.2.ebuild?rev=1.1&view=markup
74 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/yacas/yacas-1.2.2.ebuild?rev=1.1&content-type=text/plain
75
76 Index: yacas-1.2.2.ebuild
77 ===================================================================
78 # Copyright 1999-2007 Gentoo Foundation
79 # Distributed under the terms of the GNU General Public License v2
80 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.2.2.ebuild,v 1.1 2007/11/07 23:26:11 bicatali Exp $
81
82 DESCRIPTION="Powerful general purpose computer algebra system"
83 HOMEPAGE="http://yacas.sourceforge.net/"
84 SRC_URI="http://${PN}.sourceforge.net/backups/${P}.tar.gz"
85
86 SLOT="0"
87 LICENSE="GPL-2"
88 KEYWORDS="~amd64 ~ppc ~x86"
89
90 IUSE="doc java server"
91
92 DEPEND="java? ( virtual/jdk )"
93
94 src_compile() {
95 econf \
96 $(use_enable doc html-doc) \
97 $(use_enable server) \
98 --with-html-dir="/usr/share/doc/${PF}/html" \
99 || die "econf failed"
100 emake || die "emake failed"
101 if use java; then
102 cd JavaYacas
103 emake -f makefile.yacas || die "emake java interface failed"
104 fi
105 }
106
107 src_install() {
108 emake DESTDIR="${D}" install || die "emake install failed"
109 dodoc AUTHORS README TODO || die
110 if use java; then
111 cd JavaYacas
112 insinto /usr/share/${PN}
113 doins yacas.jar hints.txt yacasconsole.html || die "doins java interface failed"
114 echo "#!/bin/sh" > jyacas
115 echo "java -jar /usr/share/${PN}/java.jar" >> jyacas
116 exeinto /usr/bin
117 doexe jyacas
118 fi
119 }
120
121
122
123 --
124 gentoo-commits@g.o mailing list