diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-01-17 17:37:20 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-01-17 17:37:20 +0000 |
commit | f05fd03f98baf5059c86f4fe9d1650877d85bce4 (patch) | |
tree | 1a6aa78f8cec9a98470e3eac3104b9f1a0abf793 /net-libs/libdexter | |
parent | Make ChangeLog correct for last message, or more accurate (diff) | |
download | gentoo-2-f05fd03f98baf5059c86f4fe9d1650877d85bce4.tar.gz gentoo-2-f05fd03f98baf5059c86f4fe9d1650877d85bce4.tar.bz2 gentoo-2-f05fd03f98baf5059c86f4fe9d1650877d85bce4.zip |
Version bump, remove old
(Portage version: 2.1.11.40/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-libs/libdexter')
-rw-r--r-- | net-libs/libdexter/ChangeLog | 11 | ||||
-rw-r--r-- | net-libs/libdexter/libdexter-0.1.4.ebuild | 36 | ||||
-rw-r--r-- | net-libs/libdexter/libdexter-0.2.1.ebuild | 36 |
3 files changed, 44 insertions, 39 deletions
diff --git a/net-libs/libdexter/ChangeLog b/net-libs/libdexter/ChangeLog index 47a5c3d0186b..cd3b4fafbd7b 100644 --- a/net-libs/libdexter/ChangeLog +++ b/net-libs/libdexter/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/libdexter -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libdexter/ChangeLog,v 1.4 2012/05/05 02:54:25 jdhore Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libdexter/ChangeLog,v 1.5 2013/01/17 17:37:20 pacho Exp $ + +*libdexter-0.2.1 (17 Jan 2013) + + 17 Jan 2013; Pacho Ramos <pacho@gentoo.org> +libdexter-0.2.1.ebuild, + -libdexter-0.1.4.ebuild: + Version bump, remove old 05 May 2012; Jeff Horelick <jdhore@gentoo.org> libdexter-0.1.4.ebuild: dev-util/pkgconfig -> virtual/pkgconfig @@ -15,4 +21,3 @@ 13 Apr 2007; <dragonheart@gentoo.org> +metadata.xml, +libdexter-0.1.4.ebuild: initial import thanks to Philip Kovacs as per bug #159668 - diff --git a/net-libs/libdexter/libdexter-0.1.4.ebuild b/net-libs/libdexter/libdexter-0.1.4.ebuild deleted file mode 100644 index 4ec6d2315039..000000000000 --- a/net-libs/libdexter/libdexter-0.1.4.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libdexter/libdexter-0.1.4.ebuild,v 1.5 2012/05/05 02:54:25 jdhore Exp $ - -inherit flag-o-matic - -DESCRIPTION="Libdexter is a plugin-based, distributed sampling library" -HOMEPAGE="http://libdexter.sourceforge.net/" -SRC_URI="mirror://sourceforge/libdexter/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc" - -RDEPEND="" -DEPEND="${RDEPEND} - virtual/pkgconfig - >=dev-libs/glib-2.10 - doc? ( - >=dev-util/gtk-doc-1.6 - ~app-text/docbook-xml-dtd-4.1.2 - )" - -src_compile() { - econf \ - $(use_enable doc gtk-doc) \ - || die "econf failed" - - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc README NEWS AUTHORS TODO -} diff --git a/net-libs/libdexter/libdexter-0.2.1.ebuild b/net-libs/libdexter/libdexter-0.2.1.ebuild new file mode 100644 index 000000000000..157a95de9234 --- /dev/null +++ b/net-libs/libdexter/libdexter-0.2.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libdexter/libdexter-0.2.1.ebuild,v 1.1 2013/01/17 17:37:20 pacho Exp $ + +EAPI=5 +inherit gnome2-utils eutils + +DESCRIPTION="A plugin-based, distributed sampling library" +HOMEPAGE="http://libdexter.sourceforge.net/" +SRC_URI="mirror://sourceforge/libdexter/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gnutls tcpd" + +RDEPEND="gnutls? ( >=net-libs/gnutls-1.4.4:= ) + tcpd? ( sys-apps/tcp-wrappers:= )" +DEPEND="${RDEPEND} + virtual/pkgconfig + >=dev-libs/glib-2.30:2" + +src_prepare() { + gnome2_disable_deprecation_warning +} + +src_configure() { + econf \ + $(use_enable tcpd tcp-wrappers) \ + $(use_enable gnutls tls) +} + +src_install() { + default + prune_libtool_files --modules +} |