forked from Lainports/freebsd-ports
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category W. CR: D510 Approved by: portmgr (bapt)
28 lines
729 B
Makefile
28 lines
729 B
Makefile
# Created by: IWATSUKI Hiroyuki <don@na.rim.or.jp>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= scrapi
|
|
PORTVERSION= 1.2.0
|
|
CATEGORIES= www rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= don@na.rim.or.jp
|
|
COMMENT= ScrAPI toolkit for Ruby
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/${SPEC_DIR}/tidy-1.1.2.gemspec:${PORTSDIR}/textproc/rubygem-tidy \
|
|
tidy:${PORTSDIR}/www/tidy-lib
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBYGEMS= yes
|
|
USE_LDCONFIG= yes
|
|
RUBYGEM_AUTOPLIST= yes
|
|
PLIST_FILES= ${GEM_LIB_DIR}/lib/tidy/libtidy.so
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-install:
|
|
${RM} -f ${LOCALBASE}/${GEM_LIB_DIR}/lib/tidy/libtidy.dll
|
|
${RM} -f ${LOCALBASE}/${GEM_LIB_DIR}/lib/tidy/libtidy.so
|
|
${LN} -sf ${LOCALBASE}/lib/libtidy.so ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/tidy/
|
|
|
|
.include <bsd.port.post.mk>
|