54 lines
1.5 KiB
Makefile
54 lines
1.5 KiB
Makefile
# New ports collection makefile for: Ruby/GnomeVFS
|
|
# Date created: 10 August 2003
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/devel/ruby-gnomevfs/Makefile,v 1.2 2005/10/17 07:05:40 mezz Exp $
|
|
#
|
|
|
|
PORTNAME= gnomevfs
|
|
PORTVERSION= ${RUBY_GNOME_PORTVERSION}
|
|
CATEGORIES= devel ruby gnome
|
|
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 GnomeVFS
|
|
|
|
BUILD_DEPENDS+= rubygem-pkg-config>=1.0.7:${PORTSDIR}/devel/rubygem-pkg-config
|
|
RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR:S/${PREFIX}/${LOCALBASE}/}/glib2.so:${PORTSDIR}/devel/ruby-glib2
|
|
|
|
USE_RUBY= yes
|
|
USE_GNOME= gnomevfs2
|
|
USE_RUBY_EXTCONF= yes
|
|
CONFIGURE_ARGS= --with-pkg-config-dir=${LOCALBASE}/libdata/pkgconfig
|
|
|
|
.include "${.CURDIR}/../../x11/ruby-gnome2/Makefile.common"
|
|
|
|
WRKSRC= ${RUBY_GNOME_WRKSRC}/${PORTNAME}
|
|
INSTALL_TARGET= site-install install
|
|
|
|
DOCS= COPYING.LIB ChangeLog README
|
|
|
|
post-patch: general-patch
|
|
@${REINPLACE_CMD} -e 's|/bin/ruby -w|/bin/env ruby|g' \
|
|
${WRKSRC}/tests/*.rb
|
|
@${FIND} ${WRKSRC} -name '*.bak' -delete
|
|
|
|
post-install:
|
|
.if !defined(NOPORTEXAMPLES)
|
|
@${MKDIR} ${RUBY_MODEXAMPLESDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/tests/* ${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>
|