dc5157c024
The portable SDK for UPnP Devices (libupnp) provides developers with an API and open source code for building control points, devices, and bridges that are compliant with Version 1.0 of the Universal Plug and Play Device Architecture Specification. UPnP is an architecture that enables discovery, event notification, and control of devices on a network, independent of operating system, programming language, or physical network connection. UPnP is based on common Internet standards and specifications such as TCP/IP, HTTP, and XML.
38 lines
829 B
Makefile
Executable File
38 lines
829 B
Makefile
Executable File
# $OpenBSD: Makefile,v 1.1.1.1 2010/03/22 22:25:50 ajacoutot Exp $
|
|
|
|
COMMENT= Universal Plug and Play SDK
|
|
|
|
DISTNAME= libupnp-1.6.6
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
CATEGORIES= net devel
|
|
|
|
SHARED_LIBS += ixml 0.0 # .2.4
|
|
SHARED_LIBS += threadutil 0.0 # .4.3
|
|
SHARED_LIBS += upnp 0.0 # .3.5
|
|
|
|
HOMEPAGE= http://pupnp.sourceforge.net/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pupnp/}
|
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
# HAVE_COMPAT does not do anything
|
|
CONFIGURE_ENV= ac_cv_cflags_gcc_option__Os=no \
|
|
ac_cv_lib_compat_ftime=no
|
|
|
|
.ifdef DEBUG
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|