diff options
author | TAKATSU Tomonari <tota@FreeBSD.org> | 2012-06-12 15:10:39 +0000 |
---|---|---|
committer | TAKATSU Tomonari <tota@FreeBSD.org> | 2012-06-12 15:10:39 +0000 |
commit | bc53b57d23ca3d4f774cc3cfa85c08c64711488f (patch) | |
tree | bdd343137879792d40c5184246d4c7848ebec578 /japanese/rubygem-jpmobile | |
parent | 1cc19a47d197e896efc36f288c96770cbfaef92f (diff) |
Notes
Diffstat (limited to 'japanese/rubygem-jpmobile')
-rw-r--r-- | japanese/rubygem-jpmobile/Makefile | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/japanese/rubygem-jpmobile/Makefile b/japanese/rubygem-jpmobile/Makefile index 0e538c8c783b..9c6dc53cc96d 100644 --- a/japanese/rubygem-jpmobile/Makefile +++ b/japanese/rubygem-jpmobile/Makefile @@ -21,23 +21,26 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -OPTIONS= GEOKIT "Run with geokit" Off \ - IPADDRESSES "IP address validation support" On \ - TERMINFO "terminal information support" On +OPTIONS_DEFINE= GEOKIT IPADDRESSES TERMINFO +GEOKIT_DESC= Run with geokit +IPADDRESSES_DESC= IP address validation support +TERMINFO_DESC= terminal information support + +OPTIONS_DEFAULT= IPADDRESSES TERMINFO .include <bsd.port.pre.mk> PKGNAMEPREFIX:= ${PKGNAMEPREFIX}rubygem- -.if !defined(WITHOUT_GEOKIT) +.if ${PORT_OPTIONS:MGEOKIT} RUN_DEPENDS+= rubygem-geokit>=1.5.0:${PORTSDIR}/graphics/rubygem-geokit .endif -.if defined(WITH_IPADDRESSES) +.if ${PORT_OPTIONS:MIPADDRESSES} RUN_DEPENDS+= ja-rubygem-jpmobile-ipaddresses>=0.0.1:${PORTSDIR}/japanese/rubygem-jpmobile-ipaddresses .endif -.if defined(WITH_TERMINFO) +.if ${PORT_OPTIONS:MTERMINFO} RUN_DEPENDS+= ja-rubygem-jpmobile-terminfo>=0.0.2:${PORTSDIR}/japanese/rubygem-jpmobile-terminfo .endif |