blob: d1d1d2c23217fb9261e8d94990dd94b591255cff (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# New ports collection makefile for: libgtkeditor
# Date created: 25 September 2000
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= libgtkeditor
PORTVERSION= 0.1.8
PORTREVISION= 5
CATEGORIES= x11-toolkits editors
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME:S/lib//}
DISTNAME= ${PORTNAME:S/lib//}-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= A source code editor widget for GTK+
LIB_DEPENDS= unicode.0:${PORTSDIR}/devel/libunicode
USE_AUTOTOOLS= automake:15:env autoconf:262:env libtool:22
USE_GNOME= gtk12
USE_GMAKE= yes
USE_PERL5_BUILD=yes
USE_LDCONFIG= yes
CFLAGS+= -fPIC
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
pre-configure:
.for file in install-sh mkinstalldirs
@${LN} -sf ${AUTOMAKE_DIR}/${file} ${WRKSRC}/${file}
.endfor
@${RM} ${WRKSRC}/config.guess ${WRKSRC}/config.sub
@${TOUCH} ${WRKSRC}/config.sub
# Crazy hacking to get around the fact that the tktext subdirectory
# generates files ending in .lo that libtool 1.5.x is considerably
# stricter on than libtool 1.3.x
CRAZY_HACK_FILES= \
gtktextlayout.c gtktext.c gtktextdisplay.c gtktextbtree.c \
gtktextbuffer.c gtktexttag.c gtktextmark.c gtktexttypes.c \
gstring.c gbsearch.c gtktextchild.c gtktexttagtable.c \
gtktextiter.c gtktextsegment.c
post-configure:
.for file in ${CRAZY_HACK_FILES}
@${LN} -sf tktext-port/${file} ${WRKSRC}/${file}
.endfor
@${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/scanner.c
pre-install:
@${MKDIR} ${PREFIX}/include/tktext-port
.include <bsd.port.mk>
|