URI: 
       pointtools-9999.ebuild - parlay - yet another gentoo overlay
  HTML git clone https://git.parazyd.org/parlay
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       pointtools-9999.ebuild (553B)
       ---
            1 # Copyright 1999-2025 Gentoo Authors
            2 # Distributed under the terms of the GNU General Public License v2
            3 
            4 EAPI=8
            5 
            6 inherit git-r3
            7 
            8 DESCRIPTION="Tools to present point files"
            9 HOMEPAGE="http://bitreich.org"
           10 EGIT_REPO_URI="git://bitreich.org/pointtools"
           11 
           12 LICENSE="GPL-3"
           13 SLOT="0"
           14 KEYWORDS=""
           15 IUSE="static"
           16 
           17 DEPEND="sys-libs/ncurses:0"
           18 
           19 src_prepare() {
           20         default
           21 
           22         if use static; then
           23                 echo "LDFLAGS += -static" >> config.mk
           24         fi
           25 }
           26 
           27 src_compile() {
           28         emake
           29 }
           30 
           31 src_install() {
           32         emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
           33         dodoc -r README.md examples
           34 }