blob: 3af05672985922c4ce2ec625858d1be1da96f1c8 (
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
|
# New ports collection makefile for: bbdock
# Date created: July 31, 2006
# Whom: Francis Bacque <idroxid01@yahoo.fr>
#
# $FreeBSD$
#
PORTNAME= bbdock
PORTVERSION= 0.2.8
PORTREVISION= 3
CATEGORIES= x11
MASTER_SITES= http://bbdock.nethence.com/download/
MAINTAINER= idroxid01@yahoo.fr
COMMENT= BBDock displays one or more PNG icons in the BlackBox/FluxBox slit
LIB_DEPENDS= png:${PORTSDIR}/graphics/png
PORTDOCS= README
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_XORG= ice sm x11 xau xcursor xdmcp xext xfixes xi
PLIST_FILES= bin/bbdock
.include <bsd.port.pre.mk>
post-patch:
@${REINPLACE_CMD} -e 's|png_check_sig|png_sig_cmp|' \
${WRKSRC}/configure
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>
|