# ChangeLog for dev-python/sip
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.85 2006/12/20 14:28:50 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.86 2006/12/26 19:48:04 dev-zero Exp $
+
+*sip-4.5.2-r1 (23 Dec 2006)
+
+ 23 Dec 2006; Tiziano Müller <dev-zero@gentoo.org> -sip-4.5.2.ebuild,
+ +sip-4.5.2-r1.ebuild:
+ Fixed bug #155754. Corrected dependencies.
*sip-4.5.2 (20 Dec 2006)
--- /dev/null
+MD5 0fdb0cbdcbbe158009196437711eb8bd sip-4.5.2.tar.gz 417298
+RMD160 82efbb024e5a5be222173ca8c0e2629e7b909258 sip-4.5.2.tar.gz 417298
+SHA256 4344f50a3cedb83859c9015e71880ddd58be0c689de895e0e05546531923ee36 sip-4.5.2.tar.gz 417298
--- /dev/null
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.5.2-r1.ebuild,v 1.1 2006/12/26 19:48:04 dev-zero Exp $
+
+NEED_PYTHON=2.3
+
+inherit python toolchain-funcs versionator
+
+MY_P=${P/_}
+
+DESCRIPTION="SIP is a tool for generating bindings for C++ classes so that they can be used by Python."
+HOMEPAGE="http://www.riverbankcomputing.co.uk/sip/"
+SRC_URI="http://www.riverbankcomputing.com/Downloads/sip$(get_major_version)/${MY_P}.tar.gz"
+
+LICENSE="sip"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="debug"
+
+S=${WORKDIR}/${MY_P}
+
+DEPEND=""
+RDEPEND=""
+
+src_compile(){
+ python_version
+
+ local myconf
+ use debug && myconf="${myconf} -u"
+
+ python configure.py \
+ -b "${ROOT}usr/bin" \
+ -d "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages" \
+ -e "${ROOT}usr/include/python${PYVER}" \
+ -v "${ROOT}usr/share/sip" \
+ ${myconf} \
+ CXXFLAGS_RELEASE="" CFLAGS_RELEASE="" \
+ CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
+ CC=$(tc-getCC) CXX=$(tc-getCXX) \
+ LINK=$(tc-getCXX) LINK_SHLIB=$(tc-getCXX) \
+ STRIP="/bin/true" || die "configure failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc ChangeLog NEWS README THANKS TODO doc/sipref.txt
+ dohtml doc/*
+}
+
+pkg_postinst() {
+ python_mod_optimize
+}
+
+pkg_postrm() {
+ python_mod_cleanup
+}