blob: f9f8cedd3934001219d559266d2a40eca9aa4c97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Ports collection makefile for: rubygem-app_config
# Date created: 2011-07-28
# Whom: milki <milki@rescomp.berkeley.edu>
#
# $FreeBSD$
PORTNAME= app_config
PORTVERSION= 0.7.1
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= milki@rescomp.berkeley.edu
COMMENT= A ruby gem for storing application configuration
LICENSE= MIT
OPTIONS= SQLITE3 "sqlite3 backend support" Off
# MONGO "mongo backend support Off # No port yet
.include <bsd.port.options.mk>
.if !defined(WITHOUT_SQLITE3)
RUN_DEPENDS+= rubygem-sqlite-ruby>=0:${PORTSDIR}/databases/rubygem-sqlite3-ruby
.endif
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|