blob: 91c704c20befc6c4aab87a59b68fed4fd0e7c760 (
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
42
|
# New ports collection makefile for: figurine
# Date created: 15 September 2002
# Whom: Marc Fonvieille <blackend@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= figurine
PORTVERSION= 1.0.5
PORTREVISION= 2
CATEGORIES= graphics
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= gahr@FreeBSD.org
COMMENT= A drawing program for X11
RUN_DEPENDS= fig2dev:${PORTSDIR}/print/transfig
GNU_CONFIGURE= yes
USE_XORG= xpm
MAN1= figurine.1
.include <bsd.port.pre.mk>
# Optimizations produce bad assembly code on sparc64
.if ${ARCH} == "sparc64"
CFLAGS+= -O0
.endif
post-patch:
.if defined(NOPORTDOCS)
@${REINPLACE_CMD} -e "s|Doc examples src|src|" \
${WRKSRC}/Makefile.in
.endif
@${REINPLACE_CMD} -e 's|datadir = @datadir@|datadir = @datadir@/doc|' \
${WRKSRC}/Makefile.in \
${WRKSRC}/src/Makefile.in \
${WRKSRC}/Doc/Makefile.in \
${WRKSRC}/examples/Makefile.in
.include <bsd.port.post.mk>
|