mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Mk/bsd.(ruby,efl).mk: Replace "freebsd" with OPSYS:L
This change is no-op for FreeBSD but is needed for DragonFly support. It has been run in dports for a year. Also unneeded trailing slashes were removed from bsd.efl.mk (also tested for a year). Approved by: portmgr (bapt)
This commit is contained in:
parent
fc9f72a8b6
commit
1a169331b0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=345531
2 changed files with 10 additions and 10 deletions
|
@ -137,9 +137,9 @@ _EFL_EVAS_LOADERS_ALL= bmp eet generic gif ico jpeg \
|
|||
# Generic evas engines definitions
|
||||
#
|
||||
_EFL_EVAS_CATEGORY= graphics
|
||||
_EFL_EVAS_MODDIR= ${LOCALBASE}/lib/evas/modules/
|
||||
_EFL_EVAS_ENGINES_MODDIR= ${_EFL_EVAS_MODDIR}/engines/
|
||||
_EFL_EVAS_LOADERS_MODDIR= ${_EFL_EVAS_MODDIR}/loaders/
|
||||
_EFL_EVAS_MODDIR= ${LOCALBASE}/lib/evas/modules
|
||||
_EFL_EVAS_ENGINES_MODDIR= ${_EFL_EVAS_MODDIR}/engines
|
||||
_EFL_EVAS_LOADERS_MODDIR= ${_EFL_EVAS_MODDIR}/loaders
|
||||
|
||||
#
|
||||
# Evas engine modules definitions
|
||||
|
@ -288,8 +288,8 @@ _USE_EFL_EVAS_ENGINES_UQ+= ${COMP}
|
|||
. endfor
|
||||
|
||||
. for COMP in ${_USE_EFL_EVAS_ENGINES_UQ}
|
||||
BUILD_DEPENDS+= ${_EFL_EVAS_ENGINES_MODDIR}/${_evas_engine_${COMP}_DIR}/freebsd${OSREL}-${ARCH}/module.so:${PORTSDIR}/${_evas_engine_${COMP}_CATEGORY}/${_evas_engine_${COMP}_PORTNAME}
|
||||
RUN_DEPENDS+= ${_EFL_EVAS_ENGINES_MODDIR}/${_evas_engine_${COMP}_DIR}/freebsd${OSREL}-${ARCH}/module.so:${PORTSDIR}/${_evas_engine_${COMP}_CATEGORY}/${_evas_engine_${COMP}_PORTNAME}
|
||||
BUILD_DEPENDS+= ${_EFL_EVAS_ENGINES_MODDIR}/${_evas_engine_${COMP}_DIR}/${OPSYS:L}${OSREL}-${ARCH}/module.so:${PORTSDIR}/${_evas_engine_${COMP}_CATEGORY}/${_evas_engine_${COMP}_PORTNAME}
|
||||
RUN_DEPENDS+= ${_EFL_EVAS_ENGINES_MODDIR}/${_evas_engine_${COMP}_DIR}/${OPSYS:L}${OSREL}-${ARCH}/module.so:${PORTSDIR}/${_evas_engine_${COMP}_CATEGORY}/${_evas_engine_${COMP}_PORTNAME}
|
||||
. endfor
|
||||
|
||||
.endif #USE_EFL_EVAS_ENGINES
|
||||
|
@ -316,8 +316,8 @@ _USE_EFL_EVAS_LOADERS_UQ+= ${COMP}
|
|||
. endfor
|
||||
|
||||
. for COMP in ${_USE_EFL_EVAS_LOADERS_UQ}
|
||||
BUILD_DEPENDS+= ${_EFL_EVAS_LOADERS_MODDIR}/${_evas_loader_${COMP}_DIR}/freebsd${OSREL}-${ARCH}/module.so:${PORTSDIR}/${_evas_loader_${COMP}_CATEGORY}/${_evas_loader_${COMP}_PORTNAME}
|
||||
RUN_DEPENDS+= ${_EFL_EVAS_LOADERS_MODDIR}/${_evas_loader_${COMP}_DIR}/freebsd${OSREL}-${ARCH}/module.so:${PORTSDIR}/${_evas_loader_${COMP}_CATEGORY}/${_evas_loader_${COMP}_PORTNAME}
|
||||
BUILD_DEPENDS+= ${_EFL_EVAS_LOADERS_MODDIR}/${_evas_loader_${COMP}_DIR}/${OPSYS:L}${OSREL}-${ARCH}/module.so:${PORTSDIR}/${_evas_loader_${COMP}_CATEGORY}/${_evas_loader_${COMP}_PORTNAME}
|
||||
RUN_DEPENDS+= ${_EFL_EVAS_LOADERS_MODDIR}/${_evas_loader_${COMP}_DIR}/${OPSYS:L}${OSREL}-${ARCH}/module.so:${PORTSDIR}/${_evas_loader_${COMP}_CATEGORY}/${_evas_loader_${COMP}_PORTNAME}
|
||||
. endfor
|
||||
|
||||
.endif #USE_EFL_EVAS_LOADERS
|
||||
|
@ -398,7 +398,7 @@ CPPFLAGS+= -I${LOCALBASE}/include
|
|||
LDFLAGS+= -L${LOCALBASE}/lib
|
||||
CFLAGS+= -I${LOCALBASE}/include
|
||||
|
||||
PLIST_SUB+= E17_ARCH=freebsd${OSREL}-${ARCH}
|
||||
PLIST_SUB+= E17_ARCH=${OPSYS:L}${OSREL}-${ARCH}
|
||||
|
||||
.if defined(_USE_EFL_LIBRT_HACK)
|
||||
#
|
||||
|
|
|
@ -243,9 +243,9 @@ RUBY_CONFIGURE_ARGS+= --with-rubyhdrdir="${PREFIX}/include/ruby-${RUBY_VER}/" \
|
|||
--docdir="${RUBY_DOCDIR}" \
|
||||
--with-soname=ruby${RUBY_SUFFIX}
|
||||
|
||||
CONFIGURE_TARGET?= ${ARCH}-portbld-freebsd${OSREL:C/\..*//}
|
||||
CONFIGURE_TARGET?= ${ARCH}-portbld-${OPSYS:L}${OSREL:C/\..*//}
|
||||
|
||||
RUBY_ARCH?= ${ARCH}-freebsd${OSREL:C/\..*//}
|
||||
RUBY_ARCH?= ${ARCH}-${OPSYS:L}${OSREL:C/\..*//}
|
||||
RUBY_NAME?= ruby${RUBY_SUFFIX}
|
||||
|
||||
_RUBY_SYSLIBDIR?= ${PREFIX}/lib
|
||||
|
|
Loading…
Add table
Reference in a new issue