2005-11-05 06:34:24 +01:00
|
|
|
# $FreeBSD$
|
2009-01-10 06:22:13 +01:00
|
|
|
# $MCom: ports/graphics/ruby-cairo/Makefile,v 1.9 2008/10/19 23:20:49 mezz Exp $
|
2005-11-05 06:34:24 +01:00
|
|
|
|
|
|
|
PORTNAME= cairo
|
2012-06-07 13:20:52 +02:00
|
|
|
PORTVERSION= 1.12.2
|
2005-11-05 06:34:24 +01:00
|
|
|
CATEGORIES= graphics ruby
|
|
|
|
MASTER_SITES= http://cairographics.org/releases/
|
|
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
|
|
DISTNAME= r${PORTNAME}-${PORTVERSION}
|
|
|
|
|
2009-06-16 17:53:25 +02:00
|
|
|
MAINTAINER= ruby@FreeBSD.org
|
2005-11-05 06:34:24 +01:00
|
|
|
COMMENT= Ruby binding for Cairo
|
|
|
|
|
2011-03-18 21:01:35 +01:00
|
|
|
BUILD_DEPENDS= rubygem-pkg-config>=1.0.7:${PORTSDIR}/devel/rubygem-pkg-config
|
2005-11-05 06:34:24 +01:00
|
|
|
LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo
|
|
|
|
|
2007-03-23 03:52:56 +01:00
|
|
|
USE_GNOME= pkgconfig
|
2005-11-05 06:34:24 +01:00
|
|
|
USE_RUBY= yes
|
2007-03-23 03:52:56 +01:00
|
|
|
USE_RUBY_EXTCONF=yes
|
|
|
|
CONFIGURE_ARGS+=--ruby=${RUBY}
|
2005-11-05 06:34:24 +01:00
|
|
|
|
2011-03-18 21:01:35 +01:00
|
|
|
DOCS= AUTHORS COPYING GPL NEWS
|
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
|
|
|
|
2005-11-05 06:34:24 +01:00
|
|
|
post-install:
|
2008-07-26 00:09:17 +02:00
|
|
|
.if !defined(NOPORTEXAMPLES)
|
2008-03-24 04:52:36 +01:00
|
|
|
@${MKDIR} ${RUBY_MODEXAMPLESDIR}/agg
|
|
|
|
@${INSTALL_DATA} ${WRKSRC}/samples/*.rb ${RUBY_MODEXAMPLESDIR}/
|
|
|
|
@${INSTALL_DATA} ${WRKSRC}/samples/agg/*.rb ${RUBY_MODEXAMPLESDIR}/agg/
|
2008-07-26 00:09:17 +02:00
|
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS)
|
2005-11-05 06:34:24 +01:00
|
|
|
@${MKDIR} ${RUBY_MODDOCDIR}
|
|
|
|
.for f in ${DOCS}
|
|
|
|
@${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
|
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|