commit:     810e843cd8195281fe783129291d4cc94ed576b2
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 14 19:53:51 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Oct 14 20:00:15 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=810e843c

sci-geosciences/mapserver: Drop 7.0.3

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 sci-geosciences/mapserver/Manifest               |   1 -
 sci-geosciences/mapserver/mapserver-7.0.3.ebuild | 194 -----------------------
 2 files changed, 195 deletions(-)

diff --git a/sci-geosciences/mapserver/Manifest 
b/sci-geosciences/mapserver/Manifest
index 37d855bfdbc..47f5601db65 100644
--- a/sci-geosciences/mapserver/Manifest
+++ b/sci-geosciences/mapserver/Manifest
@@ -1,2 +1 @@
-DIST mapserver-7.0.3.tar.gz 2621285 BLAKE2B 
b2fd9a4050ffee3bf4175971e0588ddc022f473e35c3953a098865898275ae66c2f889aef7df21231a9d9fdbecfda75490c21c67771745f0b6f18dbf11febb8e
 SHA512 
7630461948e7b371c6d4d6d49cc596ad8fc6b076a8bbfdc88358fc076fa0d4ebaaab10663ec9c3c64e246b5735a07cef5cc28eba88b00dd09259048a49d2b81b
 DIST mapserver-7.0.5.tar.gz 2631454 BLAKE2B 
88467d7d8ae90be73d6629619410f114081588d214eea3cd1752f0f97a5d934aa8e39bc2ce6a59ab969a4ac5eb2df15b60bd78f34c18356befb490a211de830f
 SHA512 
18485ace6e3b198e19acc3dda2ba44b136c55c4a783e472cb4c8f7a0615ed676b9bcdcaedc348227a7929d0ccf6199c90aead572bf8243e7902a5a2051a20753

