mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
add fpc-regexpr 1.0.10
Free Pascal regular expression routines PR: 61119 Submitted by: John Merryweather Cooper <johnmary@adelphia.net>
This commit is contained in:
parent
56229123c2
commit
72cf9139a9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=98247
5 changed files with 90 additions and 0 deletions
|
@ -225,6 +225,7 @@
|
||||||
SUBDIR += fnorb
|
SUBDIR += fnorb
|
||||||
SUBDIR += fortran-utils
|
SUBDIR += fortran-utils
|
||||||
SUBDIR += fpc-gdbint
|
SUBDIR += fpc-gdbint
|
||||||
|
SUBDIR += fpc-regexpr
|
||||||
SUBDIR += fpp
|
SUBDIR += fpp
|
||||||
SUBDIR += freelibiberty
|
SUBDIR += freelibiberty
|
||||||
SUBDIR += freescope
|
SUBDIR += freescope
|
||||||
|
|
76
devel/fpc-regexpr/Makefile
Normal file
76
devel/fpc-regexpr/Makefile
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
# New ports collection makefile for: Free Pascal Compiler
|
||||||
|
# Date created: 28 November 2001
|
||||||
|
# Whom: John Merryweather Cooper et al
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= regexpr
|
||||||
|
PORTVERSION= 1.0.10
|
||||||
|
CATEGORIES= devel
|
||||||
|
MASTER_SITES= ftp://ftp.freepascal.org/pub/fpc/dist/FreeBSD/ \
|
||||||
|
http://planetmirror.com/pub/fpc/dist/FreeBSD/ \
|
||||||
|
ftp://ftp.jp.freepascal.org/mirror/fpc/dist/FreeBSD/ \
|
||||||
|
ftp://freepascal.stack.nl/pub/fpc/dist/FreeBSD/ \
|
||||||
|
ftp://ftp.no.freepascal.org/pub/fpc/dist/FreeBSD/ \
|
||||||
|
ftp://ftp.us.freepascal.org/pub/fpc/dist/FreeBSD/ \
|
||||||
|
${MASTER_SITE_SOURCEFORGE}
|
||||||
|
MASTER_SITE_SUBDIR= freepascal
|
||||||
|
PKGNAMEPREFIX= fpc-
|
||||||
|
DISTNAME= fpc-${PORTVERSION}.ELF
|
||||||
|
EXTRACT_SUFX= .tar
|
||||||
|
|
||||||
|
MAINTAINER= coop9211@uidaho.edu
|
||||||
|
COMMENT= Free Pascal regular expression routines
|
||||||
|
|
||||||
|
.include <bsd.port.pre.mk>
|
||||||
|
|
||||||
|
BUILD_DEPENDS= ppc386:${PORTSDIR}/lang/fpc
|
||||||
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||||
|
.if ${OSVERSION} >= 500000
|
||||||
|
LIB_DEPENDS= c.4:${PORTSDIR}/misc/compat4x
|
||||||
|
.endif
|
||||||
|
.if ${OSVERSION} < 470000
|
||||||
|
EXTRACT_DEPENDS= gtar:${PORTSDIR}/archivers/gtar
|
||||||
|
TAR= ${LOCALBASE}/bin/gtar
|
||||||
|
.endif
|
||||||
|
USE_GMAKE= yes
|
||||||
|
USE_REINPLACE= yes
|
||||||
|
ONLY_FOR_ARCHS= i386
|
||||||
|
|
||||||
|
PLIST_SUB+= PORTVERSION=${PORTVERSION}
|
||||||
|
|
||||||
|
MAKE_ENV+= PATH=${LOCALBASE}/bin:$$PATH \
|
||||||
|
FPC=${LOCALBASE}/bin/ppc386 \
|
||||||
|
INSTALL_BASEDIR=${PREFIX}/lib/fpc/${PORTVERSION} \
|
||||||
|
INSTALL_BINDIR=${PREFIX}/bin \
|
||||||
|
GCCLIBDIR=/usr/lib \
|
||||||
|
RELEASE=1
|
||||||
|
|
||||||
|
do-extract:
|
||||||
|
# unpack distribution
|
||||||
|
@${MKDIR} ${WRKSRC}
|
||||||
|
@${TAR} xf ${DISTDIR}/${DISTNAME}.tar --directory ${WRKSRC}
|
||||||
|
# unpack sources distribution
|
||||||
|
@${MKDIR} ${WRKSRC}/sources
|
||||||
|
@${TAR} xf ${WRKSRC}/sources.tar --directory ${WRKSRC}/sources
|
||||||
|
# further extract base sources
|
||||||
|
#
|
||||||
|
# regexpr sources
|
||||||
|
@${TAR} zxf ${WRKSRC}/sources/unitsregexprsrc.tar.gz \
|
||||||
|
--directory ${WRKSRC}
|
||||||
|
|
||||||
|
post-patch:
|
||||||
|
# change to alter amount of optimization
|
||||||
|
@${FIND} ${WRKSRC}/share/src/fpc-${PORTVERSION} -name \
|
||||||
|
"Makefile*" | ${XARGS} ${REINPLACE_CMD} 's|-OG2p3|-OG2p1|g'
|
||||||
|
|
||||||
|
do-build:
|
||||||
|
cd ${WRKSRC}/share/src/fpc-${PORTVERSION}/packages/base/regexpr && \
|
||||||
|
${GMAKE} ${MAKE_ENV} all
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
cd ${WRKSRC}/share/src/fpc-${PORTVERSION}/packages/base/regexpr && \
|
||||||
|
${GMAKE} ${MAKE_ENV} install
|
||||||
|
|
||||||
|
.include <bsd.port.post.mk>
|
1
devel/fpc-regexpr/distinfo
Normal file
1
devel/fpc-regexpr/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (fpc-1.0.10.ELF.tar) = 6ad56eb115152174683499da3ece7667
|
8
devel/fpc-regexpr/pkg-descr
Normal file
8
devel/fpc-regexpr/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
Regexpr is part of the base packages of Free Pascal,
|
||||||
|
a 32-bit Turbo Pascal/Delphi compatible compiler. Regexpr
|
||||||
|
provides regular expression routines.
|
||||||
|
|
||||||
|
WWW: http://www.freepascal.org/
|
||||||
|
|
||||||
|
--
|
||||||
|
John Merryweather Cooper <coop9211@uidaho.edu>
|
4
devel/fpc-regexpr/pkg-plist
Normal file
4
devel/fpc-regexpr/pkg-plist
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
lib/fpc/%%PORTVERSION%%/units/freebsd/regexpr/Package.fpc
|
||||||
|
lib/fpc/%%PORTVERSION%%/units/freebsd/regexpr/regexpr.o
|
||||||
|
lib/fpc/%%PORTVERSION%%/units/freebsd/regexpr/regexpr.ppu
|
||||||
|
@dirrm lib/fpc/%%PORTVERSION%%/units/freebsd/regexpr
|
Loading…
Add table
Reference in a new issue