summaryrefslogtreecommitdiffstats
path: root/multimedia/camserv/Makefile
diff options
context:
space:
mode:
authormezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2006-08-01 12:06:57 +0800
committermezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2006-08-01 12:06:57 +0800
commit35629ffb6cfb8371430eac1f90d201a71b5d7696 (patch)
treead720f4e77b7ff4259b66efc21d9b84aa480d6ee /multimedia/camserv/Makefile
parent13a3dc06cdbffd173f9873dc48fd686115f6ad17 (diff)
downloadmarcuscom-ports-35629ffb6cfb8371430eac1f90d201a71b5d7696.tar
marcuscom-ports-35629ffb6cfb8371430eac1f90d201a71b5d7696.tar.gz
marcuscom-ports-35629ffb6cfb8371430eac1f90d201a71b5d7696.tar.bz2
marcuscom-ports-35629ffb6cfb8371430eac1f90d201a71b5d7696.tar.lz
marcuscom-ports-35629ffb6cfb8371430eac1f90d201a71b5d7696.tar.xz
marcuscom-ports-35629ffb6cfb8371430eac1f90d201a71b5d7696.tar.zst
marcuscom-ports-35629ffb6cfb8371430eac1f90d201a71b5d7696.zip
X11BASE -> LOCALBASE, gtk12/gdk-pixbuf live in LOCALBASE.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6910 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'multimedia/camserv/Makefile')
-rw-r--r--multimedia/camserv/Makefile56
1 files changed, 56 insertions, 0 deletions
diff --git a/multimedia/camserv/Makefile b/multimedia/camserv/Makefile
new file mode 100644
index 000000000..372df28fe
--- /dev/null
+++ b/multimedia/camserv/Makefile
@@ -0,0 +1,56 @@
+# New ports collection makefile for: camserv
+# Date created: Sat 22 July 2000
+# Whom: Chuck Hein <chein@freebsd.org> & Jim Overholt <overholt@isdw.net>
+#
+# $FreeBSD$
+#
+
+PORTNAME= camserv
+PORTVERSION= 0.5.1
+PORTREVISION= 4
+PORTEPOCH= 1
+CATEGORIES= multimedia
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= cserv
+
+MAINTAINER= uspoerlein@gmail.com
+COMMENT= Camserv is a free program to do streaming video via the web
+
+LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
+ Imlib2.3:${PORTSDIR}/graphics/imlib2 \
+ gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf \
+ freetype.9:${PORTSDIR}/print/freetype2
+
+ONLY_FOR_ARCHS= i386 alpha
+
+USE_XLIB= yes
+USE_AUTOTOOLS= autoconf:259 libtool:15
+
+CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
+CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include \
+ -I${LOCALBASE}/include/gtk12 \
+ -I${LOCALBASE}/include/gdk-pixbuf-1.0 \
+ -I${LOCALBASE}/include/glib12" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+.if exists(/usr/include/dev/bktr/ioctl_bt848.h)
+post-patch:
+ @${REINPLACE_CMD} -e 's#machine/\(ioctl_bt848.h\)#dev/bktr/\1#' \
+ ${WRKSRC}/camserv/video_fbsd_bttv.c \
+ ${WRKSRC}/configure.in
+.endif
+
+.if exists(/usr/include/machine/ioctl_bt848.h) || \
+ exists(/usr/include/dev/bktr/ioctl_bt848.h)
+PLIST_SUB+= BKTR=""
+.else
+PLIST_SUB+= BKTR="@comment "
+.endif
+
+post-install:
+.if !defined(NOPORTDOCS)
+ @${MKDIR} ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/javascript.txt ${DOCSDIR}
+.endif
+
+.include <bsd.port.mk>