diff options
author | 2018-05-01 14:06:47 +0200 | |
---|---|---|
committer | 2018-05-01 21:32:59 +0200 | |
commit | 019feb57d3657d0b19335f8d4488da5d7c62486d (patch) | |
tree | 5d226e3697e50f620c222a6fea3aa4918bde8822 /games-puzzle/gweled/gweled-0.9.1-r2.ebuild | |
parent | games-puzzle/gtkballs: Drop old (diff) | |
download | gentoo-019feb57d3657d0b19335f8d4488da5d7c62486d.tar.gz gentoo-019feb57d3657d0b19335f8d4488da5d7c62486d.tar.bz2 gentoo-019feb57d3657d0b19335f8d4488da5d7c62486d.zip |
games-puzzle/gweled: Stop using games.eclass
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-puzzle/gweled/gweled-0.9.1-r2.ebuild')
-rw-r--r-- | games-puzzle/gweled/gweled-0.9.1-r2.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/games-puzzle/gweled/gweled-0.9.1-r2.ebuild b/games-puzzle/gweled/gweled-0.9.1-r2.ebuild new file mode 100644 index 000000000000..0f88623656e1 --- /dev/null +++ b/games-puzzle/gweled/gweled-0.9.1-r2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools flag-o-matic + +DESCRIPTION="Bejeweled clone game" +HOMEPAGE="http://www.gweled.org/" +SRC_URI="https://launchpad.net/gweled/trunk/${PV}/+download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + x11-libs/gtk+:2 + media-libs/libmikmod + gnome-base/librsvg:2 +" +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +src_prepare() { + default + eapply "${FILESDIR}"/${P}-gentoo.patch + mv configure.in configure.ac || die + eautoreconf +} + +src_configure() { + filter-flags -fomit-frame-pointer + append-ldflags -Wl,--export-dynamic + + econf --disable-setgid +} |