freebsd-ports/databases/ruby-msql/Makefile
Akinori MUSHA c8eb0d4878 Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command;
the ECHO macro is set to "echo" by default, but it is set to "true" if
make(1) is invoked with the -s option while ECHO_CMD is always set to
the echo command.
2002-01-29 09:45:01 +00:00

50 lines
1.2 KiB
Makefile

# New ports collection makefile for: Ruby/mSQL
# Date created: 9 June 2001
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= msql
PORTVERSION= 0.2.4a
PORTREVISION= 1
CATEGORIES= databases ruby
MASTER_SITES= http://www.isc.meiji.ac.jp/~ce11725/ruby/archive/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
LIB_DEPENDS= msql.1:${PORTSDIR}/databases/msql
USE_RUBY= yes
USE_RUBY_EXTCONF= yes
WRKSRC= ${WRKDIR}/${DISTNAME:S/a$//}
CONFIGURE_ARGS= --with-msql-dir="${LOCALBASE}/share/msql"
INSTALL_TARGET= site-install
EXAMPLES_EN= demo/* sample/*
DOCS_EN= readme.en.txt doc/en/*
DOCS_JA= readme.ja.txt
post-configure:
${ECHO_CMD} '#define INST_DIR "${LOCALBASE}"' >> ${WRKSRC}/site.h
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}
.for f in ${EXAMPLES_EN}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_EXAMPLESDIR}/${PORTNAME}/
.endfor
${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}/ja
.for f in ${DOCS_EN}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/
.endfor
.for f in ${DOCS_JA}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/ja/
.endfor
.endif
.include <bsd.port.mk>