diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-07-10 12:56:30 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-07-10 12:56:30 +0000 |
commit | b835c3946e1dce11ef094a9b47057ab8aabda9e8 (patch) | |
tree | 48db441c24d19bf1346486a365b0e6b93f7d63a2 | |
parent | Disable the bios flag for now, it doesn't build. Bug #231343 (diff) | |
download | gentoo-2-b835c3946e1dce11ef094a9b47057ab8aabda9e8.tar.gz gentoo-2-b835c3946e1dce11ef094a9b47057ab8aabda9e8.tar.bz2 gentoo-2-b835c3946e1dce11ef094a9b47057ab8aabda9e8.zip |
Version bump wrt #231144
(Portage version: 2.2_rc1/cvs/Linux 2.6.24-gentoo-r8 i686)
-rw-r--r-- | net-p2p/linuxdcpp/ChangeLog | 7 | ||||
-rw-r--r-- | net-p2p/linuxdcpp/linuxdcpp-1.0.2.ebuild | 49 |
2 files changed, 55 insertions, 1 deletions
diff --git a/net-p2p/linuxdcpp/ChangeLog b/net-p2p/linuxdcpp/ChangeLog index 0929a23dc793..20239baa1e5f 100644 --- a/net-p2p/linuxdcpp/ChangeLog +++ b/net-p2p/linuxdcpp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-p2p/linuxdcpp # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/linuxdcpp/ChangeLog,v 1.31 2008/07/03 12:01:52 coldwind Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/linuxdcpp/ChangeLog,v 1.32 2008/07/10 12:56:30 armin76 Exp $ + +*linuxdcpp-1.0.2 (10 Jul 2008) + + 10 Jul 2008; Raúl Porcel <armin76@gentoo.org> +linuxdcpp-1.0.2.ebuild: + Version bump wrt #231144 03 Jul 2008; Santiago M. Mola <coldwind@gentoo.org> -linuxdcpp-1.0.1.ebuild, linuxdcpp-1.0.1-r2.ebuild: diff --git a/net-p2p/linuxdcpp/linuxdcpp-1.0.2.ebuild b/net-p2p/linuxdcpp/linuxdcpp-1.0.2.ebuild new file mode 100644 index 000000000000..34907c9fd87b --- /dev/null +++ b/net-p2p/linuxdcpp/linuxdcpp-1.0.2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/linuxdcpp/linuxdcpp-1.0.2.ebuild,v 1.1 2008/07/10 12:56:30 armin76 Exp $ + +inherit eutils + +DESCRIPTION="Direct connect client, looks and works like famous DC++" +HOMEPAGE="http://linuxdcpp.berlios.de" +SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~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} +} + +pkg_postinst() { + elog + elog "After adding first directory to shares you might need to restart linuxdcpp." + elog +} |