diff options
author | Davide Pesavento <pesa@gentoo.org> | 2011-11-26 20:04:50 +0000 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2011-11-26 20:04:50 +0000 |
commit | f45d0f3d6a78ca2f4faa491fd70a42f62e1f07cc (patch) | |
tree | 56c942e105d81e208eeb9e79237643a624cd9520 /x11-libs | |
parent | Bug 385719: upstream altered qt-everywhere-opensource-src-4.7.4.tar.gz, mass ... (diff) | |
download | gentoo-2-f45d0f3d6a78ca2f4faa491fd70a42f62e1f07cc.tar.gz gentoo-2-f45d0f3d6a78ca2f4faa491fd70a42f62e1f07cc.tar.bz2 gentoo-2-f45d0f3d6a78ca2f4faa491fd70a42f62e1f07cc.zip |
Version bump, remove old.
(Portage version: 2.2.0_alpha78/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/libqxt/ChangeLog | 8 | ||||
-rw-r--r-- | x11-libs/libqxt/libqxt-0.6.2.ebuild (renamed from x11-libs/libqxt/libqxt-0.6.1.ebuild) | 36 |
2 files changed, 25 insertions, 19 deletions
diff --git a/x11-libs/libqxt/ChangeLog b/x11-libs/libqxt/ChangeLog index 5d11bc943a0d..4401a704e2ba 100644 --- a/x11-libs/libqxt/ChangeLog +++ b/x11-libs/libqxt/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-libs/libqxt # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/ChangeLog,v 1.18 2011/11/12 16:22:31 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/ChangeLog,v 1.19 2011/11/26 20:04:50 pesa Exp $ + +*libqxt-0.6.2 (26 Nov 2011) + + 26 Nov 2011; Davide Pesavento <pesa@gentoo.org> -libqxt-0.6.1.ebuild, + +libqxt-0.6.2.ebuild: + Version bump, remove old. *libqxt-0.6.1 (12 Nov 2011) diff --git a/x11-libs/libqxt/libqxt-0.6.1.ebuild b/x11-libs/libqxt/libqxt-0.6.2.ebuild index 61c044d02d48..2f9553ea1b69 100644 --- a/x11-libs/libqxt/libqxt-0.6.1.ebuild +++ b/x11-libs/libqxt/libqxt-0.6.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/libqxt-0.6.1.ebuild,v 1.1 2011/11/12 16:22:31 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/libqxt-0.6.2.ebuild,v 1.1 2011/11/26 20:04:50 pesa Exp $ EAPI=4 @@ -25,7 +25,6 @@ COMMON_DEPEND=" >=dev-libs/openssl-0.9.8 x11-libs/qt-core:4[ssl] ) - web? ( >=dev-libs/fcgi-2.4 ) zeroconf? ( net-dns/avahi[mdnsresponder-compat] ) " DEPEND="${COMMON_DEPEND} @@ -46,26 +45,27 @@ src_prepare() { qt4-r2_src_prepare # remove insecure runpath - sed -i -e '/-Wl,-rpath/d' src/qxtlibs.pri || die + sed -i -e '/^QMAKE_RPATHDIR /d' src/qxtlibs.pri || die } src_configure() { # custom configure script - local myconf="./configure - -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 ssl || echo -no-openssl) - $(use web || echo -nomake web) - $(use zeroconf || echo -no-zeroconf -nomake zeroconf) - -verbose" - echo ${myconf} - eval ${myconf} || die "./configure failed" + 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 ssl || echo -no-openssl) + $(use web || echo -nomake web) + $(use zeroconf || echo -no-zeroconf -nomake zeroconf) + ) + echo "${myconf[@]}" + "${myconf[@]}" || die "./configure failed" eqmake4 -recursive } |