mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
26efd1819f
PR: ports/118714 Submitted by: Alexander Logvinov
36 lines
911 B
Makefile
36 lines
911 B
Makefile
# New ports collection makefile for: Ruby-MySQL
|
|
# Date created: 7 Aug 2000
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mysql
|
|
PORTVERSION= 2.7.4
|
|
CATEGORIES= databases ruby
|
|
MASTER_SITES= http://www.tmtm.org/downloads/mysql/ruby/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DISTNAME= ${PORTNAME}-ruby-${PORTVERSION}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
COMMENT= Ruby module for accessing MySQL databases with a C API like interface
|
|
|
|
USE_MYSQL= yes
|
|
USE_RUBY= yes
|
|
USE_RUBY_EXTCONF= yes
|
|
|
|
CONFIGURE_ARGS= --with-mysql-config
|
|
INSTALL_TARGET= site-install
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${RUBY_MODDOCDIR}/ja
|
|
${INSTALL_DATA} ${WRKSRC}/README.html ${RUBY_MODDOCDIR}/
|
|
${INSTALL_DATA} ${WRKSRC}/tommy.css ${RUBY_MODDOCDIR}/
|
|
${INSTALL_DATA} ${WRKSRC}/README_ja.html ${RUBY_MODDOCDIR}/ja/
|
|
${LN} -fs ../tommy.css ${RUBY_MODDOCDIR}/ja/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|