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.
26 lines
571 B
26 lines
571 B
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=0
|
|
|
|
MY_PN="${PN/-/_}"
|
|
MY_P="${MY_PN}-${PV}"
|
|
DESCRIPTION="Multicast Helper Library"
|
|
HOMEPAGE="http://horms.net/projects/vanessa/"
|
|
SRC_URI="http://horms.net/projects/vanessa/download/${MY_PN}/${PV}/${MY_P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~ppc"
|
|
IUSE=""
|
|
|
|
DEPEND=">=dev-libs/vanessa-logger-0.0.6
|
|
>=net-libs/vanessa-socket-0.0.7"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
src_install() {
|
|
make DESTDIR="${D}" install || die
|
|
dodoc README NEWS AUTHORS TODO INSTALL
|
|
}
|