* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: ChangeLog qoauth-1.0-r1.ebuild
@ 2009-11-27 16:38 Dominik Kapusta (ayoy)
0 siblings, 0 replies; 2+ messages in thread
From: Dominik Kapusta (ayoy) @ 2009-11-27 16:38 UTC (permalink / raw
To: gentoo-commits
ayoy 09/11/27 16:38:17
Modified: ChangeLog
Added: qoauth-1.0-r1.ebuild
Log:
Adding static-libs to IUSE
(Portage version: 2.2_rc52/cvs/Linux x86_64)
Revision Changes Path
1.6 dev-libs/qoauth/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qoauth/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qoauth/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qoauth/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 2 Nov 2009 22:11:44 -0000 1.5
+++ ChangeLog 27 Nov 2009 16:38:17 -0000 1.6
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/qoauth
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.5 2009/11/02 22:11:44 ayoy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.6 2009/11/27 16:38:17 ayoy Exp $
+
+*qoauth-1.0-r1 (27 Nov 2009)
+
+ 27 Nov 2009; Dominik Kapusta <ayoy@gentoo.org> +qoauth-1.0-r1.ebuild:
+ Adding static-libs to IUSE
02 Nov 2009; Dominik Kapusta <ayoy@gentoo.org> -qoauth-0.1.0.ebuild:
Removing 0.1.0 ebuild
1.1 dev-libs/qoauth/qoauth-1.0-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qoauth/qoauth-1.0-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qoauth/qoauth-1.0-r1.ebuild?rev=1.1&content-type=text/plain
Index: qoauth-1.0-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0-r1.ebuild,v 1.1 2009/11/27 16:38:17 ayoy Exp $
EAPI="2"
inherit qt4
DESCRIPTION="A Qt-based library for OAuth support"
HOMEPAGE="http://wiki.github.com/ayoy/qoauth"
SRC_URI="http://files.ayoy.net/qoauth/release/${PV}/src/${P}-src.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug doc static-libs test"
COMMON_DEPEND="app-crypt/qca:2[debug?]"
DEPEND="${COMMON_DEPEND}
doc? ( app-doc/doxygen )"
RDEPEND="${COMMON_DEPEND}
app-crypt/qca-ossl:2[debug?]"
src_prepare() {
qt4_src_prepare
sed -i -e '/^ *docs \\$/d' \
-e '/^ *build_all \\$/d' \
-e 's/^\#\(!macx\)/\1/' \
-e "s!\(\$\${INSTALL_PREFIX}\)/lib!\1/$(get_libdir)!" \
src/src.pro || die "sed failed"
# remove _debug suffix - bug 287489
sed -i -e '/build_pass/,$d' src/src.pro || die "sed _debug suffix failed"
sed -i -e "s/\(.*\)lib$/\1$(get_libdir)/" src/pcfile.sh || die "sed failed"
if ! use test; then
sed -i -e 's/^\(SUBDIRS.*\) tests/\1/' ${PN}.pro || die "sed failed"
fi
}
src_configure() {
eqmake4
}
src_compile() {
default
if use static-libs; then
emake -C src static || die "emake failed"
fi
}
src_install() {
emake INSTALL_ROOT="${D}" install || die "emake install failed"
dodoc README CHANGELOG || die "dodoc failed"
if use static-libs; then
dolib.a "${S}/lib/lib${PN}.a" || die "dolib failed"
fi
if use doc; then
doxygen "${S}/Doxyfile" || die "Failed to generate documentation"
dohtml "${S}"/doc/html/* || die "Failed to install documentation"
fi
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: ChangeLog qoauth-1.0-r1.ebuild
@ 2009-12-20 19:34 Dominik Kapusta (ayoy)
0 siblings, 0 replies; 2+ messages in thread
From: Dominik Kapusta (ayoy) @ 2009-12-20 19:34 UTC (permalink / raw
To: gentoo-commits
ayoy 09/12/20 19:34:06
Modified: ChangeLog qoauth-1.0-r1.ebuild
Log:
Porting to qt4-r2.eclass
(Portage version: 2.2_rc60/cvs/Linux x86_64)
Revision Changes Path
1.7 dev-libs/qoauth/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qoauth/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qoauth/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qoauth/ChangeLog?r1=1.6&r2=1.7
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog 27 Nov 2009 16:38:17 -0000 1.6
+++ ChangeLog 20 Dec 2009 19:34:06 -0000 1.7
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/qoauth
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.6 2009/11/27 16:38:17 ayoy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.7 2009/12/20 19:34:06 ayoy Exp $
+
+ 20 Dec 2009; Dominik Kapusta <ayoy@gentoo.org> qoauth-1.0-r1.ebuild:
+ Porting to qt4-r2.eclass
*qoauth-1.0-r1 (27 Nov 2009)
1.2 dev-libs/qoauth/qoauth-1.0-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qoauth/qoauth-1.0-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qoauth/qoauth-1.0-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qoauth/qoauth-1.0-r1.ebuild?r1=1.1&r2=1.2
Index: qoauth-1.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qoauth-1.0-r1.ebuild 27 Nov 2009 16:38:17 -0000 1.1
+++ qoauth-1.0-r1.ebuild 20 Dec 2009 19:34:06 -0000 1.2
@@ -1,10 +1,10 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0-r1.ebuild,v 1.1 2009/11/27 16:38:17 ayoy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0-r1.ebuild,v 1.2 2009/12/20 19:34:06 ayoy Exp $
EAPI="2"
-inherit qt4
+inherit qt4-r2
DESCRIPTION="A Qt-based library for OAuth support"
HOMEPAGE="http://wiki.github.com/ayoy/qoauth"
@@ -22,7 +22,6 @@
app-crypt/qca-ossl:2[debug?]"
src_prepare() {
- qt4_src_prepare
sed -i -e '/^ *docs \\$/d' \
-e '/^ *build_all \\$/d' \
-e 's/^\#\(!macx\)/\1/' \
@@ -39,10 +38,6 @@
fi
}
-src_configure() {
- eqmake4
-}
-
src_compile() {
default
if use static-libs; then
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-12-20 19:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-27 16:38 [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: ChangeLog qoauth-1.0-r1.ebuild Dominik Kapusta (ayoy)
-- strict thread matches above, loose matches on Subject: below --
2009-12-20 19:34 Dominik Kapusta (ayoy)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox