-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi all,
i'm not sure if this is the right place for my question, if not, please tell me the right one. I'm trying to write an ebuild for a math software called polymake. It uses a non-autotools, makefile and perl based configuration mechanism. This thing will ask questions to the user during the make process. These questions can be answered using the information from make.conf, so it should be automated? Now my question is: How to do it in a clean way? a) Patch the makefile? b) Use a tool like "expect" to answer the questions? Attached you find my first try (which just asks the questions during merge). Thanks already, any comment is appreciated. Thomas -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.7 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHlQ8frpEWPKIUt7MRAu4iAJ91qP9PbuoQD/K03ZnbaMDYk0jG+ACfYjgr bTHNPH5uenMxa3pF/FrNsco= =qIaQ -----END PGP SIGNATURE-----
# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit eutils IUSE="fullconfig" DESCRIPTION="research tool for polyhedral geometry" SRC_URI="http://www.math.tu-berlin.de/polymake/download/polymake-2.3.tar.bz2" HOMEPAGE="http://www.math.tu-berlin.de/polymake" SLOT="0" LICENSE="GPL-3" KEYWORDS="~x86" DEPEND="dev-libs/gmp >=sys-devel/gcc-4.1.2" src_compile(){ # Interactive Configuration if use fullconfig; then emake configure || die "configuration failed" fi einfo "Due to heavy template usage by the package it requires" einfo "up to 300MB of RAM per process. Use MAKEOPTS="-j1" if" einfo "you run into trouble." if ! use fullconfig; then elog "Polymake will be built with -O3 which is considered safe" elog "Set useflag fullconfig to change" fi emake || die "emake failed" } src_install(){ emake DESTDIR="${D}" install || die "install failed" } pkg_postinst(){ elog "You will need to set up your PATH to use Polymake" elog "If you use bash add " elog "PATH=\$PATH:/usr/local/polymake/bin;" elog "to your .bashrc" }