Update to 2.0.a2

PR:		ports/80658
Submitted by:	maintainer
This commit is contained in:
Jean-Yves Lefort 2005-05-07 21:41:51 +00:00
parent 26e3539e23
commit 7843452227
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=134812
3 changed files with 13 additions and 9 deletions

View file

@ -6,14 +6,14 @@
# #
PORTNAME= firebird PORTNAME= firebird
PORTVERSION= 2.0.a1 PORTVERSION= 2.0.a2
CATEGORIES= databases CATEGORIES= databases
MASTER_SITES= http://www.ramenzoni.com.br/~garga/firebird/ \ MASTER_SITES= http://www.ramenzoni.com.br/~garga/firebird/ \
http://www.galle.com.br/~renato/firebird/ \ http://www.galle.com.br/~renato/firebird/ \
http://www.brainsoft.com.br/~garga/firebird/ http://www.brainsoft.com.br/~garga/firebird/
MASTER_SITE_SUBDIR= firebird MASTER_SITE_SUBDIR= firebird
PKGNAMESUFFIX= -devel PKGNAMESUFFIX= -devel
DISTNAME= firebird2-20050327 DISTNAME= firebird2-20050505
MAINTAINER= freebsd@galle.com.br MAINTAINER= freebsd@galle.com.br
COMMENT= The open-source InterBase(tm) 6.0 spin-off (Classic version) COMMENT= The open-source InterBase(tm) 6.0 spin-off (Classic version)
@ -24,14 +24,14 @@ WANT_LIBTOOL_VER= 15
WANT_AUTOCONF_VER= 259 WANT_AUTOCONF_VER= 259
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_GCC= 3.4 USE_GCC= 3.4
USE_REINPLACE= yes
CONFLICTS= firebird-1.* CONFLICTS= firebird-1.*
WRKSRC= ${WRKDIR}/firebird2 WRKSRC= ${WRKDIR}/firebird2
INSTALLS_SHLIB= yes INSTALLS_SHLIB= yes
LDCONFIG_DIRS= %%PREFIX%%/firebird/lib LDCONFIG_DIRS= %%PREFIX%%/firebird/lib
SUB_FILES= pkg-message SUB_FILES= pkg-message pkg-install
PKGMESSAGE= ${WRKDIR}/pkg-message
ONLY_FOR_ARCHS= i386 ONLY_FOR_ARCHS= i386
@ -55,6 +55,10 @@ pre-everything::
@sleep 10 @sleep 10
.endif .endif
post-patch:
@${REINPLACE_CMD} 's,InstallPrefix/etc,${LOCALBASE}/etc,g' \
${WRKSRC}/builds/install/arch-specific/freebsd/install.sh.in
do-configure: do-configure:
@(cd ${WRKSRC} && ${ENV} CC=${CC} CXX=${CXX} MAKE=${GMAKE} \ @(cd ${WRKSRC} && ${ENV} CC=${CC} CXX=${CXX} MAKE=${GMAKE} \
${AUTOTOOLS_VARS} ./autogen.sh --prefix=${PREFIX}/firebird \ ${AUTOTOOLS_VARS} ./autogen.sh --prefix=${PREFIX}/firebird \

View file

@ -1,2 +1,2 @@
MD5 (firebird2-20050327.tar.bz2) = 93996c74033f0efa180527e69f45196a MD5 (firebird2-20050505.tar.bz2) = 26a666ffb3a0499e6bd8e1a87ebc4ad5
SIZE (firebird2-20050327.tar.bz2) = 4321529 SIZE (firebird2-20050505.tar.bz2) = 4341875

View file

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
# $FreeBSD$ # $FreeBSD: /tmp/pcvs/ports/databases/firebird-devel/files/Attic/pkg-install.in,v 1.1 2005-05-07 21:41:51 jylefort Exp $
PATH=/bin:/usr/bin:/usr/sbin PATH=/bin:/usr/bin:/usr/sbin
@ -137,8 +137,8 @@ chmod 660 security2.fdb
if [ -d $PKG_PREFIX/etc/rc.d ]; then if [ -d $PKG_PREFIX/etc/rc.d ]; then
( (
echo "#!/bin/sh"; echo "[ -d $PKG_PREFIX/firebird/lib ] && /sbin/ldconfig -m $PKG_PREFIX/firebird/lib" echo "#!/bin/sh"; echo "[ -d $PKG_PREFIX/firebird/lib ] && /sbin/ldconfig -m $PKG_PREFIX/firebird/lib"
) > $PKG_PREFIX/etc/rc.d/000.firebird.sh ) > %%LOCALBASE%%/etc/rc.d/000.firebird.sh
chmod a=rx $PKG_PREFIX/etc/rc.d/000.firebird.sh chmod a=rx %%LOCALBASE%%/etc/rc.d/000.firebird.sh
fi fi
;; ;;