# # PREAMBLE # DESCRIPTION="Used for the symbolic expansion of a certain class of transcendental functions" HOMEPAGE="http://www.fis.unipr.it/~stefanw/nestedsums/" SRC_URI="http://www.fis.unipr.it/~stefanw/download/${P}.tar.gz" LICENSE="GPL-2" # # OPTIONS # SLOT="0" KEYWORDS="~x86" IUSE="" # # DEPENDENCIES # # Validated dependencies for nestedsums v1.1.0: # * GiNaC 1.0.9 # # Since this is a math application, it is # quite sensitive to wrinkles in core libraries, # so it'd be best to get the EXACT versions. # DEPEND="=app-sci/ginac-1.0.9*" # # BUILD # S=${WORKDIR}/${P} src_compile() { local myconf="" econf $myconf # '$myconf', _NOT_ '"$myconf"' emake || die } # # INSTALL # src_install() { make DESTDIR=${D} install || die } # # POST-INSTALL # pkg_postinst() { einfo "Running ldconfig ..." ldconfig }