mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
d63665f7cd
This is a separate commit to facilitate easier cherry-picking for quarterly. PR: 262853, 262940, 262877, 263126 Approved by: fluffy (mentor)
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
# Created by: Anes Mukhametov <anes@anes.su>
|
|
|
|
PORTNAME= icecast
|
|
DISTVERSIONPREFIX= icecast-
|
|
DISTVERSION= 2.4.0-kh15
|
|
PORTREVISION= 2
|
|
CATEGORIES= audio net
|
|
PKGNAMESUFFIX= -kh
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Streaming mp3/ogg-vorbis audio server, KH branch
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libogg.so:audio/libogg \
|
|
libtheora.so:multimedia/libtheora \
|
|
libvorbis.so:audio/libvorbis
|
|
|
|
USES= gmake gnome localbase pkgconfig ssl
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= karlheyes
|
|
GH_PROJECT= icecast-kh
|
|
USE_GNOME= libxml2 libxslt
|
|
USE_RC_SUBR= icecast
|
|
|
|
CONFLICTS_INSTALL= icecast
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= OGG_PREFIX=${LOCALBASE}
|
|
# /usr/bin/ld: error: undefined symbol: ERR_get_error
|
|
LIBS+= -L${OPENSSLLIB} -lcrypto
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
OPTIONS_DEFINE= CURL DOCS KATE SPEEX
|
|
OPTIONS_DEFAULT= CURL KATE SPEEX
|
|
|
|
CURL_DESC= Support Directory server interaction (YP) via curl
|
|
KATE_DESC= Support Kate/Skeleton codec within Ogg streams
|
|
SPEEX_DESC= Support Speex codec within Ogg streams
|
|
|
|
CURL_CONFIGURE_WITH= curl=${LOCALBASE}
|
|
CURL_LIB_DEPENDS= libcurl.so:ftp/curl
|
|
|
|
KATE_CONFIGURE_WITH= kate
|
|
KATE_LIB_DEPENDS= libkate.so:multimedia/libkate
|
|
|
|
SPEEX_CONFIGURE_WITH= speex=${LOCALBASE}
|
|
SPEEX_LIB_DEPENDS= libspeex.so:audio/speex
|
|
|
|
.include <bsd.port.mk>
|