mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
181466b6a6
PR: 98821 Submitted by: ports fury
37 lines
796 B
Makefile
37 lines
796 B
Makefile
# New ports collection makefile for: Oniguruma
|
|
# Date created: 31 January 2003
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= oniguruma
|
|
PORTVERSION= 2.5.6
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.geocities.jp/kosako3/oniguruma/archive/
|
|
DISTNAME= onigd${PORTVERSION:S/./_/g}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A BSDL Regular Expressions library compatible with POSIX/GNU/Perl
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
USE_GNOME= gnometarget
|
|
GNU_CONFIGURE= yes
|
|
#INSTALLS_SHLIB= yes
|
|
|
|
DOCS= HISTORY README doc/*
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/sample/* ${EXAMPLESDIR}/
|
|
${MKDIR} ${DOCSDIR}
|
|
.for f in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|