2020-08-30 14:01:49 +03:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
2016-08-25 09:11:19 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2020-08-30 14:01:49 +03:00
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
inherit toolchain-funcs
|
2016-08-25 09:11:19 +03:00
|
|
|
|
|
|
|
DESCRIPTION="linux implementation of the mirc dccserver command"
|
2018-05-22 08:46:22 +03:00
|
|
|
HOMEPAGE="https://www.nih.at/dccserver/"
|
|
|
|
SRC_URI="https://www.nih.at/dccserver/${P}.tar.gz"
|
2020-08-30 14:01:49 +03:00
|
|
|
|
2016-08-25 09:11:19 +03:00
|
|
|
LICENSE="BSD"
|
|
|
|
SLOT="0"
|
2018-04-17 09:23:08 +03:00
|
|
|
KEYWORDS="amd64 ppc x86"
|
2016-08-25 09:11:19 +03:00
|
|
|
|
2020-08-30 14:01:49 +03:00
|
|
|
src_prepare() {
|
|
|
|
default
|
|
|
|
|
|
|
|
# Respect AR
|
|
|
|
sed -i -e "s/AR = /AR ?= /" lib/Makefile.in || die
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
AR="$(tc-getAR)" default
|
|
|
|
}
|