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.
gentoo-overlay/net-misc/udpxy/udpxy-1.0.23.7-r1.ebuild

35 lines
901 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/udpxy/udpxy-1.0.23.7-r1.ebuild,v 1.1 2013/10/02 19:03:35 pacho Exp $
EAPI=5
inherit eutils systemd toolchain-funcs versionator
MY_PV=$(replace_version_separator 3 -)
DESCRIPTION="Small-footprint daemon to relay multicast UDP traffic to client's TCP (HTTP) connection"
HOMEPAGE="http://sourceforge.net/projects/udpxy/"
SRC_URI="http://www.udpxy.com/download/1_23/${PN}.${MY_PV}-prod.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${PN}-${MY_PV}"
src_prepare() {
epatch_user
tc-export CC
}
src_install() {
dobin udpxy
dosym udpxy /usr/bin/udpxrec
doman doc/en/*.1
dodoc CHANGES README
newinitd "${FILESDIR}/${PN}.initd" ${PN}
newconfd "${FILESDIR}/${PN}.confd" ${PN}
systemd_dounit "${FILESDIR}/${PN}.service"
}