diff options
author | Jörg Bornkessel <hd_brummy@gentoo.org> | 2011-01-25 19:02:16 +0000 |
---|---|---|
committer | Jörg Bornkessel <hd_brummy@gentoo.org> | 2011-01-25 19:02:16 +0000 |
commit | 9d4d734f8a3c508caa2384fdcd244f68a58f25ac (patch) | |
tree | d4dba3aac38600018fd48bf522a61e713aefcfff /app-misc/graphlcd-base | |
parent | Stable for HPPA (bug #352409). (diff) | |
download | gentoo-2-9d4d734f8a3c508caa2384fdcd244f68a58f25ac.tar.gz gentoo-2-9d4d734f8a3c508caa2384fdcd244f68a58f25ac.tar.bz2 gentoo-2-9d4d734f8a3c508caa2384fdcd244f68a58f25ac.zip |
fixed missing LDFLAGS, #352714, cleanup
(Portage version: 2.1.9.25/cvs/Linux i686)
Diffstat (limited to 'app-misc/graphlcd-base')
-rw-r--r-- | app-misc/graphlcd-base/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/graphlcd-base/graphlcd-base-0.1.5.ebuild | 41 | ||||
-rw-r--r-- | app-misc/graphlcd-base/graphlcd-base-0.1.7.ebuild | 8 |
3 files changed, 11 insertions, 46 deletions
diff --git a/app-misc/graphlcd-base/ChangeLog b/app-misc/graphlcd-base/ChangeLog index 492d8a27954b..57d01b96464c 100644 --- a/app-misc/graphlcd-base/ChangeLog +++ b/app-misc/graphlcd-base/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/graphlcd-base -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/graphlcd-base/ChangeLog,v 1.24 2010/12/03 14:31:31 hd_brummy Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/graphlcd-base/ChangeLog,v 1.25 2011/01/25 19:02:16 hd_brummy Exp $ + + 25 Jan 2011; Joerg Bornkessel <hd_brummy@gentoo.org> + -graphlcd-base-0.1.5.ebuild, graphlcd-base-0.1.7.ebuild: + fixed missing LDFLAGS, #352714, cleanup *graphlcd-base-0.1.7 (03 Dec 2010) diff --git a/app-misc/graphlcd-base/graphlcd-base-0.1.5.ebuild b/app-misc/graphlcd-base/graphlcd-base-0.1.5.ebuild deleted file mode 100644 index 45a6ec86c7af..000000000000 --- a/app-misc/graphlcd-base/graphlcd-base-0.1.5.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/graphlcd-base/graphlcd-base-0.1.5.ebuild,v 1.6 2008/10/14 13:32:11 rbu Exp $ - -inherit eutils flag-o-matic multilib - -DESCRIPTION="Graphical LCD Driver" -HOMEPAGE="http://graphlcd.berlios.de/" -SRC_URI="mirror://berlios/graphlcd/${P}.tgz" - -KEYWORDS="amd64 x86" -SLOT="0" -LICENSE="GPL-2" -IUSE="truetype g15" - -DEPEND="" - -RDEPEND="truetype? ( media-libs/freetype - media-fonts/corefonts ) - g15? ( app-misc/g15daemon )" - -src_unpack() { - - unpack ${A} - cd "${S}" - - sed -i Make.config -e "s:usr\/local:usr:" -e "s:FLAGS *=:FLAGS ?=:" - epatch "${FILESDIR}/${P}-nostrip.patch" - - use !truetype && sed -i "s:HAVE_FREETYPE2:#HAVE_FREETYPE2:" Make.config -} - -src_install() { - - make DESTDIR="${D}"/usr LIBDIR="${D}"/usr/$(get_libdir) install || die "make install failed" - - insinto /etc - doins graphlcd.conf - - dodoc docs/* -} diff --git a/app-misc/graphlcd-base/graphlcd-base-0.1.7.ebuild b/app-misc/graphlcd-base/graphlcd-base-0.1.7.ebuild index aebaa1847f73..f3d7139fee7c 100644 --- a/app-misc/graphlcd-base/graphlcd-base-0.1.7.ebuild +++ b/app-misc/graphlcd-base/graphlcd-base-0.1.7.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: +# $Header: /var/cvsroot/gentoo-x86/app-misc/graphlcd-base/graphlcd-base-0.1.7.ebuild,v 1.2 2011/01/25 19:02:16 hd_brummy Exp $ -EAPI="2" +EAPI="3" inherit eutils flag-o-matic multilib @@ -23,6 +23,8 @@ src_prepare() { sed -i Make.config -e "s:usr\/local:usr:" -e "s:FLAGS *=:FLAGS ?=:" epatch "${FILESDIR}/${PN}-0.1.5-nostrip.patch" + + sed -i glcdskin/Makefile -e "s:-shared:\$(LDFLAGS) -shared:" } src_install() { |