mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
Doctrine is an object relational mapper (ORM) for PHP 5.2.3+ that
sits on top of a powerful database abstraction layer (DBAL). One of its key features is the option to write database queries in a proprietary object oriented SQL dialect called Doctrine Query Language (DQL), inspired by Hibernate's HQL. This provides developers with a powerful alternative to SQL that maintains flexibility without requiring unnecessary code duplication. WWW: http://www.doctrine-project.org/ Feature safe: yes
This commit is contained in:
parent
4967055aea
commit
d93cab3b17
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=242208
@ -423,6 +423,7 @@
|
||||
SUBDIR += pear-DB_Table
|
||||
SUBDIR += pear-DB_ldap
|
||||
SUBDIR += pear-DB_ldap2
|
||||
SUBDIR += pear-Doctrine
|
||||
SUBDIR += pear-MDB
|
||||
SUBDIR += pear-MDB2
|
||||
SUBDIR += pear-MDB2_Driver_ibase
|
||||
|
1080
databases/pear-Doctrine/Makefile
Normal file
1080
databases/pear-Doctrine/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
3
databases/pear-Doctrine/distinfo
Normal file
3
databases/pear-Doctrine/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (PEAR/Doctrine-1.1.4.tgz) = 1832e9e655019689b2caa8296c73e58f
|
||||
SHA256 (PEAR/Doctrine-1.1.4.tgz) = 3e6b286a56ff97775da07741613b66780a2494d4646e0d813ccb0e4c42e34cb3
|
||||
SIZE (PEAR/Doctrine-1.1.4.tgz) = 648767
|
27
databases/pear-Doctrine/files/pear-deinstall.in
Normal file
27
databases/pear-Doctrine/files/pear-deinstall.in
Normal file
@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Remove package declaration from PEAR's registry and optionally delete
|
||||
# a non-standard channel.
|
||||
|
||||
if [ x$2 != xDEINSTALL -a x$2 != xPOST-DEINSTALL ]; then
|
||||
exit
|
||||
fi
|
||||
PKG_NAME=${1%%-[0-9._]*}
|
||||
PACKAGE=$(echo $PKG_NAME | sed 's/pear-//')
|
||||
|
||||
PEAR=${PKG_PREFIX}/bin/pear
|
||||
CHANNEL=%%CHANNEL%%
|
||||
|
||||
if [ "$2" = "DEINSTALL" ]; then
|
||||
if [ "x${CHANNEL}" != "x" ]; then
|
||||
${PEAR} uninstall -r -n ${CHANNEL}/${PACKAGE} || true
|
||||
else
|
||||
${PEAR} uninstall -r -n ${PACKAGE} || true
|
||||
fi
|
||||
else
|
||||
if [ "x${CHANNEL}" != "x" ]; then
|
||||
${PEAR} channel-delete ${CHANNEL}
|
||||
fi
|
||||
fi
|
19
databases/pear-Doctrine/files/pear-install.in
Normal file
19
databases/pear-Doctrine/files/pear-install.in
Normal file
@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Register the package $1 in the port registry and optionally add a
|
||||
# non-standard channel.
|
||||
|
||||
PREFIX=${PKG_PREFIX:=%%PREFIX%%}
|
||||
PEAR=${PREFIX}/bin/pear
|
||||
PKGREGDIR=${PREFIX}/share/pear/packages/$1
|
||||
CHANNEL=%%CHANNEL%%
|
||||
|
||||
[ "x$1" = "x" ] && exit 1
|
||||
if [ "x$2" = "xPOST-INSTALL" ]; then
|
||||
if [ "x${CHANNEL}" != "x" ]; then
|
||||
${PEAR} channel-add http://${CHANNEL}/channel.xml
|
||||
fi
|
||||
${PEAR} install -r -n -f ${PKGREGDIR}/package.xml
|
||||
fi
|
10
databases/pear-Doctrine/pkg-descr
Normal file
10
databases/pear-Doctrine/pkg-descr
Normal file
@ -0,0 +1,10 @@
|
||||
Doctrine is an object relational mapper (ORM) for PHP 5.2.3+ that
|
||||
sits on top of a powerful database abstraction layer (DBAL).
|
||||
|
||||
One of its key features is the option to write database queries in a
|
||||
proprietary object oriented SQL dialect called Doctrine Query
|
||||
Language (DQL), inspired by Hibernate's HQL. This provides developers
|
||||
with a powerful alternative to SQL that maintains flexibility without
|
||||
requiring unnecessary code duplication.
|
||||
|
||||
WWW: http://www.doctrine-project.org/
|
1080
databases/pear-Doctrine12/Makefile
Normal file
1080
databases/pear-Doctrine12/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
3
databases/pear-Doctrine12/distinfo
Normal file
3
databases/pear-Doctrine12/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (PEAR/Doctrine-1.1.4.tgz) = 1832e9e655019689b2caa8296c73e58f
|
||||
SHA256 (PEAR/Doctrine-1.1.4.tgz) = 3e6b286a56ff97775da07741613b66780a2494d4646e0d813ccb0e4c42e34cb3
|
||||
SIZE (PEAR/Doctrine-1.1.4.tgz) = 648767
|
27
databases/pear-Doctrine12/files/pear-deinstall.in
Normal file
27
databases/pear-Doctrine12/files/pear-deinstall.in
Normal file
@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Remove package declaration from PEAR's registry and optionally delete
|
||||
# a non-standard channel.
|
||||
|
||||
if [ x$2 != xDEINSTALL -a x$2 != xPOST-DEINSTALL ]; then
|
||||
exit
|
||||
fi
|
||||
PKG_NAME=${1%%-[0-9._]*}
|
||||
PACKAGE=$(echo $PKG_NAME | sed 's/pear-//')
|
||||
|
||||
PEAR=${PKG_PREFIX}/bin/pear
|
||||
CHANNEL=%%CHANNEL%%
|
||||
|
||||
if [ "$2" = "DEINSTALL" ]; then
|
||||
if [ "x${CHANNEL}" != "x" ]; then
|
||||
${PEAR} uninstall -r -n ${CHANNEL}/${PACKAGE} || true
|
||||
else
|
||||
${PEAR} uninstall -r -n ${PACKAGE} || true
|
||||
fi
|
||||
else
|
||||
if [ "x${CHANNEL}" != "x" ]; then
|
||||
${PEAR} channel-delete ${CHANNEL}
|
||||
fi
|
||||
fi
|
19
databases/pear-Doctrine12/files/pear-install.in
Normal file
19
databases/pear-Doctrine12/files/pear-install.in
Normal file
@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Register the package $1 in the port registry and optionally add a
|
||||
# non-standard channel.
|
||||
|
||||
PREFIX=${PKG_PREFIX:=%%PREFIX%%}
|
||||
PEAR=${PREFIX}/bin/pear
|
||||
PKGREGDIR=${PREFIX}/share/pear/packages/$1
|
||||
CHANNEL=%%CHANNEL%%
|
||||
|
||||
[ "x$1" = "x" ] && exit 1
|
||||
if [ "x$2" = "xPOST-INSTALL" ]; then
|
||||
if [ "x${CHANNEL}" != "x" ]; then
|
||||
${PEAR} channel-add http://${CHANNEL}/channel.xml
|
||||
fi
|
||||
${PEAR} install -r -n -f ${PKGREGDIR}/package.xml
|
||||
fi
|
10
databases/pear-Doctrine12/pkg-descr
Normal file
10
databases/pear-Doctrine12/pkg-descr
Normal file
@ -0,0 +1,10 @@
|
||||
Doctrine is an object relational mapper (ORM) for PHP 5.2.3+ that
|
||||
sits on top of a powerful database abstraction layer (DBAL).
|
||||
|
||||
One of its key features is the option to write database queries in a
|
||||
proprietary object oriented SQL dialect called Doctrine Query
|
||||
Language (DQL), inspired by Hibernate's HQL. This provides developers
|
||||
with a powerful alternative to SQL that maintains flexibility without
|
||||
requiring unnecessary code duplication.
|
||||
|
||||
WWW: http://www.doctrine-project.org/
|
1080
databases/pear-Doctrine2/Makefile
Normal file
1080
databases/pear-Doctrine2/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
3
databases/pear-Doctrine2/distinfo
Normal file
3
databases/pear-Doctrine2/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (PEAR/Doctrine-1.1.4.tgz) = 1832e9e655019689b2caa8296c73e58f
|
||||
SHA256 (PEAR/Doctrine-1.1.4.tgz) = 3e6b286a56ff97775da07741613b66780a2494d4646e0d813ccb0e4c42e34cb3
|
||||
SIZE (PEAR/Doctrine-1.1.4.tgz) = 648767
|
27
databases/pear-Doctrine2/files/pear-deinstall.in
Normal file
27
databases/pear-Doctrine2/files/pear-deinstall.in
Normal file
@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Remove package declaration from PEAR's registry and optionally delete
|
||||
# a non-standard channel.
|
||||
|
||||
if [ x$2 != xDEINSTALL -a x$2 != xPOST-DEINSTALL ]; then
|
||||
exit
|
||||
fi
|
||||
PKG_NAME=${1%%-[0-9._]*}
|
||||
PACKAGE=$(echo $PKG_NAME | sed 's/pear-//')
|
||||
|
||||
PEAR=${PKG_PREFIX}/bin/pear
|
||||
CHANNEL=%%CHANNEL%%
|
||||
|
||||
if [ "$2" = "DEINSTALL" ]; then
|
||||
if [ "x${CHANNEL}" != "x" ]; then
|
||||
${PEAR} uninstall -r -n ${CHANNEL}/${PACKAGE} || true
|
||||
else
|
||||
${PEAR} uninstall -r -n ${PACKAGE} || true
|
||||
fi
|
||||
else
|
||||
if [ "x${CHANNEL}" != "x" ]; then
|
||||
${PEAR} channel-delete ${CHANNEL}
|
||||
fi
|
||||
fi
|
19
databases/pear-Doctrine2/files/pear-install.in
Normal file
19
databases/pear-Doctrine2/files/pear-install.in
Normal file
@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Register the package $1 in the port registry and optionally add a
|
||||
# non-standard channel.
|
||||
|
||||
PREFIX=${PKG_PREFIX:=%%PREFIX%%}
|
||||
PEAR=${PREFIX}/bin/pear
|
||||
PKGREGDIR=${PREFIX}/share/pear/packages/$1
|
||||
CHANNEL=%%CHANNEL%%
|
||||
|
||||
[ "x$1" = "x" ] && exit 1
|
||||
if [ "x$2" = "xPOST-INSTALL" ]; then
|
||||
if [ "x${CHANNEL}" != "x" ]; then
|
||||
${PEAR} channel-add http://${CHANNEL}/channel.xml
|
||||
fi
|
||||
${PEAR} install -r -n -f ${PKGREGDIR}/package.xml
|
||||
fi
|
10
databases/pear-Doctrine2/pkg-descr
Normal file
10
databases/pear-Doctrine2/pkg-descr
Normal file
@ -0,0 +1,10 @@
|
||||
Doctrine is an object relational mapper (ORM) for PHP 5.2.3+ that
|
||||
sits on top of a powerful database abstraction layer (DBAL).
|
||||
|
||||
One of its key features is the option to write database queries in a
|
||||
proprietary object oriented SQL dialect called Doctrine Query
|
||||
Language (DQL), inspired by Hibernate's HQL. This provides developers
|
||||
with a powerful alternative to SQL that maintains flexibility without
|
||||
requiring unnecessary code duplication.
|
||||
|
||||
WWW: http://www.doctrine-project.org/
|
Loading…
Reference in New Issue
Block a user