diff options
author | riggs <riggs@FreeBSD.org> | 2016-06-21 02:58:36 +0800 |
---|---|---|
committer | riggs <riggs@FreeBSD.org> | 2016-06-21 02:58:36 +0800 |
commit | e69947ec912e8a9554b95899691f969cd48ef480 (patch) | |
tree | 758d66817ace46862eaf91851abfabb42a180eea /audio | |
parent | 7db6a8a9aa130cefc812b0257dd002881773f3b6 (diff) | |
download | freebsd-ports-gnome-e69947ec912e8a9554b95899691f969cd48ef480.tar.gz freebsd-ports-gnome-e69947ec912e8a9554b95899691f969cd48ef480.tar.zst freebsd-ports-gnome-e69947ec912e8a9554b95899691f969cd48ef480.zip |
Update LICENSE* in audio/faac; remove from LEGAL
Detailed log:
- Remove audio/faac from LEGAL. There is no evidence that faac
may not be redistributed on sold media like FreeBSD CDs/DVDs.
Other well-established open source organisations arrive at the
same conclusion, e.g. Debian:
http://metadata.ftp-master.debian.org/changelogs//non-free/f/faac/faac_1.28-6_copyright
and, by extension, Ubuntu:
https://launchpad.net/ubuntu/trusty/+source/faac/+copyright
Arch Linux ships redistributable packages as well:
https://www.archlinux.org/packages/?sort=&repo=Extra&q=faac
- Add LICENSE* tags in audio/faac
- Bump PORTREVISION in audio/faac (package metadata changes)
- Pet portlint
PR: 209959
Submitted by: takefu@airport.fm
Reviewed by: riggs
Diffstat (limited to 'audio')
-rw-r--r-- | audio/faac/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/audio/faac/Makefile b/audio/faac/Makefile index f09dd51350d9..26a442c812cb 100644 --- a/audio/faac/Makefile +++ b/audio/faac/Makefile @@ -3,18 +3,23 @@ PORTNAME= faac PORTVERSION= 1.28 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-src/${PORTNAME}-${PORTVERSION} MAINTAINER= multimedia@FreeBSD.org COMMENT= MPEG-2 and MPEG-4 AAC audio encoder -LIB_DEPENDS= libmp4v2.so:multimedia/mp4v2 +LICENSE= GPLv2 LGPL21+ ISO +LICENSE_COMB= multi +LICENSE_NAME_ISO= ISO/IEC14496 +LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_FILE_ISO= ${WRKSRC}/README +LICENSE_PERMS_ISO= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -RESTRICTED= Distribution in binary form is prohibited +LIB_DEPENDS= libmp4v2.so:multimedia/mp4v2 -USES= autoreconf dos2unix gmake libtool tar:bzip2 +USES= autoreconf gmake libtool tar:bzip2 INSTALL_TARGET= install-strip GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-mp4v2 @@ -25,6 +30,6 @@ USE_LDCONFIG= yes post-patch: @${ECHO_CMD} "" >> ${WRKSRC}/libfaac/psych.h @${REINPLACE_CMD} -e 's|<mp4\.h>|<mp4v2/mp4v2.h>|g' \ - ${WRKSRC}/frontend/main.c \ + ${WRKSRC}/frontend/main.c .include <bsd.port.mk> |