freebsd-ports/audio/lame/Makefile
Alexander Leidinger b62b785f2d - (finally) update to 3.92
- take over maintainership (after some months of maintainer timeout)
  Note: I have write access to the LAME repository, I think this is enough
        to justify this and the following decisions.
- remove gtk support (it's only useful for active mp3 algorithm developers,
  and if you use it, you use the CVS version of it, so there's no need to
  install it)
- don't add vorbis support from PR 39606:
  * there are much better tools to encode ogg vorbis
  * there's no support from the LAME developers (FreeBSD would be the
    only OS with working vorbis in LAME)
  * it will get removed in a later LAME version

Submitted by:	many, see PRs
PR:		39606, 43255, 43727
2002-10-08 09:23:42 +00:00

49 lines
1.2 KiB
Makefile

# ports collection makefile for: lame
# Date created: 11 January 1998
# Whom: yoshiaki Uchikawa
#
# $FreeBSD$
#
PORTNAME= lame
PORTVERSION= 3.92
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
ftp://ftp.fu-berlin.de/unix/sound/%SUBDIR%/
MASTER_SITE_SUBDIR= lame
MAINTAINER= netchild@FreeBSD.org
.if ${MACHINE_ARCH} == "i386"
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
.endif
GNU_CONFIGURE= yes
INSTALLS_SHLIB= yes
USE_LIBTOOL= yes
USE_GMAKE= yes
CONFIGURE_ARGS= --enable-nasm --enable-mp3rtp --disable-gtktest
MAN1= lame.1
DOC_FILES= API LICENSE PRESETS.draft README TODO USAGE
.if defined(NOPORTDOCS)
do-install:
@cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} \
${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install-exec
@cd ${INSTALL_WRKSRC}/include && ${SETENV} ${MAKE_ENV} ${GMAKE} \
${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install-data
@cd ${INSTALL_WRKSRC}/doc/man && ${SETENV} ${MAKE_ENV} ${GMAKE} \
${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install-data
.else
post-install: install-doc
install-doc:
@${MKDIR} ${DOCSDIR}
.for file in ${DOC_FILES}
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>