diff options
author | Maik Schreiber <blizzy@gentoo.org> | 2002-07-20 19:36:01 +0000 |
---|---|---|
committer | Maik Schreiber <blizzy@gentoo.org> | 2002-07-20 19:36:01 +0000 |
commit | e1de98398de9bc2391304e94c80e55c31690e6ea (patch) | |
tree | 0b46bb534739300500ffe406f8e61caeea910521 /net-misc/upnp/upnp-1.0.4.ebuild | |
parent | adjusted keywords (diff) | |
download | gentoo-2-e1de98398de9bc2391304e94c80e55c31690e6ea.tar.gz gentoo-2-e1de98398de9bc2391304e94c80e55c31690e6ea.tar.bz2 gentoo-2-e1de98398de9bc2391304e94c80e55c31690e6ea.zip |
initial import
Diffstat (limited to 'net-misc/upnp/upnp-1.0.4.ebuild')
-rw-r--r-- | net-misc/upnp/upnp-1.0.4.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/net-misc/upnp/upnp-1.0.4.ebuild b/net-misc/upnp/upnp-1.0.4.ebuild new file mode 100644 index 000000000000..313a4a0bc1cf --- /dev/null +++ b/net-misc/upnp/upnp-1.0.4.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/upnp/upnp-1.0.4.ebuild,v 1.1 2002/07/20 19:36:01 blizzy Exp $ + +S="${WORKDIR}/${PN}sdk-${PV}" + +DESCRIPTION="Intel's UPnP SDK" +HOMEPAGE="http://upnp.sourceforge.net" +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/upnp/${PN}sdk-${PV}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="x86" + +RDEPEND="sys-apps/e2fsprogs" +DEPEND="${RDEPEND}" + +src_compile() { + 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 +} |