76c7f8fbe6
minor COMMENT typos and surrounding whitespace fixes. Categories D-F. CR: D196 Approved by: portmgr (bapt)
37 lines
738 B
Makefile
37 lines
738 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= app_config
|
|
PORTVERSION= 2.1.3
|
|
CATEGORIES= devel rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= milki@FreeBSD.org
|
|
COMMENT= Ruby gem for storing application configuration
|
|
|
|
LICENSE= MIT
|
|
|
|
OPTIONS_DEFINE= MONGO SQLITE3
|
|
OPTIONS_DEFAULT= SQLITE3
|
|
|
|
MONGO_DESC= mongo backend support
|
|
SQLITE3_DESC= sqlite3 backend support
|
|
OPTIONSFILE= ${PORT_DBDIR}/rubygem-${PORTNAME}/options
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MSQLITE3}
|
|
RUN_DEPENDS+= rubygem-sqlite3>=0:${PORTSDIR}/databases/rubygem-sqlite3
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MMONGO}
|
|
RUN_DEPENDS+= rubygem-mongo>=0:${PORTSDIR}/devel/rubygem-mongo
|
|
.endif
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBYGEMS= yes
|
|
RUBYGEM_AUTOPLIST= yes
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|