diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-07-21 10:08:02 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-07-21 10:08:02 +0000 |
commit | dfffa86f291f31e0bb6d9a407cb01923583b9e6c (patch) | |
tree | b08ad657fb8b0649a4e5cfacb3149da5ad9d3786 /app-text | |
parent | Cleanup due http://gentoo.2317880.n4.nabble.com/sgml-herd-has-no-maintainers-... (diff) | |
download | gentoo-2-dfffa86f291f31e0bb6d9a407cb01923583b9e6c.tar.gz gentoo-2-dfffa86f291f31e0bb6d9a407cb01923583b9e6c.tar.bz2 gentoo-2-dfffa86f291f31e0bb6d9a407cb01923583b9e6c.zip |
Cleanup due http://gentoo.2317880.n4.nabble.com/sgml-herd-has-no-maintainers-again-td259655.html
(Portage version: 2.1.12.13/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/opensp/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/opensp/metadata.xml | 2 | ||||
-rw-r--r-- | app-text/opensp/opensp-1.5.2-r2.ebuild | 78 |
3 files changed, 7 insertions, 80 deletions
diff --git a/app-text/opensp/ChangeLog b/app-text/opensp/ChangeLog index 9135aeec58be..03d3f7b2cebc 100644 --- a/app-text/opensp/ChangeLog +++ b/app-text/opensp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/opensp # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/opensp/ChangeLog,v 1.68 2013/03/21 04:19:52 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/opensp/ChangeLog,v 1.69 2013/07/21 10:08:02 pacho Exp $ + + 21 Jul 2013; Pacho Ramos <pacho@gentoo.org> -opensp-1.5.2-r2.ebuild, + metadata.xml: + Cleanup due http://gentoo.2317880.n4.nabble.com/sgml-herd-has-no-maintainers- + again-td259655.html 21 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> opensp-1.5.2-r3.ebuild: Use prune_libtool_files to remove unnecessary libtool archive (.la) of diff --git a/app-text/opensp/metadata.xml b/app-text/opensp/metadata.xml index e96086477315..4538a68724a6 100644 --- a/app-text/opensp/metadata.xml +++ b/app-text/opensp/metadata.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <herd>sgml</herd> +<maintainer><email>maintainer-needed@gentoo.org</email></maintainer> </pkgmetadata> diff --git a/app-text/opensp/opensp-1.5.2-r2.ebuild b/app-text/opensp/opensp-1.5.2-r2.ebuild deleted file mode 100644 index 48c3ae328165..000000000000 --- a/app-text/opensp/opensp-1.5.2-r2.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/opensp/opensp-1.5.2-r2.ebuild,v 1.10 2012/11/16 09:34:52 ulm Exp $ - -EAPI=2 -inherit eutils flag-o-matic - -MY_P=${P/opensp/OpenSP} -DESCRIPTION="A free, object-oriented toolkit for SGML parsing and entity management" -HOMEPAGE="http://openjade.sourceforge.net/" -SRC_URI="mirror://sourceforge/openjade/${MY_P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd" -IUSE="doc nls static-libs test" - -DEPEND="nls? ( >=sys-devel/gettext-0.14.5 ) - doc? ( - app-text/xmlto - ~app-text/docbook-xml-dtd-4.1.2 - ) - test? ( app-text/sgml-common )" -RDEPEND="" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - epatch "${FILESDIR}"/${PN}-1.5-gcc34.patch -} - -src_configure() { - # - # The following filters are taken from openjade's ebuild. See bug #100828. - # - - # Please note! Opts are disabled. If you know what you're doing - # feel free to remove this line. It may cause problems with - # docbook-sgml-utils among other things. - ALLOWED_FLAGS="-O -O1 -O2 -pipe -g -march" - strip-flags - - econf \ - --disable-dependency-tracking \ - --enable-http \ - --enable-default-catalog=/etc/sgml/catalog \ - --enable-default-search-path=/usr/share/sgml \ - --datadir=/usr/share/sgml/${P} \ - $(use_enable nls) \ - $(use_enable doc doc-build) \ - $(use_enable static-libs static) -} - -src_compile() { - emake pkgdocdir=/usr/share/doc/${PF} || die "Compilation failed" -} - -src_test() { - echo ">>> Test phase [check]: ${CATEGORY}/${PF}" - einfo "Skipping tests known not to work" - make SHOWSTOPPERS= check || die "Make test failed" - SANDBOX_PREDICT="${SANDBOX_PREDICT%:/}" -} - -src_install() { - emake DESTDIR="${D}" \ - pkgdocdir=/usr/share/doc/${PF} install || die "Installation failed" - - dodoc AUTHORS BUGS ChangeLog NEWS README -} - -pkg_postinst() { - ewarn "Please note that the soname of the library changed." - ewarn "If you are upgrading from a previous version you need" - ewarn "to fix dynamic linking inconsistencies by executing:" - ewarn - ewarn " revdep-rebuild --library='libosp.so.*'" -} |