diff --git a/sci-geosciences/mapserver/mapserver-7.0.3.ebuild 
b/sci-geosciences/mapserver/mapserver-7.0.3.ebuild
deleted file mode 100644
index 44a5419ef6a..00000000000
--- a/sci-geosciences/mapserver/mapserver-7.0.3.ebuild
+++ /dev/null
@@ -1,194 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MY_P="${PN}-${PV/_/-}"
-
-PHP_EXT_OPTIONAL_USE="php"
-PHP_EXT_NAME="php_mapscript"
-PHP_EXT_S="${WORKDIR}/${MY_P}/mapscript/php/"
-PHP_EXT_SKIP_PHPIZE="no"
-USE_PHP="php5-6"
-
-PYTHON_COMPAT=( python2_7 )
-
-#USE_RUBY="ruby18 ruby19"
-#RUBY_OPTIONAL="yes"
-
-WEBAPP_MANUAL_SLOT=yes
-
-inherit eutils depend.apache webapp distutils-r1 flag-o-matic perl-module 
php-ext-source-r2 multilib cmake-utils # ruby-ng
-
-DESCRIPTION="Development environment for building spatially enabled webapps"
-HOMEPAGE="http://mapserver.org/";
-SRC_URI="http://download.osgeo.org/mapserver/${MY_P}.tar.gz";
-
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-IUSE="bidi cairo gdal geos mysql opengl perl php postgis proj python threads 
tiff xml xslt" # ruby php tcl
-
-REQUIRED_USE="php? ( php_targets_php5-6 )
-                       xslt? ( xml )"
-
-RDEPEND="
-       dev-libs/expat
-       dev-libs/fcgi
-       >=media-libs/gd-2.0.12[truetype,jpeg,png,zlib]
-       media-libs/giflib
-       net-misc/curl
-       virtual/jpeg:=
-       virtual/libiconv
-       x11-libs/agg
-       bidi? ( dev-libs/fribidi
-                       media-libs/harfbuzz )
-       cairo? ( x11-libs/cairo )
-       gdal? ( >=sci-libs/gdal-1.8.0 )
-       geos? ( sci-libs/geos )
-       mysql? ( virtual/mysql )
-       opengl? (
-               media-libs/ftgl
-               media-libs/mesa
-       )
-       perl? ( dev-lang/perl:= )
-       postgis? ( dev-db/postgis )
-       proj? ( sci-libs/proj net-misc/curl )
-       tiff? (
-               media-libs/tiff:=
-               sci-libs/libgeotiff
-       )
-       xml? ( dev-libs/libxml2:2 )
-       xslt? ( dev-libs/libxslt[crypt] )
-"
-DEPEND="${RDEPEND}
-       perl? ( >=dev-lang/swig-2.0 )
-       python? ( >=dev-lang/swig-2.0 )"
-
-need_apache2
-
-PATCHES=(
-       "${FILESDIR}/${PN}-7.0.0-sec-format.patch"  # see 
https://github.com/mapserver/mapserver/pull/5248
-       "${FILESDIR}/${PN}-7.0.0-no-applicable-code.patch"
-)
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
-       webapp_pkg_setup
-       use perl && perl_set_version
-       #use ruby && ruby-ng_pkg_setup
-}
-
-src_unpack() {
-       # unpack A and then copy the php thingies into workdir/php-slot
-       php-ext-source-r2_src_unpack
-       # HACK: and then remove it and replace by symlink
-       local slot
-       for slot in $(php_get_slots); do
-               rm -rf "${WORKDIR}/${slot}" || die
-               ln -s "${PHP_EXT_S}" "${WORKDIR}/${slot}" || die
-       done
-}
-
-src_prepare() {
-       local glibdir="${EPREFIX}/usr/include/glib-2.0"
-       local usrglibdir="${EPREFIX}/usr/$(get_libdir)/glib-2.0/include"
-
-       sed -e "s:^include_directories(:&${glibdir})\ninclude_directories(:" \
-               -i "${S}/CMakeLists.txt" || die
-       sed -e "s:include_directories(:&${usrglibdir})\ninclude_directories(:" \
-               -i "${S}/CMakeLists.txt" || die
-
-       cmake-utils_src_prepare
-}
-
-src_configure() {
-       local mycmakeargs=(
-               "-DCMAKE_SKIP_RPATH=ON"
-               "-DWITH_ORACLESPATIAL=OFF"
-               "-DWITH_SDE=OFF"
-               "-DWITH_APACHE_MODULE=ON"
-               "-DWITH_ICONV=ON"
-               "-DWITH_GD=ON"
-               "-DWITH_GIF=ON"
-               "-DWITH_CURL=ON"
-               "-DWITH_FCGI=ON"
-               "-DINSTALL_LIB_DIR=${ROOT}usr/$(get_libdir)"
-               "-DWITH_PROJ=$(usex proj ON OFF)"
-               "-DWITH_WMS=$(usex proj ON OFF)"
-               "-DWITH_KML=$(usex xml ON OFF)"
-               "-DWITH_GEOS=$(usex geos ON OFF)"
-               "-DWITH_GDAL=$(usex gdal ON OFF)"
-               "-DWITH_OGR=$(usex gdal ON OFF)"
-               "-DWITH_POSTGIS=$(usex postgis ON OFF)"
-               "-DWITH_MYSQL=$(usex mysql ON OFF)"
-               "-DWITH_LIBXML2=$(usex xml ON OFF)"
-               "-DWITH_XMLMAPFILE=$(usex xslt ON OFF)"
-               "-DWITH_FRIBIDI=$(usex bidi ON OFF)"
-               "-DWITH_HARFBUZZ=$(usex bidi ON OFF)"
-               "-DWITH_CAIRO=$(usex cairo ON OFF)"
-               "-DWITH_PHP=$(usex php ON OFF)"
-               "-DWITH_PYTHON=$(usex python ON OFF)"
-               "-DWITH_PERL=$(usex perl ON OFF)"
-       )
-
-       if use gdal && use proj ; then
-               mycmakeargs+=( "-DWITH_WFS=ON"
-                               "-DWITH_WCS=ON"
-                               "-DWITH_CLIENT_WMS=ON"
-                               "-DWITH_CLIENT_WFS=ON"
-                               "-DWITH_SOS=$(usex xml ON OFF)"
-                       )
-       else
-               mycmakeargs+=( "-DWITH_WFS=OFF"
-                       "-DWITH_WCS=OFF"
-                       "-DWITH_CLIENT_WMS=OFF"
-                       "-DWITH_CLIENT_WFS=OFF"
-                       "-DWITH_SOS=OFF"
-               )
-       fi
-
-       if use php ; then
-               local slot
-               for slot in $(php_get_slots); do
-                       local 
php_config="${EPREFIX}/usr/$(get_libdir)/${slot}/bin/php-config"
-                       [[ -x ${php_config} ]] \
-                               || die "php-config '${php_config}' not valid or 
not executable"
-
-                       local php_include_dir=$(${php_config} --include-dir)
-                       [[ -d ${php_include_dir} ]] || die "PHP Include dir not 
found or not valid"
-
-                       mycmakeargs+=(
-                               -DPHP5_CONFIG_EXECUTABLE="${php_config}"
-                               -DPHP5_INCLUDES="${php_include_dir}"
-                       )
-               done
-       fi
-
-       cmake-utils_src_configure
-}
-
-src_compile() {
-       cmake-utils_src_compile
-}
-
-src_install() {
-       cmake-utils_src_install
-
-       if use php ; then
-               php-ext-source-r2_createinifiles
-       fi
-       webapp_src_preinst
-       exeinto "${MY_CGIBINDIR}"
-       doexe "${S}_build/mapserv"
-       webapp_src_install
-}
-
-pkg_postinst() {
-       webapp_pkg_postinst
-}
-
-pkg_prerm() {
-       webapp_pkg_prerm
-}

Reply via email to