diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-04-19 18:04:50 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-04-19 18:04:50 +0000 |
commit | b030c2819887cd85104cb05be4ceea67c110e816 (patch) | |
tree | cdf1f036c64fc6984ba84a643437a204f5763c5f /net-p2p/valknut | |
parent | Version bump. Minor fixes. (diff) | |
download | historical-b030c2819887cd85104cb05be4ceea67c110e816.tar.gz historical-b030c2819887cd85104cb05be4ceea67c110e816.tar.bz2 historical-b030c2819887cd85104cb05be4ceea67c110e816.zip |
Version bump
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'net-p2p/valknut')
-rw-r--r-- | net-p2p/valknut/ChangeLog | 7 | ||||
-rw-r--r-- | net-p2p/valknut/valknut-0.3.13.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/net-p2p/valknut/ChangeLog b/net-p2p/valknut/ChangeLog index d7019f761e03..9df2323e8327 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.55 2008/02/04 15:29:27 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/valknut/ChangeLog,v 1.56 2008/04/19 18:04:50 armin76 Exp $ + +*valknut-0.3.13 (19 Apr 2008) + + 19 Apr 2008; Raúl Porcel <armin76@gentoo.org> +valknut-0.3.13.ebuild: + Version bump 04 Feb 2008; Samuli Suominen <drac@gentoo.org> -valknut-0.3.10.ebuild, -valknut-0.3.11.ebuild, valknut-0.3.12.ebuild: diff --git a/net-p2p/valknut/valknut-0.3.13.ebuild b/net-p2p/valknut/valknut-0.3.13.ebuild new file mode 100644 index 000000000000..393000949327 --- /dev/null +++ b/net-p2p/valknut/valknut-0.3.13.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.13.ebuild,v 1.1 2008/04/19 18:04:50 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 +} |