1 |
# Copyright 1999-2004 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /var/cvsroot/gentoo-x86/net-misc/upnp/upnp-1.0.4.ebuild,v 1.10 2004/07/15 03:42:14 agriffis Exp $ |
4 |
|
5 |
S="${WORKDIR}/${PN}sdk-${PV}" |
6 |
|
7 |
DESCRIPTION="Intel's UPnP SDK" |
8 |
HOMEPAGE="http://upnp.sourceforge.net" |
9 |
SRC_URI="mirror://sourceforge/upnp/${PN}sdk-${PV}.tar.gz" |
10 |
RESTRICT="nomirror" |
11 |
LICENSE="BSD" |
12 |
SLOT="0" |
13 |
KEYWORDS="x86 sparc ~ppc" |
14 |
IUSE="" |
15 |
|
16 |
DEPEND="sys-fs/e2fsprogs" |
17 |
|
18 |
src_compile() { |
19 |
emake || die "compile problem" |
20 |
} |
21 |
|
22 |
src_install () { |
23 |
dolib.so bin/libupnp.so |
24 |
|
25 |
dodir /usr/include/upnp |
26 |
dodir /usr/include/upnp/tools |
27 |
dodir /usr/include/upnp/upnpdom |
28 |
|
29 |
insinto /usr/include/upnp |
30 |
doins inc/*.h |
31 |
insinto /usr/include/upnp/tools |
32 |
doins inc/tools/*.h |
33 |
insinto /usr/include/upnp/upnpdom |
34 |
doins inc/upnpdom/*.h |
35 |
docinto sample |
36 |
dodoc LICENSE README |
37 |
} |