blob: fc8c7f0ca1f0938563a8e5b2929ce1b40bb77e65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# ex:ts=8
# New ports collection makefile for: mod_index_rss
# Date created: Apr 9, 2001
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= mod_index_rss
PORTVERSION= 0.10
CATEGORIES= www
MASTER_SITES= http://software.tangent.org/download/ \
ftp://ftp.tangent.org/pub/apache/
MAINTAINER= ports@FreeBSD.org
COMMENT= Apache module to provides RSS output for directories
BUILD_DEPENDS= ${APXS}:${APACHE_PORT}
RUN_DEPENDS= ${APXS}:${APACHE_PORT}
APXS?= ${LOCALBASE}/sbin/apxs
APACHE_PORT?= ${PORTSDIR}/www/apache13
do-build:
@cd ${WRKSRC} && ${APXS} -c mod_index_rss.c
do-install:
${APXS} -i -A -n index_rss ${WRKSRC}/mod_index_rss.so
.include <bsd.port.mk>
|