mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
# New ports collection makefile for: Ruby/GLib2
|
|
# Date created: 24 November 2002
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/devel/ruby-glib2/Makefile,v 1.5 2007/10/05 05:06:39 mezz Exp $
|
|
#
|
|
|
|
PORTNAME= glib2
|
|
PORTVERSION= ${RUBY_GNOME_PORTVERSION}
|
|
CATEGORIES= devel ruby
|
|
MASTER_SITES= ${RUBY_GNOME_MASTER_SITES}
|
|
MASTER_SITE_SUBDIR= ${RUBY_GNOME_MASTER_SITE_SUBDIR}
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DISTNAME= ${RUBY_GNOME_DISTNAME}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= ruby@FreeBSD.org
|
|
COMMENT= Ruby binding for GLib2
|
|
|
|
BUILD_DEPENDS+= rubygem-pkg-config>=1.0.7:${PORTSDIR}/devel/rubygem-pkg-config
|
|
RUN_DEPENDS+= ${BUILD_DEPENDS}
|
|
|
|
USE_RUBY= yes
|
|
USE_GNOME= glib20
|
|
USE_RUBY_EXTCONF= yes
|
|
CONFIGURE_ARGS= --with-pkg-config-dir=${LOCALBASE}/libdata/pkgconfig
|
|
|
|
.include "${.CURDIR}/../../x11/ruby-gnome2/Makefile.common"
|
|
|
|
WRKSRC= ${RUBY_GNOME_WRKSRC}/glib2
|
|
INSTALL_TARGET= site-install install
|
|
|
|
DOCS= COPYING.LIB ChangeLog README
|
|
|
|
post-patch: general-patch
|
|
@${RM} ${WRKSRC}/lib/gnome2-win32-binary-downloader.rb
|
|
|
|
post-install:
|
|
.if !defined(NOPORTEXAMPLES)
|
|
@${MKDIR} ${RUBY_MODEXAMPLESDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/sample/* ${RUBY_MODEXAMPLESDIR}/
|
|
.endif
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${RUBY_MODDOCDIR}
|
|
.for f in ${DOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|