d765f5df76
In the upgrade from ruby 1.8.6 to 1.8.7, the PLISTs changed due to differences in how RDoc processes files. This also has a number of changes to the regress tests to work with the changes to devel/ruby-rake. It moves most of the regress tests to use MODRUBY_REGRESS. OK jcs@, landry@, jasper@, sthen@
45 lines
934 B
Makefile
45 lines
934 B
Makefile
# $OpenBSD: Makefile,v 1.25 2010/09/23 22:30:26 jeremy Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= Ruby interface to ncurses
|
|
|
|
VERSION= 1.1
|
|
DISTNAME= ncurses-ruby-${VERSION}
|
|
PKGNAME= ruby-ncurses-${VERSION}
|
|
REVISION= 7
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://ncurses-ruby.berlios.de/
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c form m ncurses panel
|
|
|
|
MASTER_SITES= ${MASTER_SITE_BERLIOS:=ncurses-ruby/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MODULES= lang/ruby
|
|
|
|
LIB_DEPENDS= ${MODRUBY_LIB_DEPENDS}
|
|
|
|
CONFIGURE_STYLE= ruby extconf
|
|
|
|
INSTALL_TARGET= site-install
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
DOC_DIR= ${MODRUBY_DOCDIR}/ruby-ncurses
|
|
SAMPLE_DIR= ${MODRUBY_EXAMPLEDIR}/ruby-ncurses
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOC_DIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOC_DIR}
|
|
${INSTALL_DATA_DIR} ${SAMPLE_DIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/* ${SAMPLE_DIR}
|
|
|
|
.include <bsd.port.mk>
|