1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-18 00:10:04 +00:00
freebsd-ports/audio/aften/Makefile
Rodrigo Osorio 06df180a9e */*: Update WWW to use HTTPS for sourceforge.net projects
Homepage link is permanent redirected to its HTTPS counterpart
Issue reported by repology : https://repology.org/repository/freebsd/problems

Approved by:	portmgr (blanket)
PR:		274888
2023-11-06 11:03:47 +01:00

47 lines
939 B
Makefile

PORTNAME= aften
PORTVERSION= 0.0.8
CATEGORIES= audio
MASTER_SITES= SF
MAINTAINER= Gabor@Zahemszky.HU
COMMENT= ATSC A/52 audio encoder
WWW= https://aften.sourceforge.net/
USES= tar:bzip2 cmake
CONFLICTS_INSTALL= wavbreaker # bin/wavinfo
OPTIONS_DEFINE= SHARED_LIB CXX_BINDINGS DOUBLE
OPTIONS_DEFAULT=
SHARED_LIB_DESC= Build with shared library
CXX_BINDINGS_DESC= Build with C++ bindings
DOUBLE_DESC= Use double precision
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MSHARED_LIB}
CMAKE_ARGS+= -DSHARED:BOOL=ON
.endif
.if ${PORT_OPTIONS:MCXX_BINDINGS}
CMAKE_ARGS+= -DBINDINGS_CXX:BOOL=ON
PLIST_SUB+= CXX=""
.else
PLIST_SUB+= CXX="@comment "
.endif
.if ${PORT_OPTIONS:MSHARED_LIB} || ${PORT_OPTIONS:MCXX_BINDINGS}
PLIST_SUB+= PORTVERSION="${PORTVERSION}"
PLIST_SUB+= LIBS=""
USE_LDCONFIG= yes
.else
PLIST_SUB+= LIBS="@comment "
.endif
.if ${PORT_OPTIONS:MDOUBLE}
CMAKE_ARGS+= -DDOUBLE:BOOL=ON
.endif
.include <bsd.port.mk>