From 4f2d7949f03e1c198bc888f2d05f421d35c57e21 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 9 Oct 2017 18:53:29 +0100 Subject: reinit the tree, so we can have metadata --- sci-libs/xgks-pmel/xgks-pmel-2.5.5.ebuild | 80 +++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 sci-libs/xgks-pmel/xgks-pmel-2.5.5.ebuild (limited to 'sci-libs/xgks-pmel/xgks-pmel-2.5.5.ebuild') diff --git a/sci-libs/xgks-pmel/xgks-pmel-2.5.5.ebuild b/sci-libs/xgks-pmel/xgks-pmel-2.5.5.ebuild new file mode 100644 index 000000000000..a329866fa003 --- /dev/null +++ b/sci-libs/xgks-pmel/xgks-pmel-2.5.5.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=4 + +inherit eutils fortran-2 toolchain-funcs multilib + +DESCRIPTION="PMEL fork of XGKS, an X11-based version of the ANSI Graphical Kernel System" +HOMEPAGE="http://www.gentoogeek.org/viewvc/Linux/xgks-pmel/" +SRC_URI="http://www.gentoogeek.org/files/${P}.tar.gz" + +LICENSE="UCAR-Unidata" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="doc" + +RDEPEND=" + x11-libs/libX11" +DEPEND="${RDEPEND} + sys-devel/flex + sys-apps/groff" + +src_prepare() { + epatch "${FILESDIR}"/aclocal.patch +} + +src_configure() { + sed -i -e "s:lib64:$(get_libdir):g" port/master.mk.in \ + fontdb/Makefile.in || die + + CFLAGS=${CFLAGS} LD_X11='-L/usr/$(get_libdir) -lX11' \ + FC=$(tc-getFC) CC=$(tc-getCC) OS=linux \ + ./configure --prefix=/usr --exec_prefix=/usr/bin \ + || die +} + +src_compile() { + sed -i -e "s:port/all port/install:port/all:g" Makefile \ + || die + + # Fails parallel build, bug #295724 + emake -j1 + + cd src/fortran + emake -j1 +} + +src_install() { + cd "${S}"/progs + + for tool in {defcolors,font,mi,pline,pmark}; do + newbin ${tool} xgks-${tool} + done + + cd "${S}" + dolib.a src/lib/libxgks.a + + dodoc COPYRIGHT HISTORY INSTALL README + doman doc/{xgks.3,xgks_synop.3} + if use doc; then + newdoc doc/binding/cbinding.me cbinding + newdoc doc/userdoc/userdoc.me userdoc + insinto /usr/share/doc/${P}/examples + doins progs/{hanoi.c,star.c} + fi + + insinto /usr/include/xgks + doins src/lib/gks*.h + doins src/lib/gksm/gksm*.h + doins src/fortran/f*.h + doins src/lib/w*.h + doins src/lib/{input.h,metafile.h,polylines.h,polymarkers.h,text.h} + + insinto /usr/include + doins src/lib/xgks.h + doins port/udposix.h + + insinto /usr/share/xgksfonts + doins fontdb/{[1-9],*.gksfont} +} -- cgit v1.2.3