blob: a9afa182aeb908c0cd0691afd19ac8de77d2babe (
plain)
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: Martin Klaffenboeck <martin.klaffenboeck@gmx.at>
# $FreeBSD$
# $MCom: ports/x11-toolkits/gtkmm24/Makefile,v 1.77 2011/07/16 17:31:29 kwm Exp $
PORTNAME= gtkmm
PORTVERSION= 2.24.4
PORTREVISION?= 0
CATEGORIES= x11-toolkits
MASTER_SITES= GNOME
DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org
COMMENT= C++ wrapper for Gtk+
USE_XZ= yes
LATEST_LINK= gtkmm24
.if !defined(REFERENCE_PORT)
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4
USES= gettext gmake pathfix pkgconfig
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
USE_AUTOTOOLS= libtool
USE_GNOME= atkmm gtk20 ltverhack:1 pangomm
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS= --disable-documentation \
--enable-static=yes
PLIST_SUB= VERSION="2.4" API_VERSION="2.4"
NO_STAGE= yes
post-patch:
@${REINPLACE_CMD} -e '/^SUBDIRS =/s/tests//' \
${WRKSRC}/Makefile.in
.include <bsd.port.mk>
.endif
|