mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
upgrade to 1.3.19.2a
take maintainership PR: 42738 Submitted by: Alex Dupre <sysadmin@alexdupre.com>
This commit is contained in:
parent
dfae45b9cf
commit
b3830d1366
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=66490
@ -6,13 +6,13 @@
|
||||
#
|
||||
|
||||
PORTNAME= mod_gzip
|
||||
PORTVERSION= 1.3.19.1a
|
||||
PORTVERSION= 1.3.19.2a
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= http://www.remotecommunications.com/apache/mod_gzip/src/${PORTVERSION}/
|
||||
DISTFILES= ${PORTNAME}.c.gz
|
||||
EXTRACT_ONLY= ${DISTFILES:M*.gz}
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= mod-gzip
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
MAINTAINER= sysadmin@alexdupre.com
|
||||
|
||||
BUILD_DEPENDS= ${APXS}:${APACHE_PORT}
|
||||
RUN_DEPENDS= ${APXS}:${APACHE_PORT}
|
||||
@ -20,26 +20,6 @@ RUN_DEPENDS= ${APXS}:${APACHE_PORT}
|
||||
APXS?= ${LOCALBASE}/sbin/apxs
|
||||
APACHE_PORT?= ${PORTSDIR}/www/apache13
|
||||
|
||||
.if !defined(NOPORTDOCS)
|
||||
DISTFILES+= changes.txt commands.txt samples.txt
|
||||
.endif
|
||||
|
||||
NO_WRKSUBDIR= YES
|
||||
|
||||
DIST_SUBDIR= ${PORTNAME}-${PORTVERSION}
|
||||
EXTRACT_AFTER_ARGS= > ${PORTNAME}.c
|
||||
|
||||
do-build:
|
||||
cd ${WRKSRC} && ${LOCALBASE}/sbin/apxs -c ${PORTNAME}.c
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC} && ${LOCALBASE}/sbin/apxs -A -i ${PORTNAME}.so
|
||||
|
||||
.if !defined(NOPORTDOCS)
|
||||
post-install:
|
||||
@${MKDIR} ${PREFIX}/share/doc/${PORTNAME}
|
||||
@cd ${_DISTDIR} && ${INSTALL_DATA} ${DISTFILES:N*gz} \
|
||||
${PREFIX}/share/doc/${PORTNAME}
|
||||
.endif
|
||||
ALL_TARGET= build
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,4 +1 @@
|
||||
MD5 (mod_gzip-1.3.19.1a/mod_gzip.c.gz) = 4213af3e9a6cf208fa29b04512ce7c75
|
||||
MD5 (mod_gzip-1.3.19.1a/changes.txt) = 2e8e0e9f753e886f5ce93f4cfca91fc7
|
||||
MD5 (mod_gzip-1.3.19.1a/commands.txt) = 67b10b917047747e0f209ae0317e8099
|
||||
MD5 (mod_gzip-1.3.19.1a/samples.txt) = 2b5a0521650dc87b789326d66ddbdee2
|
||||
MD5 (mod_gzip-1.3.19.2a.tgz) = a0f2247455953a961fe4dfc2e0beda50
|
||||
|
@ -1 +1 @@
|
||||
Apache module that provides on-the fly gzipping for capable browsers
|
||||
An Internet Content Acceleration module for Apache
|
||||
|
@ -1,9 +1,13 @@
|
||||
This apache's module detects the browsers capable of decompressing
|
||||
the objects on the fly and applies compression to pages, etc. sent
|
||||
to those browsers. This includes dynamicly generated content too.
|
||||
mod_gzip is an Internet Content Acceleration module for the popular
|
||||
Apache Web Server.
|
||||
|
||||
Due to browsers' bugs or for other reasons (gzip-ing a typical JPEG
|
||||
file is silly, for example) you may wish to disable compression of
|
||||
some MIME-types and mod_gzip allows you to do that.
|
||||
mod_gzip uses the well established and publicly available IETF
|
||||
Content-Encoding standards in conjunction with publicy available GZIP
|
||||
compression libraries such as ZLIB to deliver dynamically compressed
|
||||
content 'on the fly' to any browser or user-agent that is capable of
|
||||
receiving it.
|
||||
|
||||
WWW: http://www.remotecommunications.com/apache/mod_gzip/
|
||||
WWW: http://sourceforge.net/projects/mod-gzip/
|
||||
|
||||
- Alex Dupre
|
||||
sysadmin@alexdupre.com
|
||||
|
@ -1,7 +1,3 @@
|
||||
libexec/apache/mod_gzip.so
|
||||
%%PORTDOCS%%share/doc/mod_gzip/samples.txt
|
||||
%%PORTDOCS%%share/doc/mod_gzip/commands.txt
|
||||
%%PORTDOCS%%share/doc/mod_gzip/changes.txt
|
||||
%%PORTDOCS%%@dirrm share/doc/mod_gzip
|
||||
@exec ${PKG_PREFIX}/sbin/apxs -e -A -n gzip mod_gzip.so; echo " enable the mod_gzip in Apache's config manually"
|
||||
@unexec ${PKG_PREFIX}/sbin/apxs -e -A -n gzip mod_gzip.so || echo " remove the mod_gzip from Apache's config manually"
|
||||
@exec %D/sbin/apxs -e -A -n gzip %f
|
||||
@unexec %D/sbin/apxs -e -A -n gzip %f
|
||||
|
@ -6,13 +6,13 @@
|
||||
#
|
||||
|
||||
PORTNAME= mod_gzip
|
||||
PORTVERSION= 1.3.19.1a
|
||||
PORTVERSION= 1.3.19.2a
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= http://www.remotecommunications.com/apache/mod_gzip/src/${PORTVERSION}/
|
||||
DISTFILES= ${PORTNAME}.c.gz
|
||||
EXTRACT_ONLY= ${DISTFILES:M*.gz}
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= mod-gzip
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
MAINTAINER= sysadmin@alexdupre.com
|
||||
|
||||
BUILD_DEPENDS= ${APXS}:${APACHE_PORT}
|
||||
RUN_DEPENDS= ${APXS}:${APACHE_PORT}
|
||||
@ -20,26 +20,6 @@ RUN_DEPENDS= ${APXS}:${APACHE_PORT}
|
||||
APXS?= ${LOCALBASE}/sbin/apxs
|
||||
APACHE_PORT?= ${PORTSDIR}/www/apache13
|
||||
|
||||
.if !defined(NOPORTDOCS)
|
||||
DISTFILES+= changes.txt commands.txt samples.txt
|
||||
.endif
|
||||
|
||||
NO_WRKSUBDIR= YES
|
||||
|
||||
DIST_SUBDIR= ${PORTNAME}-${PORTVERSION}
|
||||
EXTRACT_AFTER_ARGS= > ${PORTNAME}.c
|
||||
|
||||
do-build:
|
||||
cd ${WRKSRC} && ${LOCALBASE}/sbin/apxs -c ${PORTNAME}.c
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC} && ${LOCALBASE}/sbin/apxs -A -i ${PORTNAME}.so
|
||||
|
||||
.if !defined(NOPORTDOCS)
|
||||
post-install:
|
||||
@${MKDIR} ${PREFIX}/share/doc/${PORTNAME}
|
||||
@cd ${_DISTDIR} && ${INSTALL_DATA} ${DISTFILES:N*gz} \
|
||||
${PREFIX}/share/doc/${PORTNAME}
|
||||
.endif
|
||||
ALL_TARGET= build
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,4 +1 @@
|
||||
MD5 (mod_gzip-1.3.19.1a/mod_gzip.c.gz) = 4213af3e9a6cf208fa29b04512ce7c75
|
||||
MD5 (mod_gzip-1.3.19.1a/changes.txt) = 2e8e0e9f753e886f5ce93f4cfca91fc7
|
||||
MD5 (mod_gzip-1.3.19.1a/commands.txt) = 67b10b917047747e0f209ae0317e8099
|
||||
MD5 (mod_gzip-1.3.19.1a/samples.txt) = 2b5a0521650dc87b789326d66ddbdee2
|
||||
MD5 (mod_gzip-1.3.19.2a.tgz) = a0f2247455953a961fe4dfc2e0beda50
|
||||
|
@ -1 +1 @@
|
||||
Apache module that provides on-the fly gzipping for capable browsers
|
||||
An Internet Content Acceleration module for Apache
|
||||
|
@ -1,9 +1,13 @@
|
||||
This apache's module detects the browsers capable of decompressing
|
||||
the objects on the fly and applies compression to pages, etc. sent
|
||||
to those browsers. This includes dynamicly generated content too.
|
||||
mod_gzip is an Internet Content Acceleration module for the popular
|
||||
Apache Web Server.
|
||||
|
||||
Due to browsers' bugs or for other reasons (gzip-ing a typical JPEG
|
||||
file is silly, for example) you may wish to disable compression of
|
||||
some MIME-types and mod_gzip allows you to do that.
|
||||
mod_gzip uses the well established and publicly available IETF
|
||||
Content-Encoding standards in conjunction with publicy available GZIP
|
||||
compression libraries such as ZLIB to deliver dynamically compressed
|
||||
content 'on the fly' to any browser or user-agent that is capable of
|
||||
receiving it.
|
||||
|
||||
WWW: http://www.remotecommunications.com/apache/mod_gzip/
|
||||
WWW: http://sourceforge.net/projects/mod-gzip/
|
||||
|
||||
- Alex Dupre
|
||||
sysadmin@alexdupre.com
|
||||
|
@ -1,7 +1,3 @@
|
||||
libexec/apache/mod_gzip.so
|
||||
%%PORTDOCS%%share/doc/mod_gzip/samples.txt
|
||||
%%PORTDOCS%%share/doc/mod_gzip/commands.txt
|
||||
%%PORTDOCS%%share/doc/mod_gzip/changes.txt
|
||||
%%PORTDOCS%%@dirrm share/doc/mod_gzip
|
||||
@exec ${PKG_PREFIX}/sbin/apxs -e -A -n gzip mod_gzip.so; echo " enable the mod_gzip in Apache's config manually"
|
||||
@unexec ${PKG_PREFIX}/sbin/apxs -e -A -n gzip mod_gzip.so || echo " remove the mod_gzip from Apache's config manually"
|
||||
@exec %D/sbin/apxs -e -A -n gzip %f
|
||||
@unexec %D/sbin/apxs -e -A -n gzip %f
|
||||
|
Loading…
Reference in New Issue
Block a user