blob: a127d67e7bf71e84fac67654e459f1e71c8a04b7 (
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
|
# Created by: Jean-Yves Lefort <jylefort@brutele.be>
# $FreeBSD$
PORTNAME= gnome-osd
PORTVERSION= 0.20.0
PORTREVISION= 1
CATEGORIES= misc
MASTER_SITES= http://launchpadlibrarian.net/63944370/
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= On-Screen-Display infrastructure using Pango text rendering
USES= pathfix gmake pkgconfig
USE_GNOME= gnomeprefix intlhack pygnome2
USE_PYTHON= yes
GNU_CONFIGURE= yes
GCONF_SCHEMAS= gnome-osd.schemas
MAN1= gnome-osd-client.1
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
NO_STAGE= yes
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
.for file in AUTHORS NEWS README
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|