blob: 863cb86b3b16107175e0adaf34f0127010985f1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/minissdpd/minissdpd-1.1.20120410.ebuild,v 1.1 2012/04/10 12:11:34 blueness Exp $
EAPI="4"
inherit eutils toolchain-funcs
DESCRIPTION="MiniSSDP Daemon"
SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz"
HOMEPAGE="http://miniupnp.free.fr/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="sys-apps/net-tools
|| ( net-misc/miniupnpd net-libs/miniupnpc )"
src_prepare() {
epatch "${FILESDIR}/${P}-respect-CFLAGS.patch"
epatch "${FILESDIR}/${P}-remove-initd.patch"
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install () {
einstall PREFIX="${D}"
newinitd "${FILESDIR}/${PN}.initd-r1" ${PN}
newconfd "${FILESDIR}/${PN}.confd" ${PN}
dodoc Changelog.txt README
doman minissdpd.1
}
|