Portage is a package management system used by Gentoo Linux
# ChangeLog for app-crypt/qca-logger
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca-logger/ChangeLog,v 1.4 2008/03/26 18:30:36 armin76 Exp $
26 Mar 2008; Raúl Porcel
qca-logger-2.0.0_beta2.ebuild:
Add ~alpha/~ia64/~sparc wrt #213868
15 Mar 2008; Markus Rothe
qca-logger-2.0.0_beta2.ebuild:
Added ~ppc64
14 Jan 2008; Wulf C. Krueger
qca-logger-2.0.0_beta2.ebuild:
Removed accidental RESTRICT=mirror.
13 Jan 2008; Wulf C. Krueger
+qca-logger-2.0.0_beta2.ebuild:
Initial import to the tree as per bug 129536.
*qca-logger-2.0.0_beta2 (15 Dec 2007)
15 Dec 2007; Ingmar Vanhassel
-qca-logger-2.0.0_beta1.ebuild, +qca-logger-2.0.0_beta2.ebuild:
Added qca-logger-2.0.0_beta2.ebuild.
06 Nov 2007; Ingmar Vanhassel
-qca-logger-0.1_p20070829-r1.ebuild, +qca-logger-2.0.0_beta1.ebuild:
Added qca-logger-2.0.0_beta1.ebuild, thanks to Davide Pesavento in Bug 129536.
04 Oct 2007; Emanuele A. Bagnaschi
-qca-logger-0.1_p20070829.ebuild, qca-logger-0.1_p20070829-r1.ebuild:
Minor changes to the ebuild, thanks to Davide Pesavento. See bug #129536.
Removed old '-r0' ebuild.
10 Sep 2007; Emanuele A. Bagnaschi
+qca-logger-0.1_p20070829-r1.ebuild:
Updated to reflect change about the behaviour of debug builds.
Thanks to Davide Pesavento.
07 Sep 2007; Emanuele A. Bagnaschi
+qca-logger-0.1_p20070829.ebuild:
Added qca-logger-0.1_p20070829. Moving to a more sane qca2 framework. Many
thanks to Davide Pesavento and Alon Bar-Lev, see bug #129536.
DIST qca-logger-2.0.0-beta2.tar.bz2 20484 RMD160 81deead7335ee6de92891c63cbb9b9ca0f8aa52e SHA1 e2531db1c8781f3fff76da1a70734198ce4a66a5 SHA256 da5931d55778719cd19bd7e327655dc7e96fd9b772347abb6a65df5f3019e88a
EBUILD qca-logger-2.0.0_beta2.ebuild 1433 RMD160 91504f0fec5ff45f6023820dbcddcce9c7c40984 SHA1 6d7167857e5697132583fc34377dd6be161d4060 SHA256 c12f9d636abecf487e08c390d6c6f348522d7462abcd30e339de53ee0dd8bc22
MISC ChangeLog 1797 RMD160 c169950f3ea36b29979276aca792ad63557d288d SHA1 c1faed092b934a68a2c5ec432cbb651eecd2b418 SHA256 d50773dd4470c8293b520e3fa46bf9ff49a319f5cf2da57870ecb04e1bc9e0dc
MISC metadata.xml 192 RMD160 745ecce4d913885d0c5794b96fafd63a29a6e19e SHA1 fe4c3a2accae45b2ade98c5b45a3bd4533aac681 SHA256 2f70cf009da734f5a0166d90a267b186b6a4148cec4778a7f27ca8ef38709096
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca-logger/qca-logger-2.0.0_beta2.ebuild,v 1.4 2008/03/26 18:30:36 armin76 Exp $
inherit eutils qt4
MY_P="${P/_/-}"
QCA_VER="${PV%.*}"
DESCRIPTION="Logger plugin for QCA"
HOMEPAGE="http://delta.affinix.com/qca/"
SRC_URI="http://delta.affinix.com/download/qca/${QCA_VER}/plugins/${MY_P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc64 ~sparc ~x86"
IUSE="debug"
DEPEND=">=app-crypt/qca-${QCA_VER}"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
pkg_setup() {
if use debug && ! built_with_use ">=app-crypt/qca-${QCA_VER}" debug; then
echo
eerror "You are trying to compile ${PN} with USE=\"debug\""
eerror "while qca is built without this flag. It will not work."
echo
eerror "Possible solutions to this problem are:"
eerror "a) install ${PN} without debug USE flag"
eerror "b) re-emerge qca with debug USE flag"
echo
die "can't emerge ${PN} with debug USE flag"
fi
}
src_compile() {
# cannot use econf because of non-standard configure script
./configure \
--qtdir=/usr \
$(use debug && echo "--debug" || echo "--release") \
--no-separate-debug-info \
|| die "configure failed"
eqmake4 ${PN}.pro
emake || die "make failed"
}
src_install() {
emake INSTALL_ROOT="${D}" install || die "make install failed"
dodoc README
}