diff options
4 files changed, 41 insertions, 2 deletions
diff --git a/perso/net-p2p/ewlgiFT/ewlgiFT-9999.ebuild b/perso/net-p2p/ewlgiFT/ewlgiFT-9999.ebuild index 4ef958b1..41d562b7 100644 --- a/perso/net-p2p/ewlgiFT/ewlgiFT-9999.ebuild +++ b/perso/net-p2p/ewlgiFT/ewlgiFT-9999.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="http://sourceforge.net/projects/ewlgift/" ECVS_SERVER="cvs.sourceforge.net:/cvsroot/ewlgift" ECVS_MODULE="ewlgiFT" -LICENSE="GPL-2" +LICENSE="as-is" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="" @@ -23,7 +23,7 @@ S="${WORKDIR}/${PN}" src_compile() { - mv Changelog ChangeLog + mv Changelog ChangeLog # autegen failed if not done :/ ./autogen.sh || die "autogen failed" econf || die "econf failed" emake || die "emake failed" @@ -31,5 +31,6 @@ src_compile() src_install() { + dodoc NEWS README AUTHORS einstall || die "einstall failed" } diff --git a/perso/x11-plugins/gaim-netsoul/Manifest b/perso/x11-plugins/gaim-netsoul/Manifest new file mode 100644 index 00000000..540a8c3c --- /dev/null +++ b/perso/x11-plugins/gaim-netsoul/Manifest @@ -0,0 +1,2 @@ +MD5 4d1605e115a09790dc54f2e80b349128 gaim-netsoul-0.1.0.ebuild 671 +MD5 bd3e423faf7488c2f45a3ee75be2398c files/digest-gaim-netsoul-0.1.0 70 diff --git a/perso/x11-plugins/gaim-netsoul/files/digest-gaim-netsoul-0.1.0 b/perso/x11-plugins/gaim-netsoul/files/digest-gaim-netsoul-0.1.0 new file mode 100644 index 00000000..92255cb7 --- /dev/null +++ b/perso/x11-plugins/gaim-netsoul/files/digest-gaim-netsoul-0.1.0 @@ -0,0 +1 @@ +MD5 23ae2d4a8ff6d87ca1d186f6e928b0c1 gaim-netsoul-0.1.0.tar.gz 299219 diff --git a/perso/x11-plugins/gaim-netsoul/gaim-netsoul-0.1.0.ebuild b/perso/x11-plugins/gaim-netsoul/gaim-netsoul-0.1.0.ebuild new file mode 100644 index 00000000..2613444f --- /dev/null +++ b/perso/x11-plugins/gaim-netsoul/gaim-netsoul-0.1.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +DESCRIPTION="Gaim-netsoul is a Gaim plugin for the netsoul IM-network used at the EPITA and EPITECH engineering schools in Paris, France." +HOMEPAGE="http://sourceforge.net/projects/gaim-netsoul/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND="net-im/gaim" +RDEPEND="${DEPEND}" + +RESTRICT="nomirror" + +src_unpack() +{ + unpack ${A} +} + +src_compile() +{ + econf || die "econf failed" + emake || die "emake failed" +} + +src_install() +{ + einstall || die "einstall failed" + + dodoc README AUTHORS +} |