summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Popov <pinkbyte@gentoo.org>2014-02-24 12:13:49 +0000
committerSergey Popov <pinkbyte@gentoo.org>2014-02-24 12:13:49 +0000
commit285cc5b8b79125463de6cb172a9f63705bf75813 (patch)
tree37d905750f670ce136715533a20e86676949ce9e /x11-libs/libqxt
parentStable on amd64 and x86, wrt bug #499094 (diff)
downloadgentoo-2-285cc5b8b79125463de6cb172a9f63705bf75813.tar.gz
gentoo-2-285cc5b8b79125463de6cb172a9f63705bf75813.tar.bz2
gentoo-2-285cc5b8b79125463de6cb172a9f63705bf75813.zip
Drop old
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'x11-libs/libqxt')
-rw-r--r--x11-libs/libqxt/ChangeLog5
-rw-r--r--x11-libs/libqxt/libqxt-0.6.2.ebuild87
2 files changed, 4 insertions, 88 deletions
diff --git a/x11-libs/libqxt/ChangeLog b/x11-libs/libqxt/ChangeLog
index add3dfe235b8..39b145cbb723 100644
--- a/x11-libs/libqxt/ChangeLog
+++ b/x11-libs/libqxt/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/libqxt
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/ChangeLog,v 1.28 2014/02/24 12:13:04 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/ChangeLog,v 1.29 2014/02/24 12:13:49 pinkbyte Exp $
+
+ 24 Feb 2014; Sergey Popov <pinkbyte@gentoo.org> -libqxt-0.6.2.ebuild:
+ Drop old
24 Feb 2014; Sergey Popov <pinkbyte@gentoo.org> libqxt-0.6.2-r2.ebuild:
Stable on amd64 and x86, wrt bug #499094
diff --git a/x11-libs/libqxt/libqxt-0.6.2.ebuild b/x11-libs/libqxt/libqxt-0.6.2.ebuild
deleted file mode 100644
index cc09ae48f087..000000000000
--- a/x11-libs/libqxt/libqxt-0.6.2.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/libqxt-0.6.2.ebuild,v 1.7 2013/07/23 14:21:02 kensington Exp $
-
-EAPI=4
-
-inherit multilib qt4-r2
-
-DESCRIPTION="The Qt eXTension library provides cross-platform utility classes for the Qt toolkit"
-HOMEPAGE="http://libqxt.org/"
-SRC_URI="http://dev.libqxt.org/libqxt/get/v${PV}.tar.bz2 -> ${P}.tar.bz2"
-
-LICENSE="|| ( CPL-1.0 LGPL-2.1 )"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="berkdb debug doc sql web xscreensaver zeroconf"
-
-COMMON_DEPEND="
- x11-libs/libXrandr
- dev-qt/qtcore:4[ssl]
- || ( ( >=dev-qt/qtgui-4.8.5:4 dev-qt/designer:4 ) <dev-qt/qtgui-4.8.5:4 )
- berkdb? ( >=sys-libs/db-4.6 )
- sql? ( dev-qt/qtsql:4 )
- zeroconf? ( net-dns/avahi[mdnsresponder-compat] )
-"
-DEPEND="${COMMON_DEPEND}
- doc? ( dev-qt/qthelp:4 )
-"
-RDEPEND="${COMMON_DEPEND}
- xscreensaver? ( x11-libs/libXScrnSaver )
-"
-
-S="${WORKDIR}/${PN}-${PN}-v${PV}"
-
-DOCS="AUTHORS CHANGES README"
-PATCHES=(
- "${FILESDIR}/${PN}-use-system-qdoc3.patch"
-)
-
-src_prepare() {
- qt4-r2_src_prepare
-
- # remove insecure runpath
- sed -i -e '/^QMAKE_RPATHDIR /d' src/qxtlibs.pri || die
-}
-
-src_configure() {
- # custom configure script
- local myconf=(
- ./configure -verbose
- -prefix "${EPREFIX}/usr"
- -libdir "${EPREFIX}/usr/$(get_libdir)"
- -docdir "${EPREFIX}/usr/share/doc/${PF}"
- -qmake-bin "${EPREFIX}/usr/bin/qmake"
- $(use debug && echo -debug || echo -release)
- $(use berkdb || echo -no-db -nomake berkeley)
- $(use doc || echo -nomake docs)
- $(use sql || echo -nomake sql)
- $(use web || echo -nomake web)
- $(use zeroconf || echo -no-zeroconf -nomake zeroconf)
- )
- echo "${myconf[@]}"
- "${myconf[@]}" || die "./configure failed"
-
- eqmake4 -recursive
-}
-
-src_compile() {
- qt4-r2_src_compile
-
- if use doc; then
- einfo "Building documentation"
- emake docs
- fi
-}
-
-pkg_postinst() {
- if use doc; then
- einfo
- einfo "In case you want to browse ${PN} documentation using"
- einfo "Qt Assistant, perform the following steps:"
- einfo " 1. Open the Assistant"
- einfo " 2. Edit -> Preferences -> Documentation -> Add"
- einfo " 3. Add this path: ${EPREFIX}/usr/share/doc/${PF}/qxt.qch"
- einfo
- fi
-}