diff options
| author | Pacho Ramos <pacho@gentoo.org> | 2018-03-11 12:02:45 +0100 |
|---|---|---|
| committer | Pacho Ramos <pacho@gentoo.org> | 2018-03-11 12:05:10 +0100 |
| commit | b522124233e90a84963ca9512f1bb5166983a6ab (patch) | |
| tree | 0e1ce170481b3a4600b3e3b5bca31303d3e1202d /dev-db/lib_mysqludf_fPROJ4 | |
| parent | dc2f111e903eeed34cada7c7074a8ccaab3d8042 (diff) | |
| download | gentoo-b522124233e90a84963ca9512f1bb5166983a6ab.tar.gz gentoo-b522124233e90a84963ca9512f1bb5166983a6ab.tar.bz2 gentoo-b522124233e90a84963ca9512f1bb5166983a6ab.zip | |
Remove masked for removal packages
Diffstat (limited to 'dev-db/lib_mysqludf_fPROJ4')
4 files changed, 0 insertions, 104 deletions
diff --git a/dev-db/lib_mysqludf_fPROJ4/Manifest b/dev-db/lib_mysqludf_fPROJ4/Manifest deleted file mode 100644 index d82a77b9f652..000000000000 --- a/dev-db/lib_mysqludf_fPROJ4/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST lib_mysqludf_fPROJ4-0.1.0.tar.gz 2573 BLAKE2B 4b6863b2b643464b5f7229e5a74c5f220894916b496eed077efe8a58df43f61fe25c252db09dc41c7e2705692e3f3915883e1096b9826f11431c1fec59c467e6 SHA512 cc0307bcbdf15a37f77fced46b262783327fbd1e9883bd2d3f55c005bc5948ea7d2b7afa98a75390045636abbb04bb22aeaafdbe670e5642710a6a4a785fd3b3 diff --git a/dev-db/lib_mysqludf_fPROJ4/files/lib_mysqludf_fPROJ4-warnings.patch b/dev-db/lib_mysqludf_fPROJ4/files/lib_mysqludf_fPROJ4-warnings.patch deleted file mode 100644 index 0b9669991cb3..000000000000 --- a/dev-db/lib_mysqludf_fPROJ4/files/lib_mysqludf_fPROJ4-warnings.patch +++ /dev/null @@ -1,35 +0,0 @@ ---- lib_mysqludf_fPROJ4.c.orig 2010-05-09 13:46:12.000000000 +0200 -+++ lib_mysqludf_fPROJ4.c 2011-10-19 02:32:48.000000000 +0200 -@@ -1,5 +1,3 @@ --/*
--
- /*
- lib_mysqludf_fPROJ4 - An extended set of scientific functions which
- converts geographic longitude and latitude coordinates into cartesian
-@@ -178,7 +176,7 @@ - }
- double fPROJ4_transform(UDF_INIT *initid, UDF_ARGS *args, char *is_null, char *error)
- {
-- projPJ pj_in, pj_out;
-+ projPJ pj_in=NULL, pj_out=NULL;
- double x, y,z;
- int p,t;
-
-@@ -248,7 +246,7 @@ - }
- double fPROJ4_Geo2UTM(UDF_INIT *initid, UDF_ARGS *args, char *is_null, char *error)
- {
-- projPJ pj_in, pj_out;
-+ projPJ pj_in=NULL, pj_out=NULL;
- double x, y;
- int p,t,zone;
- char *tmp;
-@@ -323,7 +321,7 @@ - }
- double fPROJ4_UTM2Geo(UDF_INIT *initid, UDF_ARGS *args, char *is_null, char *error)
- {
-- projPJ pj_in, pj_out;
-+ projPJ pj_in=NULL, pj_out=NULL;
- double x, y;
- int p,t,zone;
- char *tmp;
diff --git a/dev-db/lib_mysqludf_fPROJ4/lib_mysqludf_fPROJ4-0.1.0.ebuild b/dev-db/lib_mysqludf_fPROJ4/lib_mysqludf_fPROJ4-0.1.0.ebuild deleted file mode 100644 index 2dc76b444b43..000000000000 --- a/dev-db/lib_mysqludf_fPROJ4/lib_mysqludf_fPROJ4-0.1.0.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils toolchain-funcs - -DESCRIPTION="MySQL UDFs which converts geographic/cartesian coordinates" -HOMEPAGE="http://www.mysqludf.org/lib_mysqludf_fPROJ4/" -SRC_URI="http://www.mysqludf.org/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND=">=virtual/mysql-5.1 - sci-libs/proj" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${P}-src" - -# compile helper -_compile() { - local CC="$(tc-getCC)" - echo "${CC} ${@}" && "${CC}" "${@}" -} - -pkg_setup() { - MYSQL_PLUGINDIR="$(mysql_config --plugindir)" - MYSQL_INCLUDE="$(mysql_config --include)" -} - -src_prepare() { - epatch "${FILESDIR}/${PN}-warnings.patch" - - # fix doc (BOM, CR/LF, soname) - sed -i -e '1 s|^\xEF\xBB\xBF||' \ - -e "s|'\(${PN}\).*'|'\1.so'|g" ${PN}.sql - echo >> ${PN}.sql # add LF - edos2unix ${PN}.sql -} - -src_compile() { - _compile ${CFLAGS} -Wall -fPIC ${MYSQL_INCLUDE} -lproj \ - -shared ${LDFLAGS} -o ${PN}.so ${PN}.c -} - -src_install() { - exeinto "${MYSQL_PLUGINDIR}" - doexe ${PN}.so - dodoc ${PN}.sql -} - -pkg_postinst() { - elog - elog "Please have a look at the documentation, how to" - elog "enable/disable the UDF functions of ${PN}." - elog - elog "The documentation is located here:" - elog "/usr/share/doc/${PF}" - elog -} diff --git a/dev-db/lib_mysqludf_fPROJ4/metadata.xml b/dev-db/lib_mysqludf_fPROJ4/metadata.xml deleted file mode 100644 index 6f49eba8f496..000000000000 --- a/dev-db/lib_mysqludf_fPROJ4/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<!-- maintainer-needed --> -</pkgmetadata> |
