Files
@ 91eaead77c75
Branch filter:
Location: ohnobinki_overlay/app-emacs/imaxima/imaxima-1.0_rc2.ebuild - annotation
91eaead77c75
1.1 KiB
application/vnd.gentoo.ebuild
net-irc/unrealircd: changed dep on curl[ares,-ipv6] to curl
The ebuild had previously incorrectly carried a message saying that unrealircd required a copy of curl with ares built in and that curl's ipv6 useflag disables it's ares useflag even if portage records curl's cares flag as being set. The latter is true, but unrealircd runs fine with a copy of curl that is compiled without cares (which equals c-ares).
The ebuild had previously incorrectly carried a message saying that unrealircd required a copy of curl with ares built in and that curl's ipv6 useflag disables it's ares useflag even if portage records curl's cares flag as being set. The latter is true, but unrealircd runs fine with a copy of curl that is compiled without cares (which equals c-ares).
10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 c01c296fde24 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 10567ef3bdc0 | # Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/imaxima/imaxima-1.0_rc2.ebuild,v 1.3 2009/03/18 16:09:18 ulm Exp $
inherit elisp
MY_P="${PN}-imath-${PV/_}"
DESCRIPTION="Imaxima enables graphical output in Maxima sessions with emacs"
HOMEPAGE="http://members3.jcom.home.ne.jp/imaxima/Site/Welcome.html"
SRC_URI="http://members3.jcom.home.ne.jp/imaxima/Site/Download_and_Install_files/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="examples"
DEPEND=""
RDEPEND="virtual/latex-base
virtual/ghostscript
|| ( dev-tex/mh dev-texlive/texlive-mathextra )
sci-mathematics/maxima"
SITEFILE="50${PN}-gentoo.el"
S="${WORKDIR}/${MY_P}"
src_compile() {
econf --with-lispdir="${SITELISP}/${PN}" || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
dodoc ChangeLog NEWS README || die
if use examples; then
docinto imath-example
dodoc imath-example/*.txt || die
dohtml -r imath-example/. || die
fi
}
|