diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-12-10 21:33:45 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-12-10 21:33:45 +0000 |
commit | 0c41434be73b89c4a266ea78e4a66f619c528e27 (patch) | |
tree | 0e3860fea0fcb4f3910e3f6caaf135faeea8f14f /net-p2p/linuxdcpp | |
parent | stabilize (diff) | |
download | gentoo-2-0c41434be73b89c4a266ea78e4a66f619c528e27.tar.gz gentoo-2-0c41434be73b89c4a266ea78e4a66f619c528e27.tar.bz2 gentoo-2-0c41434be73b89c4a266ea78e4a66f619c528e27.zip |
Version bump
(Portage version: 2.1.3.19)
Diffstat (limited to 'net-p2p/linuxdcpp')
-rw-r--r-- | net-p2p/linuxdcpp/ChangeLog | 7 | ||||
-rw-r--r-- | net-p2p/linuxdcpp/files/digest-linuxdcpp-20071210 | 3 | ||||
-rw-r--r-- | net-p2p/linuxdcpp/linuxdcpp-20071210.ebuild | 50 |
3 files changed, 59 insertions, 1 deletions
diff --git a/net-p2p/linuxdcpp/ChangeLog b/net-p2p/linuxdcpp/ChangeLog index 4e16f791a9da..79fbb2554a69 100644 --- a/net-p2p/linuxdcpp/ChangeLog +++ b/net-p2p/linuxdcpp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-p2p/linuxdcpp # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/linuxdcpp/ChangeLog,v 1.16 2007/12/07 15:06:30 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/linuxdcpp/ChangeLog,v 1.17 2007/12/10 21:33:45 armin76 Exp $ + +*linuxdcpp-20071210 (10 Dec 2007) + + 10 Dec 2007; Raúl Porcel <armin76@gentoo.org> +linuxdcpp-20071210.ebuild: + Version bump 07 Dec 2007; Samuli Suominen <drac@gentoo.org> linuxdcpp-9999.ebuild: Reset keywords for CVS ebuild. diff --git a/net-p2p/linuxdcpp/files/digest-linuxdcpp-20071210 b/net-p2p/linuxdcpp/files/digest-linuxdcpp-20071210 new file mode 100644 index 000000000000..a4d27722a206 --- /dev/null +++ b/net-p2p/linuxdcpp/files/digest-linuxdcpp-20071210 @@ -0,0 +1,3 @@ +MD5 c11bd339d8bf405624c70c2a3047f77e linuxdcpp-20071210.tar.bz2 340745 +RMD160 5918b5cb7dd652d3325a90e6a404844747704c49 linuxdcpp-20071210.tar.bz2 340745 +SHA256 a285549c7555f0314eb2e3f727e7496aed465cef739f3e468cde0b0b108e5a4b linuxdcpp-20071210.tar.bz2 340745 diff --git a/net-p2p/linuxdcpp/linuxdcpp-20071210.ebuild b/net-p2p/linuxdcpp/linuxdcpp-20071210.ebuild new file mode 100644 index 000000000000..9c73dabf9b7a --- /dev/null +++ b/net-p2p/linuxdcpp/linuxdcpp-20071210.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/linuxdcpp/linuxdcpp-20071210.ebuild,v 1.1 2007/12/10 21:33:45 armin76 Exp $ + +inherit eutils + +DESCRIPTION="Direct connect client, looks and works like famous DC++" +HOMEPAGE="http://linuxdcpp.berlios.de" +SRC_URI="ftp://ftp.berlios.de/pub/${PN}/${P}.tar.bz2 + mirror://gentoo/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="debug" + +RDEPEND=">=gnome-base/libglade-2.4 + >=x11-libs/gtk+-2.6 + app-arch/bzip2 + dev-libs/openssl" +DEPEND="${RDEPEND} + media-libs/fontconfig + >=dev-util/scons-0.96 + dev-util/pkgconfig" + +src_compile() { + local myconf="" + use debug && myconf="${myconf} debug=1" + + scons ${myconf} ${MAKEOPTS} CXXFLAGS="${CXXFLAGS}" PREFIX=/usr || die "scons failed" +} + +src_install() { + insinto /usr/share/${PN} + doins -r ${PN} pixmaps glade + + dodoc Readme.txt Changelog.txt Credits.txt + + dosym /usr/share/${PN}/${PN} /usr/bin/${PN} + fperms +x /usr/share/${PN}/${PN} + + doicon pixmaps/${PN}.png + + make_desktop_entry ${PN} "${PN}" ${PN}.png +} + +pkg_postinst() { + elog + elog "After adding first directory to shares you might need to restart linuxdcpp." + elog +} |