58 lines
1.5 KiB
Makefile
58 lines
1.5 KiB
Makefile
# $OpenBSD: Makefile,v 1.15 2011/01/15 01:09:43 naddy Exp $
|
|
|
|
SHARED_ONLY = Yes
|
|
|
|
COMMENT = Nginx module for deploying Ruby applications
|
|
|
|
DISTNAME = passenger-3.0.0
|
|
PKGNAME = ruby-${DISTNAME}
|
|
REVISION = 3
|
|
CATEGORIES = www
|
|
|
|
HOMEPAGE = http://www.modrails.com/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = http://files.rubyforge.vm.bytemark.co.uk/passenger/
|
|
|
|
MODULES = lang/ruby
|
|
|
|
WANTLIB = c m pthread stdc++ ${MODRUBY_WANTLIB}
|
|
|
|
LIB_DEPENDS = ${MODRUBY_LIB_DEPENDS}
|
|
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
RUN_DEPENDS = devel/ruby-rake \
|
|
devel/ruby-fastthread \
|
|
net/curl \
|
|
www/ruby-rack
|
|
|
|
PORTHOME = ${WRKDIR}
|
|
|
|
MAKE_ENV += CC=${CC} CXX=${CXX}
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${RAKE} nginx
|
|
@perl -pi -e "s#PASSENGER_ROOT =.*#PASSENGER_ROOT = '${PREFIX}/lib/phusion_passenger'#g" \
|
|
${WRKSRC}/bin/passenger-config
|
|
@cd ${WRKBUILD} && ${SETENV} ${MAKE_ENV} ${RAKE} fakeroot
|
|
@find ${WRKBUILD}/pkg/fakeroot -name '*.orig' | xargs -r rm -f
|
|
|
|
do-install:
|
|
cd ${WRKBUILD}/pkg/fakeroot/usr/local && \
|
|
tar -cf - * | tar -C ${PREFIX} -xf -
|
|
rm -f ${PREFIX}/bin/passenger-install-nginx-module
|
|
${INSTALL_DATA_DIR} ${PREFIX}/lib/phusion-passenger/ext
|
|
cd ${WRKBUILD}/ext && tar -cf - common nginx | \
|
|
tar -C ${PREFIX}/lib/phusion-passenger/ext -xf -
|
|
find ${PREFIX}/lib/phusion-passenger/ext -name '*.orig' | \
|
|
xargs -r rm -f
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/nginx
|
|
${INSTALL_DATA} ${FILESDIR}/*.sample ${PREFIX}/share/nginx
|
|
|
|
.include <bsd.port.mk>
|