diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-02-28 12:58:23 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-02-28 12:58:23 +0000 |
commit | 6b7854c0884fc9af4334b7272fbf224c4118bb30 (patch) | |
tree | 1c66c716a32e144dd394cb19097134039a1035cd /graphics/ruby-gdk_pixbuf/Makefile | |
parent | Update to 0.24. (diff) |
Add ruby-gdk_pixbuf, a Ruby binding for Gdkpixbuf.
Notes
Notes:
svn path=/head/; revision=38889
Diffstat (limited to 'graphics/ruby-gdk_pixbuf/Makefile')
-rw-r--r-- | graphics/ruby-gdk_pixbuf/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/graphics/ruby-gdk_pixbuf/Makefile b/graphics/ruby-gdk_pixbuf/Makefile new file mode 100644 index 000000000000..55c9544b4767 --- /dev/null +++ b/graphics/ruby-gdk_pixbuf/Makefile @@ -0,0 +1,47 @@ +# New ports collection makefile for: ruby-gdk_pixbuf +# Date created: 28 February 2001 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= gdk_pixbuf +PORTVERSION= ${RUBY_GNOME_PORTVERSION} +CATEGORIES= graphics ruby +MASTER_SITES= ${RUBY_GNOME_MASTER_SITES} +PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} +DISTNAME= ${RUBY_GNOME_DISTNAME} +DIST_SUBDIR= ruby + +MAINTAINER= knu@FreeBSD.org + +LIB_DEPENDS= gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf +RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/gtk.so:${PORTSDIR}/x11-toolkits/ruby-gtk + +USE_RUBY= yes +USE_RUBY_EXTCONF= yes +USE_XLIB= yes +USE_GLIB= yes + +.include "${.CURDIR}/../../x11/ruby-gnome/Makefile.common" + +WRKSRC= ${RUBY_GNOME_WRKSRC}/${PORTNAME} +INSTALL_TARGET= site-install +CONFIGURE_ARGS= --with-glib-config="${GLIB_CONFIG}" + +DOCS_EN= ChangeLog README + +post-extract: + ${MV} ${WRKSRC:S/gdk_pixbuf$/gdkpixbuf/} ${WRKSRC} + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME} + ${CP} -R ${WRKSRC}/sample/* ${RUBY_EXAMPLESDIR}/${PORTNAME}/ + ${MKDIR} ${RUBY_DOCDIR}/${PORTNAME} +.for f in ${DOCS_EN} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/ +.endfor +.endif + +.include <bsd.port.mk> |