diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2010-08-22 11:17:15 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2010-08-22 11:17:15 +0000 |
commit | c1ee9c17f1aea64b972ec7248b3225b1779f319d (patch) | |
tree | 11095ae027131e7326eb2fc0e81c20dd91227ef2 /app-misc/ithought | |
parent | Fix for bug #333869 wrt respecting LDFLAGS (diff) | |
download | gentoo-2-c1ee9c17f1aea64b972ec7248b3225b1779f319d.tar.gz gentoo-2-c1ee9c17f1aea64b972ec7248b3225b1779f319d.tar.bz2 gentoo-2-c1ee9c17f1aea64b972ec7248b3225b1779f319d.zip |
Patch from Dane Smith <smithdanea@gmail.com> to respect LDFLAGS, added QA fixes, switched to EAPI2. Bug #333527
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/ithought')
-rw-r--r-- | app-misc/ithought/ChangeLog | 11 | ||||
-rw-r--r-- | app-misc/ithought/ithought-0.0.5-r2.ebuild | 30 |
2 files changed, 39 insertions, 2 deletions
diff --git a/app-misc/ithought/ChangeLog b/app-misc/ithought/ChangeLog index 4580a86d9a92..2f175de466a4 100644 --- a/app-misc/ithought/ChangeLog +++ b/app-misc/ithought/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-misc/ithought -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/ithought/ChangeLog,v 1.10 2007/05/14 16:47:40 bangert Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/ithought/ChangeLog,v 1.11 2010/08/22 11:17:15 hwoarang Exp $ + +*ithought-0.0.5-r2 (22 Aug 2010) + + 22 Aug 2010; Markos Chandras <hwoarang@gentoo.org> + +ithought-0.0.5-r2.ebuild: + Patch from Dane Smith <smithdanea@gmail.com> to respect LDFLAGS, added QA + fixes, switched to EAPI2. Bug #333527 14 May 2007; Thilo Bangert <bangert@gentoo.org> metadata.xml: add <herd>no-herd</herd> diff --git a/app-misc/ithought/ithought-0.0.5-r2.ebuild b/app-misc/ithought/ithought-0.0.5-r2.ebuild new file mode 100644 index 000000000000..8644b26e0b0f --- /dev/null +++ b/app-misc/ithought/ithought-0.0.5-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/ithought/ithought-0.0.5-r2.ebuild,v 1.1 2010/08/22 11:17:15 hwoarang Exp $ + +EAPI=2 + +MY_P=${P/0.0./a} + +DESCRIPTION="An internet-aware personal thought manager" +HOMEPAGE="http://ithought.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="=x11-libs/gtk+-1.2* + dev-libs/libxml2" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + sed -i "/CC\|LD/{s/-shared/-shared \$LDFLAGS/}" ltconfig || die +} + +src_install() { + make DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README TODO || die +} |