diff options
author | Sven Wegener <swegener@gentoo.org> | 2006-10-27 22:25:19 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2006-10-27 22:25:19 +0000 |
commit | 43e79d1e46c9d556a1de46d1274f1437a7cd164a (patch) | |
tree | 1c48830206e96331a46d049a330fe33d81044809 /x11-misc/xsel/xsel-0.9.6.ebuild | |
parent | vimspell dictionaries also work on PowerPC. Added ~pcc. (diff) | |
download | gentoo-2-43e79d1e46c9d556a1de46d1274f1437a7cd164a.tar.gz gentoo-2-43e79d1e46c9d556a1de46d1274f1437a7cd164a.tar.bz2 gentoo-2-43e79d1e46c9d556a1de46d1274f1437a7cd164a.zip |
Pass CFLAGS to emake.
(Portage version: 2.1.2_pre3-r9)
Diffstat (limited to 'x11-misc/xsel/xsel-0.9.6.ebuild')
-rw-r--r-- | x11-misc/xsel/xsel-0.9.6.ebuild | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/x11-misc/xsel/xsel-0.9.6.ebuild b/x11-misc/xsel/xsel-0.9.6.ebuild index 0a1192356780..b7305e753fed 100644 --- a/x11-misc/xsel/xsel-0.9.6.ebuild +++ b/x11-misc/xsel/xsel-0.9.6.ebuild @@ -1,8 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsel/xsel-0.9.6.ebuild,v 1.6 2006/10/21 22:29:19 omp Exp $ - -inherit autotools +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsel/xsel-0.9.6.ebuild,v 1.7 2006/10/27 22:25:19 swegener Exp $ DESCRIPTION="XSel is a command-line program for getting and setting the contents of the X selection." HOMEPAGE="http://www.vergenet.net/~conrad/software/xsel" @@ -18,10 +16,9 @@ RDEPEND="x11-libs/libX11 DEPEND="${RDEPEND} x11-proto/xproto" -src_unpack() { - unpack ${A} - cd "${S}" - eautoconf +src_compile() { + econf || die "econf failed" + emake CFLAGS="${CFLAGS}" || die "emake failed" } src_install() { |