freebsd-ports/devel/ruby-p4/Makefile
Mark Linimon 34da9bdf57 With portmgr hat on, reset maintainership of knu's ports since he has
been inactive more than 6 months.  We hope to see him back sometime.
2005-11-11 01:18:01 +00:00

53 lines
1.3 KiB
Makefile

# New ports collection makefile for: P4Ruby
# Date created: 16 August 2003
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= p4
PORTVERSION= 1.4251
CATEGORIES= devel ruby
MASTER_SITES= http://public.perforce.com/guest/tony_smith/perforce/API/Ruby/release/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= ${PORTNAME:U}Ruby-${PORTVERSION}
DIST_SUBDIR= ruby
MAINTAINER= ports@FreeBSD.org
COMMENT= Ruby interface to the Perforce API
EXTRACT_DEPENDS= ${LOCALBASE}/lib/perforce/libclient.a:${PORTSDIR}/devel/p4api
BUILD_DEPENDS= ${LOCALBASE}/lib/perforce/libclient.a:${PORTSDIR}/devel/p4api
USE_RUBY= yes
P4APIVER= 2003.01
P4APIDIR= ${WRKDIR}/p4api
INSTALL_TARGET= site-install
EXAMPLES= example.rb
DOCS= Changes \
doc/*
post-extract:
${MKDIR} ${P4APIDIR}
${LN} -s ${LOCALBASE}/include/perforce/*.h ${P4APIDIR}/
${LN} -s ${LOCALBASE}/lib/perforce/*.a ${P4APIDIR}/
do-configure:
cd ${WRKSRC}; ${RUBY} p4conf.rb --apidir="${P4APIDIR}" --apiver="${P4APIVER}"
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${RUBY_MODEXAMPLESDIR}
.for f in ${EXAMPLES}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODEXAMPLESDIR}/
.endfor
${MKDIR} ${RUBY_MODDOCDIR}
.for f in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
.endif
.include <bsd.port.mk>