blob: f09da1fbc421b8a21f58c95268a6b4d47467e967 (
plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# New ports collection makefile for: sed
# Date created: 12 October 2000
# Whom: Cyrille Lefevre <clefevre@citeweb.net>
#
# $FreeBSD$
#
PORTNAME= sed
PORTVERSION= 3.02
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX= g
MAINTAINER= clefevre@citeweb.net
#
# Global variables
#
GNU_CONFIGURE= yes
# sed's configure seems to be buggy !
# CONFIGURE_ARGS= --program-prefix=g
USE_GMAKE= yes
.if make(do-install)
# DESTDIR isn't honored. fake it w/ prefix.
MAKE_ARGS= prefix=${PREFIX}
.endif
MAN1= gsed.1
#
# Local variables
#
PATCH_SUBDIRS= . doc lib sed
SAMP_FILES= dc.sed
SAMP_DIR= ${PREFIX}/share/examples/${PKGBASE}
#
# Post-configure
#
post-configure: patch-makefiles
patch-makefiles:
.for subdir in ${PATCH_SUBDIRS}
@${PERL} -pi.fbsd -e 's/s,x,x,/s,^,g,/' ${WRKSRC}/${subdir}/Makefile
.endfor
#
# Post-install
#
post-install: install-sample-files
install-sample-files:
@${MKDIR} ${SAMP_DIR}
.for file in ${SAMP_FILES}
@${INSTALL_DATA} ${WRKSRC}/${file} ${SAMP_DIR}/${file}
.endfor
.include <bsd.port.mk>
|