# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.7.ebuild,v 1.4 2005/05/06 16:32:55 dholm Exp $ DESCRIPTION="GNU Linear Programming Kit" SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" HOMEPAGE="http://www.gnu.org/software/glpk/" SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86 ~amd64 ~ppc" IUSE="doc" RDEPEND="sys-libs/glibc" DEPEND=">=sys-devel/gcc-3.2 sys-libs/glibc doc? ( virtual/ghostscript )" src_compile() { LIBS="${LIBS} -lm" econf --enable-shared || die emake || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" # base docs dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README || \ die "failed to install docs" # examples go into /usr/share/ dodir /usr/share/${P}/examples || die insinto /usr/share/${P}/examples || die doins examples/*.mod && doins examples/*.tsp || \ die "failed to install examples" # docs if use doc; then cd "${S}"/doc for i in *.ps; do ps2pdf14 "${i}" || die "failed to convert ps to pdf" done dodoc ./* || die "failed to install manual files" fi }