blob: 93fa3fd3a444c4cf17c4cbc7de56ba3a9d94c3a3 (
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
41
42
43
44
45
46
47
|
# New ports collection makefile for: autoconf-archive
# Date Created: 18 October 2006
# Whom: Martin Kammerhofer
#
# $FreeBSD$
#
PORTNAME= autoconf-archive
PORTVERSION= 0.${DISTDATE:C/-/./g}
CATEGORIES= devel
MASTER_SITES= http://autoconf-archive.cryp.to/ \
http://mitglied.lycos.de/mkamm/distfiles/
DISTNAME= ${PORTNAME}-${DISTDATE}
MAINTAINER= mkamm@gmx.net
COMMENT= A set of useful GNU Autoconf macros
DISTDATE= 2008-11-07
USE_BZIP2= yes
USE_AUTOTOOLS= autoconf:262:env automake:110:env
GNU_CONFIGURE= yes
PLIST_SUB= MACRODIR=share/aclocal
pre-configure:
cd ${WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTORECONF} --install
.if defined(NOPORTDOCS)
do-install:
cd ${WRKSRC} && ${MAKE} install-dist_aclocalDATA
.endif
# next rule for maintainer use only: automatically create pkg-plist
plist:
@test -e ${CONFIGURE_COOKIE} || { \
${ECHO_MSG} >&2 "do 'make configure' first!"; exit 64; }
cd ${WRKSRC} && ${MAKE} -V DATA | \
${TR} ' ' '\n' | \
${SED} -e 's,^\./m4[a-z]*/,%%MACRODIR%%/,' \
-e 's,^\./,%%PORTDOCS%%%%DOCSDIR%%/,' \
-e 's,/htmldoc/,/html/,' \
-e 's,^[A-Za-z_],%%PORTDOCS%%%%DOCSDIR%%/&,' | \
${SORT} -u >${PLIST}
${ECHO_CMD} '%%PORTDOCS%%@dirrm %%DOCSDIR%%/html' >>${PLIST}
${ECHO_CMD} '%%PORTDOCS%%@dirrm %%DOCSDIR%%' >>${PLIST}
.include <bsd.port.mk>
|