fab0a6a0f0
- Use DATADIR macro PR: ports/95452 Submitted by: Alexander Botero-Lowry <alex@foxybanana.com>
99 lines
2.5 KiB
Makefile
99 lines
2.5 KiB
Makefile
# New ports collection makefile for: freeamp
|
|
# Date Created: 26 Oct 2000
|
|
# Whom: Roman Shterenzon <roman@xpert.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= zinf
|
|
PORTVERSION= 2.2.5
|
|
PORTREVISION= 5
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GTK-based MP3 player
|
|
|
|
LIB_DEPENDS= id3-3.8.3:${PORTSDIR}/audio/id3lib \
|
|
musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \
|
|
gdbm.3:${PORTSDIR}/databases/gdbm
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_GNOME= gnomehack gnometarget gtk20 lthack
|
|
WANT_GNOME= yes
|
|
USE_PERL5= yes
|
|
USE_GETTEXT= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
CONFIGURE_ARGS= --enable-ipv6
|
|
|
|
CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
|
|
LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "i386"
|
|
BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/nasm
|
|
CPPFLAGS+= "-D_M_IX86"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-x86opts
|
|
.endif
|
|
|
|
.if ${ARCH} == "alpha"
|
|
CPPFLAGS+= "-D_M_ALPHA"
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 500035
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libstlport_gcc.so:${PORTSDIR}/devel/stlport
|
|
RUN_DEPENDS+= ${LOCALBASE}/lib/libstlport_gcc.so:${PORTSDIR}/devel/stlport
|
|
CFLAGS+= -O0
|
|
CPPFLAGS+= -I${LOCALBASE}/include/stlport
|
|
LDFLAGS+= -lstlport_gcc
|
|
.endif
|
|
|
|
.if ${HAVE_GNOME:Mesound}!="" || defined(WITH_ALL_PLUGINS)
|
|
USE_GNOME+= esound
|
|
PLIST_SUB+= ESOUND=""
|
|
PKGNAMESUFFIX= -esound
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-esd
|
|
PLIST_SUB+= ESOUND="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_LIBARTS) || defined(WITH_ALL_PLUGINS)
|
|
LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts
|
|
PLIST_SUB+= LIBARTS=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-arts
|
|
PLIST_SUB+= LIBARTS="@comment "
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_VORBIS) || defined(WITH_ALL_PLUGINS)
|
|
LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis
|
|
PLIST_SUB+= VORBIS=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-vorbis
|
|
PLIST_SUB+= VORBIS="@comment "
|
|
.endif
|
|
|
|
pre-everything::
|
|
@${ECHO_MSG}
|
|
@${ECHO_MSG} "You may use the following build options:"
|
|
@${ECHO_MSG}
|
|
@${ECHO_MSG} "WITH_LIBARTS=yes build with libArts output plugin"
|
|
@${ECHO_MSG} "WITHOUT_GNOME=esound do NOT build with esd support"
|
|
@${ECHO_MSG} "WITHOUT_VORBIS=yes do NOT build with Ogg/Vorbis codec plugin"
|
|
@${ECHO_MSG}
|
|
@${ECHO_MSG} "WITH_ALL_PLUGINS=yes build with all plugins"
|
|
@${ECHO_MSG}
|
|
|
|
post-install:
|
|
@${MKDIR} ${PREFIX}/etc/sdr/plugins
|
|
${INSTALL_DATA} ${FILESDIR}/sdr2.plugin.S100.audio.rtp.mpa.zinf \
|
|
${PREFIX}/etc/sdr/plugins
|
|
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DATADIR}
|
|
|
|
.include <bsd.port.post.mk>
|