forked from pfsense/FreeBSD-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
46 lines (39 loc) · 1.09 KB
/
Makefile
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
PORTNAME= genpatch
PORTVERSION= 1.40
PORTREVISION= 1
CATEGORIES= ports-mgmt
MASTER_SITES= # none
DISTFILES= # none
MAINTAINER= [email protected]
COMMENT= Single patch generator tool compatible with makepatch format
LICENSE= BSD2CLAUSE
NO_BUILD= yes
SUB_FILES= genpatch portfix
SUB_LIST= WORKPATH=${PORTWORK}
PLIST_FILES= bin/dupe \
bin/genpatch \
bin/portfix \
man/man1/dupe.1.gz \
man/man1/genpatch.1.gz \
man/man1/portfix.1.gz
.include <bsd.port.options.mk>
.if defined(PACKAGE_BUILDING) # use known default values, poudriere overrides
. if defined(.MAKE.BUILT.BY) # DragonFly!
PORTWORK= /usr/obj/dports
. else
PORTWORK= /usr/ports
. endif
.else
. if defined(WRKDIRPREFIX) && !empty(WRKDIRPREFIX)
PORTWORK= ${WRKDIRPREFIX}
. else
PORTWORK= ${PORTSDIR}
. endif
.endif
do-install:
${INSTALL_SCRIPT} ${FILESDIR}/dupe ${STAGEDIR}${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKDIR}/genpatch ${STAGEDIR}${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKDIR}/portfix ${STAGEDIR}${PREFIX}/bin
(cd ${FILESDIR} && ${INSTALL_MAN} dupe.1 genpatch.1 portfix.1 \
${STAGEDIR}${MANPREFIX}/man/man1)
.include <bsd.port.mk>