diff options
author | 2008-07-11 18:27:40 +0000 | |
---|---|---|
committer | 2008-07-11 18:27:40 +0000 | |
commit | 6f3e59449167b225f53acbe5f7adac1239c89e2a (patch) | |
tree | 9e00553b0b62d28a3c7919cb16f65d352514a10d /net-p2p | |
parent | Version bump (diff) | |
download | gentoo-2-6f3e59449167b225f53acbe5f7adac1239c89e2a.tar.gz gentoo-2-6f3e59449167b225f53acbe5f7adac1239c89e2a.tar.bz2 gentoo-2-6f3e59449167b225f53acbe5f7adac1239c89e2a.zip |
Version bump
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/valknut/ChangeLog | 7 | ||||
-rw-r--r-- | net-p2p/valknut/valknut-0.3.18.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/net-p2p/valknut/ChangeLog b/net-p2p/valknut/ChangeLog index 8590775abb23..8e4657de8258 100644 --- a/net-p2p/valknut/ChangeLog +++ b/net-p2p/valknut/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-p2p/valknut # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/valknut/ChangeLog,v 1.62 2008/06/27 17:49:53 gentoofan23 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/valknut/ChangeLog,v 1.63 2008/07/11 18:27:40 armin76 Exp $ + +*valknut-0.3.18 (11 Jul 2008) + + 11 Jul 2008; Raúl Porcel <armin76@gentoo.org> +valknut-0.3.18.ebuild: + Version bump 27 Jun 2008; Thomas Anderson <gentoofan23@gentoo.org> valknut-0.3.13.ebuild: diff --git a/net-p2p/valknut/valknut-0.3.18.ebuild b/net-p2p/valknut/valknut-0.3.18.ebuild new file mode 100644 index 000000000000..18fa4594c760 --- /dev/null +++ b/net-p2p/valknut/valknut-0.3.18.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/valknut/valknut-0.3.18.ebuild,v 1.1 2008/07/11 18:27:40 armin76 Exp $ + +inherit qt3 + +DESCRIPTION="Qt based client for DirectConnect" +HOMEPAGE="http://sourceforge.net/projects/wxdcgui/" +SRC_URI="mirror://sourceforge/wxdcgui/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86" +IUSE="ssl" + +RDEPEND="$(qt_min_version 3) + >=dev-libs/libxml2-2.4.22 + ~net-p2p/dclib-${PV} + ssl? ( dev-libs/openssl )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_compile() { + econf \ + $(use_with ssl) \ + --with-libdc=/usr \ + --with-qt-dir=${QTDIR} \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog NEWS README TODO +} |