diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-09-07 11:51:01 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-09-07 11:51:01 +0000 |
commit | b0bf6a9cd90ae539ffba38b6007945d950fdf8f6 (patch) | |
tree | f258582d247945b088e8fa2910a253573d06bf9d /audio/icecast2/Makefile | |
parent | 9fea7fcb8eb02ad111c3695debe2d2501fac0dd6 (diff) | |
download | ports-b0bf6a9cd90ae539ffba38b6007945d950fdf8f6.tar.gz ports-b0bf6a9cd90ae539ffba38b6007945d950fdf8f6.zip |
Notes
Diffstat (limited to 'audio/icecast2/Makefile')
-rw-r--r-- | audio/icecast2/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/audio/icecast2/Makefile b/audio/icecast2/Makefile index 4882afa864bc..2c04b58aa6e1 100644 --- a/audio/icecast2/Makefile +++ b/audio/icecast2/Makefile @@ -6,11 +6,11 @@ # PORTNAME= icecast2 -PORTVERSION= 2.3.1 -PORTREVISION= 7 +PORTVERSION= 2.3.2 PORTEPOCH= 1 CATEGORIES= audio net ipv6 -MASTER_SITES= http://svn.xiph.org/releases/icecast/ +MASTER_SITES= http://downloads.xiph.org/releases/icecast/ \ + http://svn.xiph.org/releases/icecast/ DISTNAME= icecast-${PORTVERSION} MAINTAINER= ports@FreeBSD.org @@ -30,10 +30,18 @@ SUB_FILES+= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message CONFIGURE_ENV= OGG_PREFIX=${LOCALBASE} CFLAGS=-I${LOCALBASE}/include +DOCSDIR= ${PREFIX}/share/doc/icecast WRKSRC= ${WRKDIR}/icecast-${PORTVERSION} .include <bsd.port.pre.mk> +.if defined(NOPORTDOCS) +post-patch: + ${REINPLACE_CMD} \ + -e 's|SUBDIRS = src conf debian doc web admin win32 examples|SUBDIRS = src conf debian web admin win32 examples # doc|' \ + -e 's| install-exec-am install-data-am| install-exec-am|' ${WRKSRC}/Makefile.in +.endif + post-install: @${CAT} ${PKGMESSAGE} |