mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
a33191366c
Please note that lots of invocation of MAKE_CMD here are wrong as they do not properly respect MAKE_ENV and friends With hat: portmgr
23 lines
559 B
Makefile
23 lines
559 B
Makefile
# Created by: Jean-Yves Lefort <jylefort@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTREVISION= 7
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gtkmm-2.0.pc:${PORTSDIR}/x11-toolkits/gtkmm20
|
|
|
|
USES= gmake pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/gtkmm-2.0
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC}/examples -name Makefile.in \
|
|
| ${XARGS} ${REINPLACE_CMD} -e '/^install-am:/ s| all-am||'
|
|
|
|
do-install:
|
|
.for d in docs examples
|
|
@cd ${WRKSRC}/${d} && ${MAKE_CMD} ${MAKE_ARGS} install
|
|
.endfor
|
|
|
|
.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk"
|