You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-puzzle/triptych-demo/triptych-demo-0.ebuild

47 lines
1.1 KiB

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/triptych-demo/triptych-demo-0.ebuild,v 1.10 2014/04/17 16:21:16 ulm Exp $
inherit eutils games
DESCRIPTION="fast-paced tetris-like puzzler"
HOMEPAGE="http://www.chroniclogic.com/triptych.htm"
SRC_URI="http://s159260531.onlinehome.us/demos/triptych.tar.gz"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="-* x86"
IUSE=""
RESTRICT="mirror bindist strip"
DEPEND="x11-libs/libXext
media-libs/libsdl
virtual/opengl"
RDEPEND=""
S=${WORKDIR}/triptych
src_install() {
local dir=${GAMES_PREFIX_OPT}/${PN}
dodir "${dir}" "${GAMES_BINDIR}"
cp -pPR * "${D}"/${dir}/
games_make_wrapper triptych ./triptych "${dir}"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
# Fix perms on status files #74217
local f
for f in triptych.{clr,cnt,scr} ; do
f="${ROOT}/${GAMES_PREFIX_OPT}/${PN}/${f}"
if [[ ! -e ${f} ]] ; then
touch "${f}"
chmod 660 "${f}"
chown ${GAMES_USER}:${GAMES_GROUP} "${f}"
fi
done
}