diff options
Diffstat (limited to 'games-board/mah-jong/mah-jong-1.8.ebuild')
-rw-r--r-- | games-board/mah-jong/mah-jong-1.8.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/games-board/mah-jong/mah-jong-1.8.ebuild b/games-board/mah-jong/mah-jong-1.8.ebuild new file mode 100644 index 000000000000..bc0d8a32e3e0 --- /dev/null +++ b/games-board/mah-jong/mah-jong-1.8.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/mah-jong/mah-jong-1.8.ebuild,v 1.1 2007/10/30 21:31:45 tupone Exp $ + +inherit eutils toolchain-funcs games + +MY_P="mj-${PV}-src" +DESCRIPTION="A networked Mah Jong program, together with a computer player" +HOMEPAGE="http://www.stevens-bradfield.com/MahJong/" +SRC_URI="http://www.stevens-bradfield.com/MahJong/Source/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="=x11-libs/gtk+-1.2*" +DEPEND="${RDEPEND} + dev-lang/perl" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + unpack ${A} + cd "${S}" + + sed -i \ + -e '/^.TH/ s/1/6/' xmj.man \ + || die "sed failed" + sed -i \ + -e "/^DESTDIR =/ s:=.*:= ${D}:" \ + -e "/^BINDIR =/ s:=.*:= ${GAMES_BINDIR}:" \ + -e '/^MANDIR =/ s:man/man1:/usr/share/man/man6:' \ + -e '/^MANSUFFIX =/ s:1:6:' \ + -e "/^CC =/ s:gcc:$(tc-getCC):" \ + -e "/^CFLAGS =/ s:=:= ${CFLAGS}:" \ + -e "/^LDLIBS =/ s:$:${LDFLAGS}:" \ + -e '/^INSTPGMFLAGS =/ s:-s::' \ + -e '/^CDEBUGFLAGS =/d' \ + -e "/^TILESETPATH=/ s:NULL:\"${GAMES_DATADIR}/${PN}/\":" Makefile \ + || die "sed failed" +} + +src_install() { + emake install install.man || die "emake install failed" + insinto "${GAMES_DATADIR}/${PN}" + doins -r fallbacktiles/ tiles-numbered/ tiles-small/ || die "doins failed" + newicon tiles-v1/tongE.xpm ${PN}.xpm + make_desktop_entry xmj Mah-Jong ${PN}.xpm + dodoc CHANGES ChangeLog *.txt + prepgamesdirs +} |