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.
35 lines
723 B
35 lines
723 B
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit toolchain-funcs
|
|
|
|
MY_P=${P}tp
|
|
|
|
DESCRIPTION="Turns your root window into an aquarium"
|
|
HOMEPAGE="http://www.ibiblio.org/pub/Linux/X11/demos/"
|
|
SRC_URI="http://www.ibiblio.org/pub/Linux/X11/demos/${MY_P}.tar.gz"
|
|
|
|
LICENSE="public-domain"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ppc64 x86 ~x86-linux"
|
|
IUSE=""
|
|
|
|
RDEPEND="x11-libs/libX11
|
|
x11-libs/libXt
|
|
x11-libs/libXext"
|
|
DEPEND="${RDEPEND}
|
|
x11-base/xorg-proto
|
|
x11-misc/imake"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
PATCHES=( "${FILESDIR}"/${P}-implicits.patch )
|
|
|
|
src_compile() {
|
|
xmkmf || die
|
|
emake CDEBUGFLAGS="${CFLAGS}" CC="$(tc-getCC)" \
|
|
EXTRA_LDOPTIONS="${LDFLAGS}" ${PN}
|
|
}
|