2004-11-08 17:43:03 +01:00
|
|
|
# New ports collection makefile for: cairo
|
|
|
|
# Date created: 2004-10-06
|
|
|
|
# Whom: Michael Johnson <ahze@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
First all, ahze did most of work. Thanks ahze! Last week or so, I am just
merely pick up and help him. Thanks to many testers in both private and
mailing list emails for report a few of build and dependencies problems.
Also, thanks to marcus and Chess Griffin for test in their tinderboxes.
x11/pixman: Update to 0.10.0
-------------------------------------------------------
Firefox 3 needs it. Orignal, the shared library was bumped and ahze has
added a new feature in our USE_GNOME=ltverhack by can control the number
of shared library. To control the number of shared library, add the
ltverhack:N. Right now pixman has USE_GNOME=ltverhack:9 to make it stays
same at libpixman-1.so.9. If anyone want to use ltverhack:N in one of your
port, you need to make sure the ABI doesn't change to use it..
-------------------------------------------------------
graphics/cairo: Update to 1.6.4
-------------------------------------------------------
Firefox 3 needs it. We have updated most cairo binding ports too.
-------------------------------------------------------
graphics/poppler: Update to 0.8.3
-------------------------------------------------------
The shared libraries version have been changed. All ports that depend on
poppler have PORTREVISION bump. The graphics/py-poppler has been updated
to 0.8.1 to work with newer poppler better. As for the poppler-qt, there
is no shared library version change.
-------------------------------------------------------
www/firefox3 and gecko ports related: Update to 3.0 final
-------------------------------------------------------
The bsd.gecko.mk has been moved from www/mozilla/ to Mk/. You no longer
need to include bsd.gecko.mk/Makefile.common by manual. We are keeping it
in backward compatibility, so the rest ports won't be break. We haven't
add some other ports to have Firefox 3 support yet, so feel free to send
us patch or commit it by yourself (to committers). However, view in
bsd.gecko.mk for document.
-------------------------------------------------------
Approved by: portmgr (marcus)
2008-06-30 22:16:22 +02:00
|
|
|
# $MCom: ports-stable/graphics/cairo/Makefile,v 1.3 2008/06/16 21:35:57 mezz Exp $
|
2004-11-08 17:43:03 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= cairo
|
First all, ahze did most of work. Thanks ahze! Last week or so, I am just
merely pick up and help him. Thanks to many testers in both private and
mailing list emails for report a few of build and dependencies problems.
Also, thanks to marcus and Chess Griffin for test in their tinderboxes.
x11/pixman: Update to 0.10.0
-------------------------------------------------------
Firefox 3 needs it. Orignal, the shared library was bumped and ahze has
added a new feature in our USE_GNOME=ltverhack by can control the number
of shared library. To control the number of shared library, add the
ltverhack:N. Right now pixman has USE_GNOME=ltverhack:9 to make it stays
same at libpixman-1.so.9. If anyone want to use ltverhack:N in one of your
port, you need to make sure the ABI doesn't change to use it..
-------------------------------------------------------
graphics/cairo: Update to 1.6.4
-------------------------------------------------------
Firefox 3 needs it. We have updated most cairo binding ports too.
-------------------------------------------------------
graphics/poppler: Update to 0.8.3
-------------------------------------------------------
The shared libraries version have been changed. All ports that depend on
poppler have PORTREVISION bump. The graphics/py-poppler has been updated
to 0.8.1 to work with newer poppler better. As for the poppler-qt, there
is no shared library version change.
-------------------------------------------------------
www/firefox3 and gecko ports related: Update to 3.0 final
-------------------------------------------------------
The bsd.gecko.mk has been moved from www/mozilla/ to Mk/. You no longer
need to include bsd.gecko.mk/Makefile.common by manual. We are keeping it
in backward compatibility, so the rest ports won't be break. We haven't
add some other ports to have Firefox 3 support yet, so feel free to send
us patch or commit it by yourself (to committers). However, view in
bsd.gecko.mk for document.
-------------------------------------------------------
Approved by: portmgr (marcus)
2008-06-30 22:16:22 +02:00
|
|
|
PORTVERSION= 1.6.4
|
|
|
|
PORTREVISION?= 2
|
2008-03-30 04:27:00 +02:00
|
|
|
PORTEPOCH?= 1
|
2004-11-08 17:43:03 +01:00
|
|
|
CATEGORIES= graphics
|
2008-03-30 04:27:00 +02:00
|
|
|
MASTER_SITES= http://cairographics.org/releases/
|
|
|
|
#MASTER_SITES= http://cairographics.org/snapshots/
|
2004-11-08 17:43:03 +01:00
|
|
|
|
2005-03-03 10:03:33 +01:00
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
2005-02-24 12:15:30 +01:00
|
|
|
COMMENT= Vector graphics library with cross-device output support
|
2004-11-08 17:43:03 +01:00
|
|
|
|
2006-05-10 21:43:18 +02:00
|
|
|
.if !defined(REFERENCE_PORT)
|
|
|
|
|
2005-11-05 05:53:48 +01:00
|
|
|
LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \
|
2005-03-09 14:43:32 +01:00
|
|
|
png.5:${PORTSDIR}/graphics/png \
|
2008-03-24 04:52:36 +01:00
|
|
|
fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig \
|
|
|
|
pixman-1.9:${PORTSDIR}/x11/pixman
|
2004-11-08 17:43:03 +01:00
|
|
|
|
2005-11-05 05:53:48 +01:00
|
|
|
CONFIGURE_ARGS= --with-html-dir=${DOCSDIR} \
|
|
|
|
--enable-pdf \
|
|
|
|
--enable-ps
|
2006-05-10 21:43:18 +02:00
|
|
|
USE_GNOME= gnometarget gnomehack ltverhack referencehack
|
2006-03-15 22:37:02 +01:00
|
|
|
USE_AUTOTOOLS= libtool:15
|
2006-10-14 10:35:50 +02:00
|
|
|
USE_LDCONFIG= yes
|
2004-11-08 17:43:03 +01:00
|
|
|
|
First all, ahze did most of work. Thanks ahze! Last week or so, I am just
merely pick up and help him. Thanks to many testers in both private and
mailing list emails for report a few of build and dependencies problems.
Also, thanks to marcus and Chess Griffin for test in their tinderboxes.
x11/pixman: Update to 0.10.0
-------------------------------------------------------
Firefox 3 needs it. Orignal, the shared library was bumped and ahze has
added a new feature in our USE_GNOME=ltverhack by can control the number
of shared library. To control the number of shared library, add the
ltverhack:N. Right now pixman has USE_GNOME=ltverhack:9 to make it stays
same at libpixman-1.so.9. If anyone want to use ltverhack:N in one of your
port, you need to make sure the ABI doesn't change to use it..
-------------------------------------------------------
graphics/cairo: Update to 1.6.4
-------------------------------------------------------
Firefox 3 needs it. We have updated most cairo binding ports too.
-------------------------------------------------------
graphics/poppler: Update to 0.8.3
-------------------------------------------------------
The shared libraries version have been changed. All ports that depend on
poppler have PORTREVISION bump. The graphics/py-poppler has been updated
to 0.8.1 to work with newer poppler better. As for the poppler-qt, there
is no shared library version change.
-------------------------------------------------------
www/firefox3 and gecko ports related: Update to 3.0 final
-------------------------------------------------------
The bsd.gecko.mk has been moved from www/mozilla/ to Mk/. You no longer
need to include bsd.gecko.mk/Makefile.common by manual. We are keeping it
in backward compatibility, so the rest ports won't be break. We haven't
add some other ports to have Firefox 3 support yet, so feel free to send
us patch or commit it by yourself (to committers). However, view in
bsd.gecko.mk for document.
-------------------------------------------------------
Approved by: portmgr (marcus)
2008-06-30 22:16:22 +02:00
|
|
|
CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS}" \
|
2005-03-08 10:34:18 +01:00
|
|
|
LDFLAGS="${PTHREAD_LIBS}"
|
2004-11-08 17:43:03 +01:00
|
|
|
|
2007-10-25 01:37:25 +02:00
|
|
|
.if defined(WITHOUT_X11)
|
|
|
|
CONFIGURE_ARGS+=--disable-xlib
|
|
|
|
PLIST_SUB+= X11="@comment "
|
|
|
|
.else
|
|
|
|
USE_XORG+= xrender
|
|
|
|
PLIST_SUB+= X11=""
|
|
|
|
.endif
|
|
|
|
|
2005-02-16 06:52:43 +01:00
|
|
|
OPTIONS+= GLITZ "Enable Glitz OpenGL Support" Off
|
|
|
|
|
2005-02-17 01:59:40 +01:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2005-11-05 05:53:48 +01:00
|
|
|
.if defined(WITH_GLITZ)
|
2005-02-16 06:52:43 +01:00
|
|
|
LIB_DEPENDS+= glitz-glx.1:${PORTSDIR}/graphics/glitz
|
2005-11-05 05:53:48 +01:00
|
|
|
CONFIGURE_ARGS+= --enable-glitz
|
2005-03-09 05:13:40 +01:00
|
|
|
PLIST_SUB+= GLITZ=""
|
|
|
|
.else
|
2005-11-05 05:53:48 +01:00
|
|
|
CONFIGURE_ARGS+= --disable-glitz
|
2005-03-09 05:13:40 +01:00
|
|
|
PLIST_SUB+= GLITZ="@comment "
|
2005-02-16 06:52:43 +01:00
|
|
|
.endif
|
|
|
|
|
2004-11-10 05:21:03 +01:00
|
|
|
post-patch:
|
2005-11-05 05:53:48 +01:00
|
|
|
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|' \
|
|
|
|
${WRKSRC}/test/Makefile.in
|
Presenting GNOME 2.18 for FreeBSD. GNOME 2.18 is a departure from recent GNOME
releases in that it focuses more on stability and functionality than on
new features. Not that it doesn't have its share of new and exciting
items. See http://www.gnome.org/start/2.18/ for all the goodies in
this release.
GNOME 2.18 for FreeBSD would not have been possible without the hard work
of the FreeBSD GNOME Team and our intrepid band of testers including
J. W. Ballantine, Pawel Worach, Yasuda Keisuke, Pascal Hofstee, miwi,
Yoshihiro Ota, Vladimir Grebenschikov, Jukka A. Ukkonen,
Phillip Neumann, Franz Klammer, and Neal Delmonico.
2007-03-19 06:14:07 +01:00
|
|
|
@${REINPLACE_CMD} -e 's|-lcairo|-lcairo ${PTHREAD_LIBS}|' \
|
|
|
|
${WRKSRC}/src/*.pc.in
|
2006-10-14 10:35:50 +02:00
|
|
|
@${REINPLACE_CMD} -e 's|src test doc|src doc|; \
|
|
|
|
s|@CAIRO_HAS_PNG_FUNCTIONS_TRUE@am__append_1 = test||' \
|
|
|
|
${WRKSRC}/Makefile.in
|
2004-11-10 05:21:03 +01:00
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|
2006-05-10 21:43:18 +02:00
|
|
|
|
|
|
|
.endif
|