mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-01 10:59:55 +00:00
54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
37 lines
850 B
Makefile
37 lines
850 B
Makefile
# New ports collection makefile for: gtkcairo
|
|
# Date created: 2004-10-06
|
|
# Whom: Michael Johnson <ahze@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gtkcairo
|
|
PORTVERSION= 0.3
|
|
PORTREVISION= 4
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= ahze
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Gtk+ bindings to cairo
|
|
|
|
LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo
|
|
|
|
USE_BZIP2= yes
|
|
USE_GNOME= gtk20 gnometarget gnomehack
|
|
INSTALLS_SHLIB= yes
|
|
USE_REINPLACE= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
|
|
|
PLIST_FILES= include/gtkcairo.h \
|
|
lib/libgtkcairo.a \
|
|
lib/libgtkcairo.so \
|
|
lib/libgtkcairo.so.2 \
|
|
libdata/pkgconfig/gtkcairo.pc
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|tests||' ${WRKSRC}/Makefile.in
|
|
.include <bsd.port.mk>
|