diff options
author | Toni Takarautio (secretz) <thtaka@utu.fi> | 2006-07-30 12:42:05 +0000 |
---|---|---|
committer | Toni Takarautio (secretz) <thtaka@utu.fi> | 2006-07-30 12:42:05 +0000 |
commit | 7a4dcfd51c92c7d87e3a53bf50f1b7496b34a3f4 (patch) | |
tree | 77941125f2310b9c59b38693d7e967d062c1cfc8 /net-p2p/nanodc/nanodc-0.1_alpha43.ebuild | |
parent | media-sound/chuck: simplify DEPEND & RDEPEND (diff) | |
download | sunrise-7a4dcfd51c92c7d87e3a53bf50f1b7496b34a3f4.tar.gz sunrise-7a4dcfd51c92c7d87e3a53bf50f1b7496b34a3f4.tar.bz2 sunrise-7a4dcfd51c92c7d87e3a53bf50f1b7496b34a3f4.zip |
net-p2p/nanodc: version bump
svn path=/sunrise/; revision=739
Diffstat (limited to 'net-p2p/nanodc/nanodc-0.1_alpha43.ebuild')
-rw-r--r-- | net-p2p/nanodc/nanodc-0.1_alpha43.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/net-p2p/nanodc/nanodc-0.1_alpha43.ebuild b/net-p2p/nanodc/nanodc-0.1_alpha43.ebuild new file mode 100644 index 000000000..ce90331de --- /dev/null +++ b/net-p2p/nanodc/nanodc-0.1_alpha43.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit toolchain-funcs + +DESCRIPTION="Ncurses DC++ client" +HOMEPAGE="http://sourceforge.net/projects/nanodc/" +SRC_URI="http://secretz.kapsi.fi/cow/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +DEPEND="app-arch/bzip2 + sys-libs/ncurses + dev-util/pkgconfig + dev-util/scons + sys-libs/zlib + >=dev-libs/libsigc++-2.0.0 + >=dev-libs/glib-2.0.0" +RDEPEND=${DEPEND} + +pkg_setup() { + if [[[ gcc-major-version ] != 4 ]]; then + eerror "We need at least gcc-4.0 to compile" + die "gcc-4 required" + fi +} + +src_compile() { + cd "${WORKDIR}" + scons || die "scons failed!" +} + +src_install() { + dobin "${WORKDIR}/nanodc" +} |