diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-06-18 21:01:41 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-06-18 21:01:41 +0000 |
commit | 88a8360dfebd398f6f995e61a6fd2b560a05a3ba (patch) | |
tree | 3b9ee2c55b509b9a66394fa5de00a3c5df185679 /net-mail | |
parent | Actually submitting the files for apache exploit update this time. (diff) | |
download | gentoo-2-88a8360dfebd398f6f995e61a6fd2b560a05a3ba.tar.gz gentoo-2-88a8360dfebd398f6f995e61a6fd2b560a05a3ba.tar.bz2 gentoo-2-88a8360dfebd398f6f995e61a6fd2b560a05a3ba.zip |
new package. fixes #3154
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/flap/ChangeLog | 13 | ||||
-rw-r--r-- | net-mail/flap/files/digest-flap-0.3 | 1 | ||||
-rw-r--r-- | net-mail/flap/flap-0.3.ebuild | 26 |
3 files changed, 40 insertions, 0 deletions
diff --git a/net-mail/flap/ChangeLog b/net-mail/flap/ChangeLog new file mode 100644 index 000000000000..4b95022a1d11 --- /dev/null +++ b/net-mail/flap/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for net-mail/flap +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/net-mail/flap/ChangeLog,v 1.1 2002/06/18 21:01:41 rphillips Exp $ + +*flap-0.3 (18 Jun 2002) + + 18 Jun 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/net-mail/flap/files/digest-flap-0.3 b/net-mail/flap/files/digest-flap-0.3 new file mode 100644 index 000000000000..749c4c41fe13 --- /dev/null +++ b/net-mail/flap/files/digest-flap-0.3 @@ -0,0 +1 @@ +MD5 ea0a775d70e0a573b82e18436c0f0e2c flap-0.3-src.tar.gz 480147 diff --git a/net-mail/flap/flap-0.3.ebuild b/net-mail/flap/flap-0.3.ebuild new file mode 100644 index 000000000000..27e4723b8d50 --- /dev/null +++ b/net-mail/flap/flap-0.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 2002 Maik Schreiber +# Distributed under the terms of the GNU General Public License v2 +# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.7 2002/05/18 17:25:12 agenkin Exp + +S="${WORKDIR}/${P}-src" +DESCRIPTION="mail user agent written in Java" +HOMEPAGE="http://flap.sourceforge.net" +LICENSE="GPL-2" +DEPEND=">=dev-java/ant-1.4.1 >=dev-java/jikes-1.15" +RDEPEND=">=virtual/jdk-1.4" +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/flap/${P}-src.tar.gz" + +src_compile() { + ant || die +} + +src_install () { + mkdir -m 755 -p ${D}/usr/flap + mkdir -m 755 ${D}/usr/bin + mkdir -m 755 -p ${D}/etc/env.d + cp -R flap.jar flap.sh lib ${D}/usr/flap + echo >${D}/etc/env.d/10flap "FLAP_HOME=/usr/flap" + ln -s ../flap/flap.sh ${D}/usr/bin/flap + chmod 644 ${D}/usr/flap/flap.jar ${D}/usr/flap/lib/* ${D}/etc/env.d/10flap + chmod 755 ${D}/usr/flap/lib ${D}/usr/flap/flap.sh +} |