diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2001-03-11 07:21:52 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2001-03-11 07:21:52 +0000 |
commit | 48edf818ee73951838cfa770c4edd73f7b5fb730 (patch) | |
tree | 3be8df660aac559fbc1ef5cabdef4b6a2fabc49e /audio/icecast/Makefile | |
parent | Upgrade to 4.30 (diff) |
Fix most of the format string abuses including those which are known to
cause a security vulnerabilities. Not fixed are a number of more subtle
cases which may or may not allow security violations (I don't have time
to conduct a thorough audit now), and which are difficult/impossible to
fix anyway without something like fmtcheck(). Document this in
pkg-install and remove FORBIDDEN tag.
Diffstat (limited to 'audio/icecast/Makefile')
-rw-r--r-- | audio/icecast/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/audio/icecast/Makefile b/audio/icecast/Makefile index 3cf961e96b50..7b5be0cac13f 100644 --- a/audio/icecast/Makefile +++ b/audio/icecast/Makefile @@ -7,15 +7,20 @@ PORTNAME= icecast PORTVERSION= 1.3.7 +PORTREVISION= 1 CATEGORIES= audio net MASTER_SITES= http://www.icecast.org/releases/ -FORBIDDEN= "Remotely exploitable buffer overflow" MAINTAINER= chip@eboai.org HAS_CONFIGURE= yes CONFIGURE_ARGS=--with-libwrap +pre-fetch: +.if !defined(BATCH) && !defined(PACKAGE_BUILDING) + ${SH} pkg-install +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/icecast ${PREFIX}/sbin ${MKDIR} ${PREFIX}/etc/icecast/conf |