diff options
-rw-r--r-- | dev-db/postgresql-fdw-mysql/Manifest | 2 | ||||
-rw-r--r-- | dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.6.0.ebuild | 31 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-db/postgresql-fdw-mysql/Manifest b/dev-db/postgresql-fdw-mysql/Manifest index c206fee..1e6145b 100644 --- a/dev-db/postgresql-fdw-mysql/Manifest +++ b/dev-db/postgresql-fdw-mysql/Manifest @@ -1,4 +1,6 @@ DIST REL-2_5_1.tar.gz 42615 BLAKE2B 54e7162a2740ee15bf060e443317d23954b9ed7809c782dc8953982fcbad815aa08876340e4c5085cbecab551116bd297b2894575f6d81633f1cae60b5d26d0d SHA512 a3b10f165b15ca4bfdefabb4f4d173b7fc94012278fb718737e18d6d7a5bcc1be6fb9e0f97626e0ab444e33f3b2426b35f7b9986c625c09977535d8e5fcb6951 DIST REL-2_5_3.tar.gz 42804 BLAKE2B abefcaf890453ec842e80ace850b0faaf1468bda3717c50a4ef6e39324bc9c1a4a6997a6f057a33bfe4db313b84011ebc8a9e7b581678128676b57c6991ae58a SHA512 d9e74ac98003215d8a2e27e955c2d82faca6d1bf22884c9b3ed998fe88513d4a9003a8fe6e2eafb9d6df4e99a5a92db9612426afae27f1692d8807d478cfc912 +DIST REL-2_6_0.tar.gz 112248 BLAKE2B 1cc10cf2f8774036115d00687f423bcfd1f5228ba20ddd8dd91b6fc97b96f17f2bbccd9fb2dd4a4e24554eb6454e53665f028ec6e1c19133d26153045b985222 SHA512 97ce86970d3f131bc7fff1cd8ac0dbad625cbdc7a0c7cd2627683b6eb4df789764a5305f1a66bc7cfb9f3be052dd7d14c1091659fc62c97119e11f7b495c2f6d EBUILD postgresql-fdw-mysql-2.5.1-r1.ebuild 592 BLAKE2B d6b33c57d39450b3b45a9c77f893863cda6f9443649ce3690aef1bbac97ab0013867a13fb5a31738efc96f3788071c098de56fbc01440e808b846cc3a5958927 SHA512 1c65d9ef97f3642e42ac05f2152661b68321de395a946c93b23c1950b078a0e6d8b6105ba6725ecac3d01c6a07edcf5d317f0ccaa0e2497ef1916209d4a8c3a2 EBUILD postgresql-fdw-mysql-2.5.3-r1.ebuild 594 BLAKE2B bfe9eeef574e3aa9f469fb22dd5fcdf65c85529bbab5dda008840c1d3e48a97fc6c9e1cfd24c54437eb5fdf60cad607c6013e1dc53b92e920fcc80e083619f54 SHA512 4cd380d2c08694157447f0861da6e9402ac513a7c19ebcc7242429568be436da79ee471d2eac0fed256f39b92512031c90a3f9046c2d0249c3734bd11688b6ce +EBUILD postgresql-fdw-mysql-2.6.0.ebuild 594 BLAKE2B bfe9eeef574e3aa9f469fb22dd5fcdf65c85529bbab5dda008840c1d3e48a97fc6c9e1cfd24c54437eb5fdf60cad607c6013e1dc53b92e920fcc80e083619f54 SHA512 4cd380d2c08694157447f0861da6e9402ac513a7c19ebcc7242429568be436da79ee471d2eac0fed256f39b92512031c90a3f9046c2d0249c3734bd11688b6ce diff --git a/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.6.0.ebuild b/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.6.0.ebuild new file mode 100644 index 0000000..197e5ce --- /dev/null +++ b/dev-db/postgresql-fdw-mysql/postgresql-fdw-mysql-2.6.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="7" + +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=" + dev-db/mysql-connector-c + >=dev-db/postgresql-9.4 + " +RDEPEND="${DEPEND}" + +src_compile() { + emake USE_PGXS=1 +} + +src_install() { + emake USE_PGXS=1 install DESTDIR="${D}" +} + |