summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2015-11-05 20:59:46 +0100
committerPacho Ramos <pacho@gentoo.org>2015-11-05 21:00:39 +0100
commit02276cbb920a4a58bf94ddb46575cb2a334c3c39 (patch)
treefe6142a65dd2fe10091c43fdd2a7b356c5fa8ecf /dev-ada
parentdev-lang/php: don't depend on versions of sys-libs/db that won't be detected. (diff)
downloadgentoo-02276cbb920a4a58bf94ddb46575cb2a334c3c39.tar.gz
gentoo-02276cbb920a4a58bf94ddb46575cb2a334c3c39.tar.bz2
gentoo-02276cbb920a4a58bf94ddb46575cb2a334c3c39.zip
Remove hard masked package
Diffstat (limited to 'dev-ada')
-rw-r--r--dev-ada/polyorb/Manifest1
-rw-r--r--dev-ada/polyorb/metadata.xml13
-rw-r--r--dev-ada/polyorb/polyorb-2.1.0.ebuild78
3 files changed, 0 insertions, 92 deletions
diff --git a/dev-ada/polyorb/Manifest b/dev-ada/polyorb/Manifest
deleted file mode 100644
index 32d40f5be1f4..000000000000
--- a/dev-ada/polyorb/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST polyorb-2.1.0.tar.bz2 1852658 SHA256 66c5e33894f96ec1f02da4e43f5805655143c3d51e4d8eedbfa5a903aac40b25 SHA512 8d430ed9ae8dd30a91b120f44b67838cecc06dc585e277be38f76c52838786807098f07f094146f19c4fd6ac669460ef2e17bf55db7482e728331db3ef900821 WHIRLPOOL f8523ba52fd9b3342409e4ddfc4765f6dcb6b8598592ce8ff444eb0080a301bb3e30879635670942290c614bf7668b8dbf5549a2e54417208cba40c629508851
diff --git a/dev-ada/polyorb/metadata.xml b/dev-ada/polyorb/metadata.xml
deleted file mode 100644
index dc6776b0c9a8..000000000000
--- a/dev-ada/polyorb/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>ada</herd>
-
-<longdescription>
-PolyORB aims at providing a uniform solution to build distributed applications;
-relying either on industrial-strength middleware standards such as CORBA,
-the Distributed System Annex of Ada 95, distribution programming paradigms such as
-Web Services, Message Oriented Middleware (MOM), or to implement application-specific
-middleware.
-</longdescription>
-</pkgmetadata>
diff --git a/dev-ada/polyorb/polyorb-2.1.0.ebuild b/dev-ada/polyorb/polyorb-2.1.0.ebuild
deleted file mode 100644
index 6516d10088d4..000000000000
--- a/dev-ada/polyorb/polyorb-2.1.0.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit gnat
-
-IUSE="doc ssl"
-
-DESCRIPTION="A CORBA implementation for Ada"
-HOMEPAGE="http://libre.adacore.com/polyorb/"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-
-RDEPEND="ssl? ( dev-libs/openssl )"
-DEPEND="${RDEPEND}
- virtual/ada"
-
-#lib_compile()
-lib_compile()
-{
- econf --libdir=/usr/lib \
- $(use_with ssl openssl) || die "econf failed"
- #--enable-shared \
- # NOTE: --libdir is passed here to simplify logic - all the proper files
- # are anyway moved to the final destination by the eclass
- emake || die "make failed"
-}
-
-# NOTE: we are using $1 - the passed gnat profile name
-#lib_install() {
-lib_install()
-{
- make DESTDIR=${DL} install || die "install failed"
-
- # move installed files to appropriate locations
- mv ${DL}/usr/* ${DL}
- find ${DL} -name "*.ali" -exec mv {} ${DL}/lib \;
- chmod 0444 ${DL}/lib/*.ali
-
- # remove sources and other common stuff
- rm -rf "${DL}"/{include,usr}
- # fix paths in polyorb-config
- sed -i -e "s:includedir=\"\${prefix}/include\":includedir=/usr/include/ada:" \
- -e "s:libdir=\"/usr/lib\":libdir=${AdalibLibTop}/$1/${PN}/lib:" \
- ${DL}/bin/${PN}-config
-}
-
-src_install ()
-{
- cd "${S}"
- # install sources
- dodir ${AdalibSpecsDir}/${PN}
- insinto ${AdalibSpecsDir}/${PN}
- doins -r src/*
-
- #set up environment
- echo "PATH=%DL%/bin" > ${LibEnv}
- echo "LDPATH=%DL%/lib" >> ${LibEnv}
- echo "ADA_OBJECTS_PATH=%DL%/lib" >> ${LibEnv}
- echo "ADA_INCLUDE_PATH=/usr/include/ada/${PN}" >> ${LibEnv}
-
- gnat_src_install
-
- dodoc CHANGE_10049 FEATURES MANIFEST NEWS README
- doinfo docs/*.info
- if use doc; then
- dohtml docs/polyorb_ug.html/*.html
- insinto /usr/share/doc/${PF}
- doins docs/*.pdf
-
- dodir /usr/share/doc/${PF}/examples
- insinto /usr/share/doc/${PF}/examples
- doins -r examples/*
- fi
-}