]> Pileus Git - ~andy/sunrise/commitdiff
dev-cpp/libcutl: Bump to libcutl-1.4.1 which uses autotools now instead of the scary...
authorNathan Phillip Brink (binki) <ohnobinki@ohnopublishing.net>
Mon, 27 Jun 2011 03:51:14 +0000 (03:51 +0000)
committerNathan Phillip Brink (binki) <ohnobinki@ohnopublishing.net>
Mon, 27 Jun 2011 03:51:14 +0000 (03:51 +0000)
(Portage version: 2.2.0_alpha37-r1/svn/Linux x86_64)

svn path=/sunrise/; revision=12161

dev-cpp/libcutl/ChangeLog
dev-cpp/libcutl/libcutl-1.1.1.ebuild [deleted file]
dev-cpp/libcutl/libcutl-1.4.1.ebuild [new file with mode: 0644]

index f55aedd741bfd6895180123e844754bc1e906c15..3fd405976e35cc60114d792e523722ff6bb4682e 100644 (file)
@@ -1,7 +1,14 @@
 # ChangeLog for dev-cpp/libcutl
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*libcutl-1.4.1 (27 Jun 2011)
+
+  27 Jun 2011; Nathan Phillip Brink <binki@gentoo.org>
+  -libcutl-1.1.1.ebuild, +libcutl-1.4.1.ebuild:
+  Bump to libcutl-1.4.1 which uses autotools now instead of the scary
+  dev-util/build. May or may not fix compilation with gcc-4.6.
+
   19 Jan 2010; Nathan Phillip Brink (ohnobinki)
   <ohnobinki@ohnopublishing.net> +libcutl-1.1.1.ebuild, +metadata.xml:
   New ebuild for bug 301249 thanks to few, chiiph, tommy, and Boris Kolpackov
diff --git a/dev-cpp/libcutl/libcutl-1.1.1.ebuild b/dev-cpp/libcutl/libcutl-1.1.1.ebuild
deleted file mode 100644 (file)
index 38e8bb8..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=2
-
-inherit multilib toolchain-funcs versionator
-
-MY_PV="$(get_version_component_range 1-2)"
-DESCRIPTION="Library of C++ utilities with evil buildsystem"
-HOMEPAGE="http://codesynthesis.com/projects/libcutl/"
-SRC_URI="http://codesynthesis.com/download/${PN}/${MY_PV}/${P}.tar.bz2"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-# dev-zero's overlay has an old, incompatible version of build-0.3.3
-DEPEND=">=dev-util/build-0.3.5:0.3"
-RDEPEND=""
-
-src_prepare() {
-       mkdir -p build/cxx/gnu || die
-       echo "cxx_id := gnu" >> build/cxx/configuration-dynamic.make || die
-
-       echo "cxx_gnu := $(tc-getCXX)" >> build/cxx/gnu/configuration-dynamic.make || die
-       echo "cxx_gnu_optimization_options := ${CXXFLAGS}" >> build/cxx/gnu/configuration-dynamic.make || die
-
-       mkdir -p build/ld || die
-       echo "ld_lib_type := shared" >> build/ld/configuration-lib-dynamic.make || die
-
-       # remove documentation installation target because it's just dirty
-       sed -i -e '/LICENSE)$/,/README)$/d' makefile || die "failed to fix bad documentation installation target"
-}
-
-src_install() {
-       # install_lib_dir requires a terminating slash because of a bug in libcutl's makefiles
-       emake verbose=1 install_prefix="${D}/usr" install_lib_dir="${D}/usr/$(get_libdir)/" \
-               install || die
-
-       dodoc README NEWS TODO || die
-}
-
-src_test() {
-       # dev-util/build doesn't use libtool, so we have to specify the -rpath
-       # for tests with LD_LIBRARY_PATH to avoid polluting the installed
-       # libcutl.so with extraneous -rpaths (I think...)
-       LD_LIBRARY_PATH="${S}/cutl:${LD_LIBRARY_PATH}" emake test || die
-}
diff --git a/dev-cpp/libcutl/libcutl-1.4.1.ebuild b/dev-cpp/libcutl/libcutl-1.4.1.ebuild
new file mode 100644 (file)
index 0000000..d3f13d1
--- /dev/null
@@ -0,0 +1,21 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit versionator
+
+DESCRIPTION="Library of C++ utilities with evil buildsystem"
+HOMEPAGE="http://codesynthesis.com/projects/libcutl/"
+SRC_URI="http://codesynthesis.com/download/${PN}/$(get_version_component_range 1-2)/${P}.tar.bz2"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+src_install() {
+       default
+       dodoc NEWS README
+}