mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
- Group common variable declarations together
Reviewed by: swills
This commit is contained in:
parent
edbe554ba2
commit
7c6ecde898
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=344325
@ -181,16 +181,6 @@ RUBY_PORTREVISION= 1
|
||||
RUBY_PORTEPOCH= 1
|
||||
RUBY_PATCHLEVEL= 484
|
||||
|
||||
RUBY_VERSION?= ${RUBY_RELVERSION}.${RUBY_PATCHLEVEL}
|
||||
RUBY_DISTVERSION?= ${RUBY_RELVERSION}-p${RUBY_PATCHLEVEL}
|
||||
|
||||
RUBY_WRKSRC= ${WRKDIR}/ruby-${RUBY_DISTVERSION}
|
||||
|
||||
RUBY_CONFIGURE_ARGS+= --with-rubyhdrdir="${PREFIX}/include/ruby-1.9/" \
|
||||
--with-rubylibprefix="${PREFIX}/lib/ruby" \
|
||||
--docdir="${RUBY_DOCDIR}" \
|
||||
--with-soname=ruby19
|
||||
|
||||
#
|
||||
# PLIST_SUB helpers
|
||||
#
|
||||
@ -206,23 +196,12 @@ RUBY_PORTREVISION= 4
|
||||
RUBY_PORTEPOCH= 1
|
||||
RUBY_PATCHLEVEL= 353
|
||||
|
||||
RUBY_VERSION?= ${RUBY_RELVERSION}.${RUBY_PATCHLEVEL}
|
||||
RUBY_DISTVERSION?= ${RUBY_RELVERSION}-p${RUBY_PATCHLEVEL}
|
||||
|
||||
RUBY_WRKSRC= ${WRKDIR}/ruby-${RUBY_DISTVERSION}
|
||||
|
||||
RUBY_CONFIGURE_ARGS+= --with-rubyhdrdir="${PREFIX}/include/ruby-2.0/" \
|
||||
--with-rubylibprefix="${PREFIX}/lib/ruby" \
|
||||
--docdir="${RUBY_DOCDIR}" \
|
||||
--with-soname=ruby20
|
||||
|
||||
#
|
||||
# PLIST_SUB helpers
|
||||
#
|
||||
RUBY19= "@comment "
|
||||
RUBY20= ""
|
||||
|
||||
|
||||
. else
|
||||
#
|
||||
# Other versions
|
||||
@ -231,6 +210,16 @@ IGNORE= Only ruby 1.9 and 2.0 are supported
|
||||
. endif
|
||||
.endif # defined(RUBY_VER)
|
||||
|
||||
RUBY_VERSION?= ${RUBY_RELVERSION}.${RUBY_PATCHLEVEL}
|
||||
RUBY_DISTVERSION?= ${RUBY_RELVERSION}-p${RUBY_PATCHLEVEL}
|
||||
|
||||
RUBY_WRKSRC= ${WRKDIR}/ruby-${RUBY_DISTVERSION}
|
||||
|
||||
RUBY_CONFIGURE_ARGS+= --with-rubyhdrdir="${PREFIX}/include/ruby-${RUBY_VER}/" \
|
||||
--with-rubylibprefix="${PREFIX}/lib/ruby" \
|
||||
--docdir="${RUBY_DOCDIR}" \
|
||||
--with-soname=ruby${RUBY_SUFFIX}
|
||||
|
||||
CONFIGURE_TARGET?= ${ARCH}-portbld-freebsd${OSREL:C/\..*//}
|
||||
|
||||
RUBY_ARCH?= ${ARCH}-freebsd${OSREL:C/\..*//}
|
||||
|
Loading…
Reference in New Issue
Block a user