diff options
-rw-r--r-- | dev-db/postgresql-fdw-mysql/Manifest | 2 | ||||
-rw-r--r-- | dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.1.2.ebuild | 31 | ||||
-rw-r--r-- | dev-db/postgresql-fdw-tds/Manifest | 2 | ||||
-rw-r--r-- | dev-db/postgresql-fdw-tds/postgresql-fdw-tds-1.0.7.ebuild | 31 |
4 files changed, 66 insertions, 0 deletions
diff --git a/dev-db/postgresql-fdw-mysql/Manifest b/dev-db/postgresql-fdw-mysql/Manifest new file mode 100644 index 0000000..bdae315 --- /dev/null +++ b/dev-db/postgresql-fdw-mysql/Manifest @@ -0,0 +1,2 @@ +DIST REL-2_1_2.tar.gz 38656 SHA256 5a9cd36d29d54d1325e26ca2c9a4cfb1265e4638ec8bb81aaaf1feba8d271186 SHA512 c22500f81b9ff19679bfd5b6dedb1deef263107c472101ef5eccc405b0a6244ca266974ce13fd4296733453a42a7c5800f22ab8202f3c93fb6a731b52c2ff76c WHIRLPOOL ff770dd826525b5d254692dba41f6d41c6c54dea02e8db1eebda1fd667438a6e93eee123acfccd3d002310b2890d16d85d41bb85dcb737316c3f78dd862a31a8 +EBUILD postgresql-fdw-mysql-2.1.2.ebuild 586 SHA256 6d523c2d523d0055b1bd4d623732fa0fe445bac59412ba65ade896e1c32753f8 SHA512 f054585e951ab5162f22b1725084f77dcdba6f5f77e30edf2684c59ad7eac260d0a4c23f232baf3ccd4380a8f01735879c9b2b85b85533da0f5e6f033e219eab WHIRLPOOL 1ed0802053faf5cb8f35833b7ab6182b159784637df699c151e8af161f52e143adbd24b57335c6239c74bba942bb3efa57e034dbe816b7550f83eb1f932b8d06 diff --git a/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.1.2.ebuild b/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.1.2.ebuild new file mode 100644 index 0000000..7f90e14 --- /dev/null +++ b/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.1.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="PostgreSQL foreign data wrapper for MySQL" +HOMEPAGE="https://github.com/EnterpriseDB/mysql_fdw" +SRC_URI="https://github.com/EnterpriseDB/mysql_fdw/archive/REL-${PV//./_}.tar.gz" + +LICENSE="mysql_fdw" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +S="${WORKDIR}/mysql_fdw-REL-${PV//./_}" + +DEPEND=" + >=virtual/mysql-5.2 + >=dev-db/postgresql-9.4 + " +RDEPEND="${DEPEND}" + +src_compile() { + make USE_PGXS=1 +} + +src_install() { + make USE_PGXS=1 install DESTDIR="${D}" +} + diff --git a/dev-db/postgresql-fdw-tds/Manifest b/dev-db/postgresql-fdw-tds/Manifest new file mode 100644 index 0000000..541002f --- /dev/null +++ b/dev-db/postgresql-fdw-tds/Manifest @@ -0,0 +1,2 @@ +DIST v1.0.7.tar.gz 22290 SHA256 952e7a32e79ba41772fe6ec4e82d95af0dd7317a7a558caf598d8dcd26031174 SHA512 55ec6cb5028055851170e9409b268ae2b23bddd38d0e4227b034b086384bfc4621f88219c6f9482203785600993bcfb4b132e1e3dca1e6a2222cb79ed65da4be WHIRLPOOL 8e6bd3ad244bee70ef476c70c76cafb20a538315582bee85d5c982ac6f1036edb87a4795c6f55aaf31d3502bff2d830da253aac0bfb13abb168654cb186cf000 +EBUILD postgresql-fdw-tds-1.0.7.ebuild 554 SHA256 c86a23150656b9fc8a4860f755846fab13f155e583d3e46b829f4a03efb79267 SHA512 5f30554dece3f6cc1d2ce3af685e515530cbbdd732a7d27469b9f024283c3bbb5eda965bffc505a0585c5aaa6a71a1c838f76ed9d755ea17c55564ba8a9955d8 WHIRLPOOL 72e5b191ad108e8535c28279165418b42fff53160701f15383ce278d88c115708ba630c2cf5507721926a1b3afbc93487ecdb20ef035054415c563657bf914d8 diff --git a/dev-db/postgresql-fdw-tds/postgresql-fdw-tds-1.0.7.ebuild b/dev-db/postgresql-fdw-tds/postgresql-fdw-tds-1.0.7.ebuild new file mode 100644 index 0000000..435d032 --- /dev/null +++ b/dev-db/postgresql-fdw-tds/postgresql-fdw-tds-1.0.7.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="PostgreSQL foreign data wrapper for TDS" +HOMEPAGE="https://github.com/GeoffMontee/tds_fdw" +SRC_URI="https://github.com/GeoffMontee/tds_fdw/archive/v${PV}.tar.gz" + +LICENSE="mysql_fdw" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +S="${WORKDIR}/tds_fdw-${PV}" + +DEPEND=" + dev-db/freetds + >=dev-db/postgresql-9.1 + " +RDEPEND="${DEPEND}" + +src_compile() { + make USE_PGXS=1 +} + +src_install() { + make USE_PGXS=1 install DESTDIR="${D}" +} + |