From owner-svn-ports-all@FreeBSD.ORG Fri Aug 15 20:31:21 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63B2B571; Fri, 15 Aug 2014 20:31:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 433E526FE; Fri, 15 Aug 2014 20:31:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7FKVLU9078510; Fri, 15 Aug 2014 20:31:21 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7FKVKwE078506; Fri, 15 Aug 2014 20:31:20 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201408152031.s7FKVKwE078506@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Fri, 15 Aug 2014 20:31:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365037 - in head/math/givaro: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2014 20:31:21 -0000 Author: pi Date: Fri Aug 15 20:31:20 2014 New Revision: 365037 URL: http://svnweb.freebsd.org/changeset/ports/365037 QAT: https://qat.redports.org/buildarchive/r365037/ Log: math/givaro: 3.5.0 -> 3.8.0 Changes: - to 3.6.0: https://forge.imag.fr/frs/shownotes.php?release_id=157 - to 3.7.0: https://forge.imag.fr/frs/shownotes.php?release_id=161 - to 3.7.1: https://forge.imag.fr/frs/shownotes.php?release_id=196 - to 3.8.0: https://forge.imag.fr/frs/shownotes.php?release_id=418 PR: 191989 Submitted by: pi Approved by: bf (maintainer timeout) Added: head/math/givaro/files/ head/math/givaro/files/patch-src__library__tools__givtruncdomain.h (contents, props changed) Modified: head/math/givaro/Makefile head/math/givaro/distinfo head/math/givaro/pkg-plist Modified: head/math/givaro/Makefile ============================================================================== --- head/math/givaro/Makefile Fri Aug 15 20:28:37 2014 (r365036) +++ head/math/givaro/Makefile Fri Aug 15 20:31:20 2014 (r365037) @@ -1,25 +1,23 @@ -# Created by: b.f. # $FreeBSD$ PORTNAME= givaro -PORTVERSION= 3.5.0 -PORTREVISION= 1 +PORTVERSION= 3.8.0 CATEGORIES= math -MASTER_SITES= https://forge.imag.fr/frs/download.php/133/ LOCAL/bf +MASTER_SITES= https://forge.imag.fr/frs/download.php/592/ LOCAL/bf MAINTAINER= bf@FreeBSD.org COMMENT= C++ library for computer algebra -LICENSE= CeCILL-Bv1 +LICENSE= CeCILL-Bv1-en.txt LICENSE_NAME= Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre] B license, version 1 LICENSE_FILE= ${WRKSRC}/Licence_CeCILL-B_V1-en.txt LICENSE_PERMS= auto-accept -LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp +LIB_DEPENDS= libgmp.so.10:${PORTSDIR}/math/gmp USES= libtool GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-gmp="${LOCALBASE}" +CONFIGURE_ARGS = --with-gmp="${LOCALBASE}" USE_LDCONFIG= yes INSTALL_TARGET= install-strip @@ -28,11 +26,12 @@ OPTIONS_DEFINE= DOXYGEN .include .if ${PORT_OPTIONS:MDOXYGEN} -BUILD_DEPENDS += doxygen:${PORTSDIR}/devel/doxygen +BUILD_DEPENDS += doxygen:${PORTSDIR}/devel/doxygen \ + dot:${PORTSDIR}/graphics/graphviz CONFIGURE_ARGS+= --enable-doc --with-docdir=${DOCSDIR} -PLIST_SUB+= DOXYGEN="" +PLIST_SUB+= PORTDOCS="" .else -PLIST_SUB+= DOXYGEN="@comment " +PLIST_SUB+= PORTDOCS="@comment " .endif CPPFLAGS+= -I${LOCALBASE}/include @@ -48,10 +47,11 @@ post-patch: @${REINPLACE_CMD} -e 's/sed -i/& ""/' ${WRKSRC}/docs/Makefile.in .endif -.if ${PORT_OPTIONS:MDOXYGEN} post-install: - ${MKDIR} ${STAGEDIR}${DOCSDIR}/givaro-dev-html/ - ${TOUCH} ${STAGEDIR}${DOCSDIR}/givaro-dev-html/.keep-me +.if ${PORT_OPTIONS:MDOXYGEN} + ${RMDIR} ${STAGEDIR}${DOCSDIR}/givaro-dev-html + ${FIND} ${WRKSRC}/docs/givaro-html -not -type d \ + | ${SED} -ne 's,^${WRKSRC}/docs/givaro-html,${DOCSDIR}/givaro-html,p' >> ${TMPPLIST} .endif check regression-test test: build Modified: head/math/givaro/distinfo ============================================================================== --- head/math/givaro/distinfo Fri Aug 15 20:28:37 2014 (r365036) +++ head/math/givaro/distinfo Fri Aug 15 20:31:20 2014 (r365037) @@ -1,2 +1,2 @@ -SHA256 (givaro-3.5.0.tar.gz) = 5ca1bc2855cb186db11bf0ce4076d4ec0cb5fca298a975484e74046e231809b9 -SIZE (givaro-3.5.0.tar.gz) = 879528 +SHA256 (givaro-3.8.0.tar.gz) = d89728d6ae527e80e9cd48fb40daf9b8a16907ed1b7cb621416a1483b69e42a0 +SIZE (givaro-3.8.0.tar.gz) = 823507 Added: head/math/givaro/files/patch-src__library__tools__givtruncdomain.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/givaro/files/patch-src__library__tools__givtruncdomain.h Fri Aug 15 20:31:20 2014 (r365037) @@ -0,0 +1,11 @@ +--- ./src/library/tools/givtruncdomain.h.orig 2014-08-11 23:06:35.000000000 +0200 ++++ ./src/library/tools/givtruncdomain.h 2014-08-11 23:06:42.000000000 +0200 +@@ -17,7 +17,7 @@ + #ifdef __APPLE__ + #include + #else +-#include ++/* #include */ + #endif + #endif + Modified: head/math/givaro/pkg-plist ============================================================================== --- head/math/givaro/pkg-plist Fri Aug 15 20:28:37 2014 (r365036) +++ head/math/givaro/pkg-plist Fri Aug 15 20:31:20 2014 (r365037) @@ -12,6 +12,7 @@ include/givaro/givarrayfixed.h include/givaro/givbasictype.h include/givaro/givbits.h include/givaro/givbits.inl +include/givaro/givcaster.h include/givaro/givcategory.h include/givaro/givconfig.h include/givaro/givcra.h @@ -98,6 +99,7 @@ include/givaro/givrnsconvert.inl include/givaro/givrnscstor.inl include/givaro/givrnsfixed.h include/givaro/givrnsfixed.inl +include/givaro/givspyinteger.h include/givaro/givstack.h include/givaro/givstack.inl include/givaro/givstorage.h @@ -114,6 +116,8 @@ include/givaro/givvectorsparse.h include/givaro/givvectorsparse.inl include/givaro/givvectsparseops.inl include/givaro/givzpz.h +include/givaro/givzpzGen.h +include/givaro/givzpzGen.inl include/givaro/givzpz16std.h include/givaro/givzpz16std.inl include/givaro/givzpz16table1.h @@ -135,230 +139,9 @@ include/gmp++/gmp++_rat.inl lib/libgivaro.a lib/libgivaro.so lib/libgivaro.so.0 -lib/libgivaro.so.0.3.0 -%%DOXYGEN%%%%DOCSDIR%%/givaro-dev-html/.keep-me -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/AUTHORS -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/COPYING -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/INSTALL -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/_formulas.tex -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/_g_f128_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/_g_firreducible_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/_modular_square_root_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/_polynomial_c_r_t_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/_prob_lucas_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/_r_s_a__breaking_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/_r_s_a__decipher_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/_r_s_a__encipher_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/_r_s_a__keys__generator_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/_test___extension_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/all__field_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/annotated.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/bc_s.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/bdwn.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/bib.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_array_allocatort.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_base_timer.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_g_i_v__rand_iter.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_integer.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_key.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_montgomery_3_01_std32_01_4.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_r_n_ssystem.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_r_n_ssystem_fixed.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_vector_dom.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_zpz_dom_3_01_integer_01_4.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_zpz_dom_3_01_log16_01_4.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_zpz_dom_3_01_std16_01_4.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_zpz_dom_3_01_std32_01_4.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_zpz_dom_3_01_std64_01_4.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/class_givaro_1_1_zpz_dom_3_01_unsigned32_01_4.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/classes.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/closed.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_06853762e3b771dad37cd9ffdcf5a76f.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_0aacf3aed1a5c7085b23ed9486273ee2.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_19d63ea48e84e9e656741462292bb4aa.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_3a8de958573745cf964743e5b3f7ae6f.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_561c0e0604248f0444604ae9cf7c45c0.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_59425e443f801f1f2fd8bbe4959a3ccf.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_68267d1309a1af8e8297ef4c3efbcdba.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_6c86514ac9651b4de1304c66e1a8bd47.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_6e91955445987a605d977a8726f728ec.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_77133a1247205623052490e805ea07de.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_916543caed20fa107fd9b47082bebf34.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_95ee355c301ccfc6f0bed57aaf17abd1.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_b7011461ce8fd18a51117dabb438e70f.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_bd706fa796d5fc4fbd8e05394c050856.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_cbd7f246bdf7dc0a50281a272327e6ed.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_cfddc3e4738eb751c9ecb1dcd81b4d56.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_d28a4824dc47e487b107a5db32ef43c4.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_d2901aef30a976160da4d12897d52c33.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_de7304dca49810a8acb63d3f86914e8f.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dir_f518930938cfcd84bbf44252662b2c18.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/domain__to__operatorstyle_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/doxygen.css -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/doxygen.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/dynsections.js -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_finite_field_2_g_f128_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_finite_field_2_g_firreducible_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_finite_field_2_test__extension_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_finite_field_2all_field_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_finite_field_2domain_to_operatorstyle_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_finite_field_2exponentation_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_finite_field_2ff_arith_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_finite_field_2gfq_atomic_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_finite_field_2zpz_atomic_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2_modular_square_root_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2_prob_lucas_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2_r_s_a_breaking_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2_r_s_a_decipher_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2_r_s_a_encipher_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2_r_s_a_keys_generator_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2iexponentiation_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2ifactor_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2ifactor_lenstra_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2igcd_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2igcdext_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2ilcm_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2ispower_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2isprime_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2isproot_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2lambda_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2lambda_inv_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2nb_primes_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2nextprime_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2order_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2phi_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2prevprime_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2primitiveelement_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2primitiveroot_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_integer_2probable_primroot_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_polynomial_2_polynomial_c_r_t_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_polynomial_2highorder_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_polynomial_2interpolate_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_polynomial_2isirred_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_polynomial_2isprimitive_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_polynomial_2pol_arith_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_polynomial_2pol_eval_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_polynomial_2pol_factor_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_polynomial_2trunc_arith_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_rational_2iratrecon_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/examples_2_rational_2polydouble_8_c-example.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/exponentiation_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ff__arith_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/files.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ftv2blank.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ftv2doc.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ftv2folderclosed.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ftv2folderopen.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ftv2lastnode.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ftv2link.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ftv2mlastnode.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ftv2mnode.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ftv2node.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ftv2plastnode.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ftv2pnode.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ftv2splitbar.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ftv2vertline.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_d.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_e.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_g.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_i.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_m.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_n.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_o.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_r.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_s.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_v.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_z.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_~.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_func.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_rela.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_type.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/functions_vars.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/gfq__atomic_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givcra_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/giverror_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givextension_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givgfq_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givgfqkron_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givhashtable_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givlist0_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givmontg32_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givprimes16_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givrandom_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givrns_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givrnsfixed_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givtablelimits_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givzpz16std_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givzpz16table1_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givzpz32uns_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givzpz64std_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givzpz_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givzpz_int_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/givzpztypes_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/globals.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/globals_func.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/gmp_09_09__int_8h.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/group__givaro.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/group__gmp.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/hierarchy.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/highorder_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/iexponentiation_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ifactor_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ifactor__lenstra_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/igcd_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/igcdext_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ilcm_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/index.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/interpolate_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/iratrecon_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/isirred_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/ispower_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/isprimitive_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/isproot_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/jquery.js -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/lambda_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/lambda__inv_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/modules.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/namespace_givaro.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/namespacemembers.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/namespacemembers_func.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/namespaces.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/nav_f.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/nav_g.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/nav_h.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/nb__primes_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/nextprime_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/open.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/order_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/pages.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/phi_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/pol__arith_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/pol__eval_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/pol__factor_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/polydouble_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/prevprime_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/primitiveelement_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/primitiveroot_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/probable__primroot_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/sync_off.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/sync_on.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/tab_a.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/tab_b.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/tab_h.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/tab_s.png -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/tabs.css -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/test-crt_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/test-random_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/test.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/todo.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/trunc__arith_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro-html/zpz__atomic_8_c.html -%%DOXYGEN%%%%DOCSDIR%%/givaro.html -%%DOXYGEN%%@dirrm %%DOCSDIR%%/givaro-dev-html -%%DOXYGEN%%@dirrm %%DOCSDIR%%/givaro-html -%%DOXYGEN%%@dirrm %%DOCSDIR%% +lib/libgivaro.so.0.6.0 +%%PORTDOCS%%%%DOCSDIR%%/givaro.html +%%PORTDOCS%%@dirrm %%DOCSDIR%%/givaro-html +%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm include/givaro @dirrm include/gmp++