diff options
author | 2011-05-06 14:38:12 +0000 | |
---|---|---|
committer | 2011-05-06 14:38:12 +0000 | |
commit | 0b1148148578680a17423845ba955c24e6304784 (patch) | |
tree | 7563d0c0b999cfc4d0a64ea359c6ab6e73b27695 /net-im | |
parent | Unmasking boost (diff) | |
download | gentoo-2-0b1148148578680a17423845ba955c24e6304784.tar.gz gentoo-2-0b1148148578680a17423845ba955c24e6304784.tar.bz2 gentoo-2-0b1148148578680a17423845ba955c24e6304784.zip |
Respect CC,CFLAGS #365863. Use dohtml -r #365861. Install CREDITS file. EAPI=4 bump.
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/reaim/ChangeLog | 10 | ||||
-rw-r--r-- | net-im/reaim/reaim-0.8-r1.ebuild | 36 |
2 files changed, 44 insertions, 2 deletions
diff --git a/net-im/reaim/ChangeLog b/net-im/reaim/ChangeLog index 2cc46a7a6fd5..7d0103b4ee9c 100644 --- a/net-im/reaim/ChangeLog +++ b/net-im/reaim/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-im/reaim -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/reaim/ChangeLog,v 1.7 2009/01/14 04:45:22 vapier Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/reaim/ChangeLog,v 1.8 2011/05/06 14:38:12 signals Exp $ + +*reaim-0.8-r1 (06 May 2011) + + 06 May 2011; Kevin McCarthy <signals@gentoo.org> +reaim-0.8-r1.ebuild: + Respect CC,CFLAGS #365863. Use dohtml -r #365861. Install CREDITS file. + EAPI=4 bump. 14 Jan 2009; Mike Frysinger <vapier@gentoo.org> reaim-0.8.ebuild: Cleanup ebuild a bit. diff --git a/net-im/reaim/reaim-0.8-r1.ebuild b/net-im/reaim/reaim-0.8-r1.ebuild new file mode 100644 index 000000000000..76da44190a77 --- /dev/null +++ b/net-im/reaim/reaim-0.8-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/reaim/reaim-0.8-r1.ebuild,v 1.1 2011/05/06 14:38:12 signals Exp $ + +EAPI=4 + +inherit toolchain-funcs + +DESCRIPTION="AIM transport proxy over NAT firewalls" +HOMEPAGE="http://reaim.sourceforge.net/" +SRC_URI="mirror://sourceforge/reaim/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND=">=sys-apps/sed-4" +RDEPEND="net-firewall/iptables" + +pkg_setup() { + tc-export CC +} + +src_prepare() { + sed -i -e 's/gcc/$(CC) $(CFLAGS) $(LDFLAGS)/' \ + -e 's/ -g / /' Makefile || die "sed failed" #365863 +} + +src_install() { + dosbin reaim || die + doman reaim.8 + dodoc CREDITS + dohtml -r -x CVS html/* + newinitd "${FILESDIR}"/reaim reaim +} |