app-editors/bluefish: Drop old
authorPacho Ramos <pacho@gentoo.org>
Sun, 27 Jan 2019 09:27:42 +0000 (10:27 +0100)
committerPacho Ramos <pacho@gentoo.org>
Sun, 27 Jan 2019 10:15:12 +0000 (11:15 +0100)
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
app-editors/bluefish/Manifest
app-editors/bluefish/bluefish-2.2.6.ebuild [deleted file]
app-editors/bluefish/bluefish-2.2.8.ebuild [deleted file]
app-editors/bluefish/bluefish-2.2.9.ebuild [deleted file]
app-editors/bluefish/metadata.xml

index c0fbb171c8fe78674929c35e41c09a748777df7e..d87d4ad06be9f6a1bdd79012de52290a5e154f0d 100644 (file)
@@ -1,4 +1 @@
 DIST bluefish-2.2.10.tar.bz2 4159964 BLAKE2B 94210df4f9cf0abb46fa26612e1b64550f5970c72584b683779f5bcaf921a8925c6275c647125f73990e99a0175e3c92c0cc286590fbd08e938c6fd1d8c32cef SHA512 ddfad4c595d371dfd7ca5551c1771c2d82dbffcc90acda31bbd2a048730e24e2d1e37fbe847e5005d96acefdf5f38cb93785d23817e59624ecd7ea10bfbc3aeb
