diff options
author | Aron Griffis <agriffis@gentoo.org> | 2003-03-14 19:21:53 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2003-03-14 19:21:53 +0000 |
commit | b58bc31ec7e4359a673c5fc78b0fbf7673586c00 (patch) | |
tree | 07e77bf22448638b9463fee9a49760ac73b32ed2 /x11-libs/ewl | |
parent | Initial version. Closes #17447. (diff) | |
download | gentoo-2-b58bc31ec7e4359a673c5fc78b0fbf7673586c00.tar.gz gentoo-2-b58bc31ec7e4359a673c5fc78b0fbf7673586c00.tar.bz2 gentoo-2-b58bc31ec7e4359a673c5fc78b0fbf7673586c00.zip |
add ~alpha
Diffstat (limited to 'x11-libs/ewl')
-rw-r--r-- | x11-libs/ewl/ChangeLog | 5 | ||||
-rw-r--r-- | x11-libs/ewl/ewl-0.0.2.20030310.ebuild | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/x11-libs/ewl/ChangeLog b/x11-libs/ewl/ChangeLog index 1f6f5d90c2e8..e45f8ce14302 100644 --- a/x11-libs/ewl/ChangeLog +++ b/x11-libs/ewl/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for x11-libs/ewl # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/ewl/ChangeLog,v 1.3 2003/03/10 17:59:06 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/ewl/ChangeLog,v 1.4 2003/03/14 19:21:53 agriffis Exp $ *ewl-0.0.2.20030310 (10 Mar 2003) + 14 Mar 2003; Aron Griffis <agriffis@gentoo.org> ewl-0.0.2.20030310.ebuild: + Add ~alpha to KEYWORDS and use -fPIC on alpha + 10 Mar 2003; Mike Frysinger <vapier@gentoo.org> : More bugfixes/updates from CVS. diff --git a/x11-libs/ewl/ewl-0.0.2.20030310.ebuild b/x11-libs/ewl/ewl-0.0.2.20030310.ebuild index 13a876393a3b..65bf7e503ced 100644 --- a/x11-libs/ewl/ewl-0.0.2.20030310.ebuild +++ b/x11-libs/ewl/ewl-0.0.2.20030310.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/ewl/ewl-0.0.2.20030310.ebuild,v 1.1 2003/03/10 17:59:06 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/ewl/ewl-0.0.2.20030310.ebuild,v 1.2 2003/03/14 19:21:53 agriffis Exp $ + +inherit flag-o-matic DESCRIPTION="simple-to-use general purpose widget library" HOMEPAGE="http://www.enlightenment.org/pages/ewl.html" @@ -9,7 +11,7 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2 LICENSE="as-is" SLOT="0" -KEYWORDS="~x86 ~ppc" +KEYWORDS="~x86 ~ppc ~alpha" IUSE="pic" DEPEND="virtual/glibc @@ -28,6 +30,8 @@ src_compile() { sed -e 's:.*configure.*::' autogen.sh.old > autogen.sh env USER=BLAH WANT_AUTOCONF_2_5=1 ./autogen.sh || die "could not autogen" + use alpha && append-flags -fPIC + econf `use_with pic` --with-gnu-ld || die emake || die } |