blob: 3188e5690d98ab68beacfa359a5e9f6774f80c40 (
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
|
# Created by: antoine@FreeBSD.org
# $FreeBSD$
PORTNAME= rifiuti2
DISTVERSION= 0.5.1
CATEGORIES= security
MASTER_SITES= GOOGLE_CODE
MAINTAINER= antoine@FreeBSD.org
COMMENT= Tool for analyzing Windows recycle bin
LICENSE= BSD
LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre
GNU_CONFIGURE= yes
USES= pkgconfig gettext
USE_ICONV= yes
USE_GNOME= glib20
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
PLIST_FILES= bin/rifiuti bin/rifiuti-vista
MAN1= rifiuti.1
MLINKS= rifiuti.1 rifiuti-vista.1
OPTIONS_DEFINE= DOCS
PORTDOCS= AUTHORS COPYING ChangeLog NEWS README THANKS TODO
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
.endif
.include <bsd.port.mk>
|