blob: b90de20aab598b0f38f0ef5702ccff0afb11cdce (
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
|
# Created by: Edson Brandi <ebrandi@fugspbr.org>
# $FreeBSD$
PORTNAME= wipe
PORTVERSION= 2.3.1
CATEGORIES= security
MASTER_SITES= SF
MAINTAINER= pclin@FreeBSD.org
COMMENT= File and block device wiping utility
LICENSE= GPLv2
USE_BZIP2= yes
GNU_CONFIGURE= yes
PLIST_FILES= bin/wipe
MAN1= wipe.1
PORTDOCS= CHANGES INSTALL LICENSE README TESTING TODO copyright
NO_STAGE= yes
post-patch:
@${REINPLACE_CMD} -e 's|@CFLAGS@|${CFLAGS}|' ${WRKSRC}/Makefile.in
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
for i in ${PORTDOCS}; do \
${INSTALL_DATA} ${WRKSRC}/$$i ${DOCSDIR}; \
done
.endif
.include <bsd.port.mk>
|