blob: d6b67695acadb30e9915f3dad926b70f7653dc51 (
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
31
32
33
34
35
36
37
38
39
40
|
# New ports collection makefile for: mod_url
# Date created: 13 Apr 2003
# Whom: CHOI Junho <cjh@FreeBSD.org>
#
# $FreeBSD$
PORTNAME= mod_url
PORTVERSION= 20010905
CATEGORIES= korean www
MASTER_SITES= http://kle.kldp.org/apache/
DISTFILES= ${PORTNAME}.c readme.${PORTNAME}
MAINTAINER= apache@FreeBSD.org
COMMENT= Apache module for manipulating euc-kr encoded URL
MAKE_JOBS_SAFE= yes
USE_APACHE= 1.3
USE_ICONV= yes
AP_FAST_BUILD= yes
AP_GENPLIST= yes
AP_INC= ${LOCALBASE}/include
AP_LIB= ${LOCALBASE}/lib -liconv
PORTDOCS= readme.${PORTNAME}
do-extract:
${MKDIR} ${WRKSRC}/
${CP} ${_DISTDIR}/${PORTNAME}.c ${_DISTDIR}/readme.${PORTNAME} ${WRKSRC}/
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}/
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}/
.endif
${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|