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:
Greg Larkin 2009-09-28 20:12:44 +00:00
parent 4967055aea
commit d93cab3b17
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=242208
16 changed files with 3418 additions and 0 deletions

View file

@ -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

File diff suppressed because it is too large Load diff

View 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

View 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

View 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

View 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/

File diff suppressed because it is too large Load diff

View 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

View 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

View 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

View 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/

File diff suppressed because it is too large Load diff

View 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

View 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

View 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

View 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/