-DIST bluefish-2.2.6.tar.bz2 3793018 BLAKE2B f77b5e21a3289ebd2c9e3986476dca30e42ff489240adccba91a5aaa4a2e35282fb2b0a38137d249747e0496f410cd51159cdd7dc4e3b46a6affcb68d9b58099 SHA512 39dee296ec6bbe1a946f9fb1c54e7143363da4bb6ce52aee14c9bef906d2eb82e5e58f78680810357c0bfcb11c21f982756a9199fec2f454c2816005a4d9d83e
-DIST bluefish-2.2.8.tar.bz2 4097769 BLAKE2B f0e38841dde2e620fa2ea7390891f2c09f349d9861aeeef9b919dbdc67d7be15dd28852736590e99f0cd167feee3089df929e261e8a244f1301e130a3bad451b SHA512 0450909feb2370c1c84a214744f103bfe891086ba5f3ccc85060b4e134ee2161c3fde641720a3544a4d71c25f120a35925517cee4ffce6e2f07c778baa2cc5c1
-DIST bluefish-2.2.9.tar.bz2 4082978 BLAKE2B a99db5acc2bce79aefccdf676a9ce965f682e99531790f20d6c67ad7f43c566009793efc4f3369aa425fc764dcf05f2a83b0260bf6531845cac2c707009c7967 SHA512 ef644b37907d308b908d508ad00069e48343cd240ca7703a20b4498eda73be1a97a6c07598f6e51d4fb1c0f2a380c86a274ccbbe046da01db6c4641e41e268ae
diff --git a/app-editors/bluefish/bluefish-2.2.6.ebuild b/app-editors/bluefish/bluefish-2.2.6.ebuild
deleted file mode 100644 (file)
index 2e47961..0000000
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit gnome2-utils python-single-r1 xdg-utils
-
-MY_P=${P/_/-}
-
-DESCRIPTION="A GTK HTML editor for the experienced web designer or programmer"
-SRC_URI="http://www.bennewitz.com/bluefish/stable/source/${MY_P}.tar.bz2"
-HOMEPAGE="http://bluefish.openoffice.nl/"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86"
-SLOT="0"
-IUSE="nls python spell"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-       x11-libs/gtk+:3
-       gnome-extra/gucharmap:2.90
-       sys-libs/zlib
-       python? ( ${PYTHON_DEPS} )
-       spell? ( app-text/enchant )"
-DEPEND="${RDEPEND}
-       >=dev-libs/glib-2.16:2
-       dev-libs/libxml2:2
-       virtual/pkgconfig
-       x11-libs/pango
-       nls? (
-               sys-devel/gettext
-               dev-util/intltool
-       )"
-
-S="${WORKDIR}/${MY_P}"
-
-# there actually is just some broken manpage checkup -> not bother
-RESTRICT="test"
-
-pkg_setup() {
-       use python && python-single-r1_pkg_setup
-}
-
-# Never eautoreconf this package as gettext breaks completely (no translations
-# even if it compiles afterwards)!
-
-src_configure() {
-       econf \
-               --docdir="${EPREFIX}/usr/share/doc/${PF}" \
-               --disable-dependency-tracking \
-               --disable-update-databases \
-               --disable-xml-catalog-update \
-               $(use_enable nls) \
-               $(use_enable spell spell-check) \
-               $(use_enable python)
-}
-
-src_install() {
-       default
-       find "${ED}" -name '*.la' -delete || die
-}
-
-pkg_preinst() {
-       gnome2_icon_savelist
-}
-
-pkg_postinst() {
-       gnome2_icon_cache_update
-       xdg_desktop_database_update
-       xdg_mimeinfo_database_update
-
-       einfo "Adding XML catalog entries..."
-       /usr/bin/xmlcatalog  --noout \
-               --add 'public' 'Bluefish/DTD/Bflang' 'bflang.dtd' \
-               --add 'system' 'http://bluefish.openoffice.nl/DTD/bflang.dtd' 'bflang.dtd' \
-               --add 'rewriteURI' 'http://bluefish.openoffice.nl/DTD' '/usr/share/xml/bluefish-unstable' \
-               /etc/xml/catalog \
-               || ewarn "Failed to add XML catalog entries."
-}
-
-pkg_postrm() {
-       gnome2_icon_cache_update
-       xdg_desktop_database_update
-       xdg_mimeinfo_database_update
-       einfo "Removing XML catalog entries..."
-       /usr/bin/xmlcatalog  --noout \
-               --del 'Bluefish/DTD/Bflang' \
-               --del 'http://bluefish.openoffice.nl/DTD/bflang.dtd' \
-               --del 'http://bluefish.openoffice.nl/DTD' \
-               /etc/xml/catalog \
-               || ewarn "Failed to remove XML catalog entries."
-}
diff --git a/app-editors/bluefish/bluefish-2.2.8.ebuild b/app-editors/bluefish/bluefish-2.2.8.ebuild
deleted file mode 100644 (file)
index 2ffd0fb..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit gnome2-utils python-single-r1 xdg-utils
-
-MY_P=${P/_/-}
-
-DESCRIPTION="A GTK HTML editor for the experienced web designer or programmer"
-SRC_URI="http://www.bennewitz.com/bluefish/stable/source/${MY_P}.tar.bz2"
-HOMEPAGE="http://bluefish.openoffice.nl/"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-SLOT="0"
-IUSE="gtk2 +gtk3 gucharmap nls python spell"
-
-RDEPEND="
-       sys-libs/zlib
-       gtk2? ( x11-libs/gtk+:2 )
-       gtk3? ( x11-libs/gtk+:3 )
-       gucharmap? ( gnome-extra/gucharmap:2.90 )
-       python? ( ${PYTHON_DEPS} )
-       spell? ( app-text/enchant )"
-DEPEND="${RDEPEND}
-       dev-libs/libxml2:2
-       >=dev-libs/glib-2.24:2
-       virtual/pkgconfig
-       x11-libs/pango
-       nls? (
-               sys-devel/gettext
-               dev-util/intltool
-       )"
-
-REQUIRED_USE="
-       gtk2? ( !gtk3 !gucharmap )
-       gtk3? ( !gtk2 )
-       python? ( ${PYTHON_REQUIRED_USE} )"
-
-S="${WORKDIR}/${MY_P}"
-
-# there actually is just some broken manpage checkup -> not bother
-RESTRICT="test"
-
-pkg_setup() {
-       use python && python-single-r1_pkg_setup
-}
-
-# Never eautoreconf this package as gettext breaks completely (no translations
-# even if it compiles afterwards)!
-
-src_prepare() {
-       default
-       sed -i 's:gzip -n $< -c:gzip -n -c $<:' data/bflib/Makefile.* || die "Cannot fix makefile"
-}
-
-src_configure() {
-       econf \
-               --docdir="${EPREFIX}/usr/share/doc/${PF}" \
-               --disable-dependency-tracking \
-               --disable-update-databases \
-               --disable-xml-catalog-update \
-               $(use_with gtk2 ) \
-               $(use_enable nls) \
-               $(use_enable spell spell-check) \
-               $(use_enable python)
-}
-
-src_install() {
-       default
-       find "${ED}" -name '*.la' -delete || die
-}
-
-pkg_preinst() {
-       gnome2_icon_savelist
-}
-
-pkg_postinst() {
-       gnome2_icon_cache_update
-       xdg_desktop_database_update
-       xdg_mimeinfo_database_update
-
-       einfo "Adding XML catalog entries..."
-       /usr/bin/xmlcatalog  --noout \
-               --add 'public' 'Bluefish/DTD/Bflang' 'bflang.dtd' \
-               --add 'system' 'http://bluefish.openoffice.nl/DTD/bflang.dtd' 'bflang.dtd' \
-               --add 'rewriteURI' 'http://bluefish.openoffice.nl/DTD' '/usr/share/xml/bluefish-unstable' \
-               /etc/xml/catalog \
-               || ewarn "Failed to add XML catalog entries."
-}
-
-pkg_postrm() {
-       gnome2_icon_cache_update
-       xdg_desktop_database_update
-       xdg_mimeinfo_database_update
-       einfo "Removing XML catalog entries..."
-       /usr/bin/xmlcatalog  --noout \
-               --del 'Bluefish/DTD/Bflang' \
-               --del 'http://bluefish.openoffice.nl/DTD/bflang.dtd' \
-               --del 'http://bluefish.openoffice.nl/DTD' \
-               /etc/xml/catalog \
-               || ewarn "Failed to remove XML catalog entries."
-}
diff --git a/app-editors/bluefish/bluefish-2.2.9.ebuild b/app-editors/bluefish/bluefish-2.2.9.ebuild
deleted file mode 100644 (file)
index 2e9a485..0000000
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit autotools gnome2-utils python-single-r1 xdg-utils
-
-MY_P=${P/_/-}
-
-DESCRIPTION="A GTK HTML editor for the experienced web designer or programmer"
-SRC_URI="http://www.bennewitz.com/bluefish/stable/source/${MY_P}.tar.bz2"
-HOMEPAGE="http://bluefish.openoffice.nl/"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-SLOT="0"
-IUSE="+gtk3 gucharmap nls python spell"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-       sys-libs/zlib
-       !gtk3? ( x11-libs/gtk+:2 )
-       gtk3? (
-               x11-libs/gtk+:3
-               gucharmap? ( gnome-extra/gucharmap:2.90 )
-       )
-       python? ( ${PYTHON_DEPS} )
-       spell? ( app-text/enchant )"
-DEPEND="${RDEPEND}
-       dev-libs/libxml2:2
-       >=dev-libs/glib-2.24:2
-       virtual/pkgconfig
-       x11-libs/pango
-       nls? (
-               sys-devel/gettext
-               dev-util/intltool
-       )"
-
-S="${WORKDIR}/${MY_P}"
-
-# there actually is just some broken manpage checkup -> not bother
-RESTRICT="test"
-
-pkg_setup() {
-       if ! use gtk3 && use gucharmap ; then
-               ewarn "gucharmap USE flag requires the gtk3 USE flag being enabled."
-               ewarn "Disabling charmap plugin."
-       fi
-
-       use python && python-single-r1_pkg_setup
-}
-
-PATCHES=(
-       "${FILESDIR}/${PN}-2.2.9-charmap_configure.patch"
-)
-
-# eautoreconf seems to no longer kill translation files.
-src_prepare() {
-       default
-       eautoreconf
-       sed -i 's:gzip -n $< -c:gzip -n -c $<:' data/bflib/Makefile.* || die "Cannot fix makefile"
-}
-
-src_configure() {
-       econf \
-               --disable-dependency-tracking \
-               --disable-update-databases \
-               --disable-xml-catalog-update \
-               $(use_with !gtk3 gtk2) \
-               $(usex gtk3 "$(use_with gucharmap charmap)" '--without-charmap') \
-               $(use_enable nls) \
-               $(use_enable spell spell-check) \
-               $(use_enable python)
-}
-
-src_install() {
-       default
-       find "${ED}" -name '*.la' -delete || die
-}
-
-pkg_preinst() {
-       gnome2_icon_savelist
-}
-
-pkg_postinst() {
-       gnome2_icon_cache_update
-       xdg_desktop_database_update
-       xdg_mimeinfo_database_update
-
-       einfo "Adding XML catalog entries..."
-       /usr/bin/xmlcatalog  --noout \
-               --add 'public' 'Bluefish/DTD/Bflang' 'bflang.dtd' \
-               --add 'system' 'http://bluefish.openoffice.nl/DTD/bflang.dtd' 'bflang.dtd' \
-               --add 'rewriteURI' 'http://bluefish.openoffice.nl/DTD' '/usr/share/xml/bluefish-unstable' \
-               /etc/xml/catalog \
-               || ewarn "Failed to add XML catalog entries."
-}
-
-pkg_postrm() {
-       gnome2_icon_cache_update
-       xdg_desktop_database_update
-       xdg_mimeinfo_database_update
-       einfo "Removing XML catalog entries..."
-       /usr/bin/xmlcatalog  --noout \
-               --del 'Bluefish/DTD/Bflang' \
-               --del 'http://bluefish.openoffice.nl/DTD/bflang.dtd' \
-               --del 'http://bluefish.openoffice.nl/DTD' \
-               /etc/xml/catalog \
-               || ewarn "Failed to remove XML catalog entries."
-}
index 7e95699afd85f69d3ee888fe62594c888295f0c4..98078743b336d981aeb67ae61ad5a25e4d01e7f4 100644 (file)
@@ -3,7 +3,6 @@
 <pkgmetadata>
 <!-- maintainer-needed -->
        <use>
-       <flag name="gtk2">Enable GTK2 instead of GTK3 even if GTK3 is available</flag>
        <flag name="gtk3">Enable GTK3 interface (default)</flag>
        <flag name="gucharmap">Enable gucharmap dictionary plugin</flag>
        <flag name="python">Enable Python integration for zen-coding plugin</flag>