diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2010-01-06 01:21:00 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2010-01-06 01:21:00 +0000 |
commit | bac2fa062f8347011a0c136234fec266a9a56c62 (patch) | |
tree | feb96362c1d344dc75e25e53a86145b2bf8f5019 /sci-visualization | |
parent | Initial commit. (diff) | |
download | gentoo-2-bac2fa062f8347011a0c136234fec266a9a56c62.tar.gz gentoo-2-bac2fa062f8347011a0c136234fec266a9a56c62.tar.bz2 gentoo-2-bac2fa062f8347011a0c136234fec266a9a56c62.zip |
Removed old, respect user's CFLAGS
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/xgraph/ChangeLog | 8 | ||||
-rw-r--r-- | sci-visualization/xgraph/xgraph-12.1-r1.ebuild | 36 | ||||
-rw-r--r-- | sci-visualization/xgraph/xgraph-12.1-r2.ebuild | 6 |
3 files changed, 10 insertions, 40 deletions
diff --git a/sci-visualization/xgraph/ChangeLog b/sci-visualization/xgraph/ChangeLog index a5b25b36d039..81f239cf34db 100644 --- a/sci-visualization/xgraph/ChangeLog +++ b/sci-visualization/xgraph/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-visualization/xgraph -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/xgraph/ChangeLog,v 1.13 2009/12/26 16:19:05 armin76 Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/xgraph/ChangeLog,v 1.14 2010/01/06 01:21:00 bicatali Exp $ + + 06 Jan 2010; Sébastien Fabbro <bicatali@gentoo.org> + -xgraph-12.1-r1.ebuild, xgraph-12.1-r2.ebuild: + Removed old, respect user's CFLAGS 26 Dec 2009; Raúl Porcel <armin76@gentoo.org> xgraph-12.1-r2.ebuild: sparc stable wrt #289447 diff --git a/sci-visualization/xgraph/xgraph-12.1-r1.ebuild b/sci-visualization/xgraph/xgraph-12.1-r1.ebuild deleted file mode 100644 index 088de255be85..000000000000 --- a/sci-visualization/xgraph/xgraph-12.1-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/xgraph/xgraph-12.1-r1.ebuild,v 1.5 2008/02/06 21:43:31 grobian Exp $ - -inherit eutils - -DESCRIPTION="X11 Plotting Utility" -HOMEPAGE="http://www.isi.edu/nsnam/xgraph/" -SRC_URI="http://www.isi.edu/nsnam/dist/${P}.tar.gz" -LICENSE="as-is" -SLOT="0" -KEYWORDS="~amd64 ~ppc sparc ~x86" -IUSE="" -DEPEND="x11-libs/libSM - x11-libs/libX11" - -src_unpack() { - unpack ${A} - epatch "${FILESDIR}"/${PN}-makefile-gentoo.patch -} - -src_install() { - make DESTDIR="${D}" install || die "Compilation failed." - - dodoc README* INSTALL || die "Installing documentation failed." - - insinto /usr/share/${PN}/examples - doins examples/* || die "Failed to install example files." - - dodir /usr/share/man/man1 - mv "${D}"/usr/share/man/manm/xgraph.man \ - "${D}"/usr/share/man/man1/xgraph.1 || \ - die "Failed to correct man page location." - rm -Rf "${D}"/usr/share/man/manm/ || \ - die "Failed to remove bogus manm directory." -} diff --git a/sci-visualization/xgraph/xgraph-12.1-r2.ebuild b/sci-visualization/xgraph/xgraph-12.1-r2.ebuild index cdb1f45af6c3..e4e0db22233f 100644 --- a/sci-visualization/xgraph/xgraph-12.1-r2.ebuild +++ b/sci-visualization/xgraph/xgraph-12.1-r2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/xgraph/xgraph-12.1-r2.ebuild,v 1.5 2009/12/26 16:19:05 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/xgraph/xgraph-12.1-r2.ebuild,v 1.6 2010/01/06 01:21:00 bicatali Exp $ EAPI=2 inherit eutils autotools @@ -22,6 +22,8 @@ RDEPEND="${DEPEND}" src_prepare() { epatch "${WORKDIR}"/${PN}_${PV}-${DEB_PR}.diff epatch "${FILESDIR}"/${P}-glibc-2.10.patch + # respect user flags + sed -i -e "s/-g/${CFLAGS}/" Makefile.am eautoreconf } |