Skip to content

Commit

Permalink
games-puzzle/tint: Stop using games.eclass
Browse files Browse the repository at this point in the history
Package-Manager: Portage-2.3.31, Repoman-2.3.9
  • Loading branch information
pacho2 committed May 1, 2018
1 parent 166b1e2 commit e7084aa
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions games-puzzle/tint/tint-0.03b-r1.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

MY_P="${P/-/_}"
DESCRIPTION="Tint Is Not Tetris, a ncurses based clone of the original Tetris(tm) game"
HOMEPAGE="http://oasis.frogfoot.net/code/tint/"
SRC_URI="http://oasis.frogfoot.net/code/tint/download/${PV}/${MY_P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86 ~x86-fbsd"
IUSE=""

DEPEND=">=sys-libs/ncurses-5.4-r1:0="
RDEPEND="${DEPEND}"

PATCHES=( "${FILESDIR}"/${P}-ovflfix.patch )

src_compile() {
emake \
STRIP=true \
CFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}" \
localstatedir="/var/lib"
}

src_install() {
dobin tint
doman tint.6
dodoc CREDITS NOTES
insopts -m 0664
insinto /var/lib
doins tint.scores
}

0 comments on commit e7084aa

Please sign in to comment.