mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
eccf5db03a
Maintainers for these ports have been notified on 5 separate occasions over the course of several months about pending actions required. We really appreciate the time and effort you put in to maintain these ports. If you are still interested in helping to maintain these ports just reply to me or file a PR and I will happily assign the port to you again. Approved by: portmgr (implicit)
43 lines
1019 B
Makefile
43 lines
1019 B
Makefile
# Created by: Yuichiro AIZAWA <yaizawa@2004.jukuin.keio.ac.jp>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= neroaaccodec
|
|
PORTVERSION= 1.5.1
|
|
CATEGORIES= audio multimedia linux
|
|
MASTER_SITES= ftp://ftp6.nero.com/tools/
|
|
PKGNAMEPREFIX= linux-
|
|
DISTNAME= NeroAACCodec-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Nero AAC reference quality MPEG-4 and 3GPP audio codec
|
|
|
|
USES= dos2unix zip
|
|
USE_LINUX= yes
|
|
DOS2UNIX_REGEX= .*\.txt
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
RESTRICTED= Solely for personal non-commercial and/or technology-evaluation purposes. No reproduction and/or distribution permitted.
|
|
|
|
PLIST_FILES= bin/neroAacDec \
|
|
bin/neroAacEnc \
|
|
bin/neroAacTag
|
|
|
|
PORTDOCS= NeroAAC_tut.pdf \
|
|
changelog.txt \
|
|
license.txt \
|
|
readme.txt
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
.for f in ${PLIST_FILES}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/linux/${f:T} ${STAGEDIR}${PREFIX}/bin
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|