2021-04-19 08:47:28 +03:00
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
2011-11-09 11:33:19 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2014-03-26 21:01:15 +04:00
|
|
|
|
2021-04-19 08:47:28 +03:00
|
|
|
EAPI=7
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
inherit toolchain-funcs
|
|
|
|
|
|
|
|
DESCRIPTION="UZ2 Decompressor for UT2003/UT2004"
|
|
|
|
HOMEPAGE="http://icculus.org/cgi-bin/ezmlm/ezmlm-cgi?42:mss:1013:200406:kikgppboefcimdbadcdo"
|
|
|
|
SRC_URI="mirror://gentoo/${P}.tar.bz2"
|
|
|
|
|
2014-03-26 21:01:15 +04:00
|
|
|
LICENSE="public-domain"
|
2011-11-09 11:33:19 +04:00
|
|
|
SLOT="0"
|
2017-11-19 20:50:15 +03:00
|
|
|
KEYWORDS="~amd64 ~x86"
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
DEPEND="sys-libs/zlib"
|
2021-04-19 08:47:28 +03:00
|
|
|
RDEPEND="${DEPEND}"
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
src_compile() {
|
2014-03-26 21:01:15 +04:00
|
|
|
emake CC="$(tc-getCC)" LDLIBS=-lz ${PN}
|
2011-11-09 11:33:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
2014-03-26 21:01:15 +04:00
|
|
|
dobin ${PN}
|
2011-11-09 11:33:19 +04:00
|
|
|
dodoc README
|
|
|
|
}
|