diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-05-13 03:34:27 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-05-13 03:34:27 +0000 |
commit | 359a8b4d9898abb446ba8e28cd3228ce09c8c0c9 (patch) | |
tree | 86864e19556bbf6f966ce8b6f6808bec4f640020 /dev-libs/newt | |
parent | bug #48975, openldap now works fine (diff) | |
download | gentoo-2-359a8b4d9898abb446ba8e28cd3228ce09c8c0c9.tar.gz gentoo-2-359a8b4d9898abb446ba8e28cd3228ce09c8c0c9.tar.bz2 gentoo-2-359a8b4d9898abb446ba8e28cd3228ce09c8c0c9.zip |
make newt use CFLAGS.
Diffstat (limited to 'dev-libs/newt')
-rw-r--r-- | dev-libs/newt/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/newt/Manifest | 6 | ||||
-rw-r--r-- | dev-libs/newt/files/digest-newt-0.50.35-r3 | 1 | ||||
-rw-r--r-- | dev-libs/newt/newt-0.50.35-r3.ebuild | 33 |
4 files changed, 44 insertions, 3 deletions
diff --git a/dev-libs/newt/ChangeLog b/dev-libs/newt/ChangeLog index c44c2cc18da9..7a3b0553fe41 100644 --- a/dev-libs/newt/ChangeLog +++ b/dev-libs/newt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/newt # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/newt/ChangeLog,v 1.11 2004/01/27 21:25:58 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/newt/ChangeLog,v 1.12 2004/05/13 03:34:27 robbat2 Exp $ + +*newt-0.50.35-r3 (12 May 2004) + + 12 May 2004; Robin H. Johnson <robbat2@gentoo.org> +newt-0.50.35-r3.ebuild: + make newt use CFLAGS. 27 Jan 2004; Alastair Tse <liquidx@gentoo.org> newt-0.50.35-r1.ebuild, newt-0.50.35-r2.ebuild: diff --git a/dev-libs/newt/Manifest b/dev-libs/newt/Manifest index c0058be67807..e7003fa67d72 100644 --- a/dev-libs/newt/Manifest +++ b/dev-libs/newt/Manifest @@ -1,3 +1,5 @@ -MD5 4aa289427847257ec957b7458fd1bfe4 ChangeLog 1483 -MD5 0b18341d06b90f2e4ac91caa089efec0 newt-0.50.35-r2.ebuild 879 +MD5 1f47582a55cde8930f0f98015f178836 newt-0.50.35-r3.ebuild 878 +MD5 1f47582a55cde8930f0f98015f178836 newt-0.50.35-r2.ebuild 878 +MD5 d0e21c30cf4f8271a00fd57f5cbfba64 ChangeLog 1482 MD5 6d5a67f6fae3839c22aa176ffbd96790 files/digest-newt-0.50.35-r2 64 +MD5 6d5a67f6fae3839c22aa176ffbd96790 files/digest-newt-0.50.35-r3 64 diff --git a/dev-libs/newt/files/digest-newt-0.50.35-r3 b/dev-libs/newt/files/digest-newt-0.50.35-r3 new file mode 100644 index 000000000000..ac9ded732f82 --- /dev/null +++ b/dev-libs/newt/files/digest-newt-0.50.35-r3 @@ -0,0 +1 @@ +MD5 87a0555f83473a67a848a11c99dd7755 newt-0.50.35.tar.gz 106345 diff --git a/dev-libs/newt/newt-0.50.35-r3.ebuild b/dev-libs/newt/newt-0.50.35-r3.ebuild new file mode 100644 index 000000000000..10a900c2e578 --- /dev/null +++ b/dev-libs/newt/newt-0.50.35-r3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/newt/newt-0.50.35-r3.ebuild,v 1.1 2004/05/13 03:34:27 robbat2 Exp $ + +inherit python + +S=${WORKDIR}/${P} +DESCRIPTION="redhat's newt windowing toolkit development files" +SRC_URI="http://koto.mynetix.de/gentoo/${P}.tar.gz" +HOMEPAGE="http://www.redhat.com" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~hppa ~amd64 ~alpha" + +DEPEND=">=sys-libs/slang-1.4 + >=dev-libs/popt-1.6 + dev-lang/python" + +RDEPEND="" + +src_compile() { + python_version + export RPM_OPT_FLAGS="${CFLAGS}" + econf || die + make PYTHONVERS=python${PYVER} || die "make failure" +} + +src_install () { + make prefix=${D}/usr PYTHONVERS=python${PYVER} install || die "make install failed" + dodoc CHANGES COPYING peanuts.py popcorn.py tutorial.sgml + dosym libnewt.so.${PV} /usr/lib/libnewt.so.0.50 +} |