blob: a5a9ac327cfb1e2dda27f32d24516c2ae5635924 (
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
37
38
39
40
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/upnp/upnp-1.0.4-r1.ebuild,v 1.7 2004/07/15 03:42:14 agriffis Exp $
inherit eutils
S="${WORKDIR}/${PN}sdk-${PV}"
DESCRIPTION="Intel's UPnP SDK"
HOMEPAGE="http://upnp.sourceforge.net"
SRC_URI="mirror://sourceforge/upnp/${PN}sdk-${PV}.tar.gz"
RESTRICT="nomirror"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 sparc ~ppc"
IUSE=""
DEPEND="sys-fs/e2fsprogs"
src_compile() {
epatch ${FILESDIR}/msmessenger.patch
emake || die "compile problem"
}
src_install () {
dolib.so bin/libupnp.so
dodir /usr/include/upnp
dodir /usr/include/upnp/tools
dodir /usr/include/upnp/upnpdom
insinto /usr/include/upnp
doins inc/*.h
insinto /usr/include/upnp/tools
doins inc/tools/*.h
insinto /usr/include/upnp/upnpdom
doins inc/upnpdom/*.h
docinto sample
dodoc LICENSE README
}
|