diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-10-08 14:43:18 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-10-08 14:43:18 +0000 |
commit | 8fdb0d1292e24fca0945cff6e9799129ccadf3ae (patch) | |
tree | 00effdeafbd8a368d7ea86ea7ab08cb6f37c73e9 /x11-plugins/wmpop3lb | |
parent | New ebuild. See bug #5037 (diff) | |
download | historical-8fdb0d1292e24fca0945cff6e9799129ccadf3ae.tar.gz historical-8fdb0d1292e24fca0945cff6e9799129ccadf3ae.tar.bz2 historical-8fdb0d1292e24fca0945cff6e9799129ccadf3ae.zip |
New ebuild. See bug #5044
Diffstat (limited to 'x11-plugins/wmpop3lb')
-rw-r--r-- | x11-plugins/wmpop3lb/ChangeLog | 9 | ||||
-rw-r--r-- | x11-plugins/wmpop3lb/files/digest-wmpop3lb-2.4.2 | 1 | ||||
-rw-r--r-- | x11-plugins/wmpop3lb/wmpop3lb-2.4.2.ebuild | 45 |
3 files changed, 55 insertions, 0 deletions
diff --git a/x11-plugins/wmpop3lb/ChangeLog b/x11-plugins/wmpop3lb/ChangeLog new file mode 100644 index 000000000000..0f23c0d0931a --- /dev/null +++ b/x11-plugins/wmpop3lb/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for x11-plugins/wmpop3lb +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmpop3lb/ChangeLog,v 1.1 2002/10/08 14:43:18 raker Exp $ + +wmpop3lb-2.4.2 (08 Oct 2002) + + 08 Oct 2002; Nick Hadaway <raker@gentoo.org> wmpop3lb-2.4.2.ebuild, + files/digest-wmpop3lbp-2.4.2 : + New ebuild. See bug #5044 diff --git a/x11-plugins/wmpop3lb/files/digest-wmpop3lb-2.4.2 b/x11-plugins/wmpop3lb/files/digest-wmpop3lb-2.4.2 new file mode 100644 index 000000000000..be85defc4a7f --- /dev/null +++ b/x11-plugins/wmpop3lb/files/digest-wmpop3lb-2.4.2 @@ -0,0 +1 @@ +MD5 40760d8963c25d58dea84679a390f1ac wmpop3lb2.4.2.tar.gz 37391 diff --git a/x11-plugins/wmpop3lb/wmpop3lb-2.4.2.ebuild b/x11-plugins/wmpop3lb/wmpop3lb-2.4.2.ebuild new file mode 100644 index 000000000000..12ee002af1cf --- /dev/null +++ b/x11-plugins/wmpop3lb/wmpop3lb-2.4.2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmpop3lb/wmpop3lb-2.4.2.ebuild,v 1.1 2002/10/08 14:43:18 raker Exp $ + +IUSE="" + +VERSION=2.4.2 +S=${WORKDIR}/wmpop3lb${VERSION} + +DESCRIPTION="dockapp for checking up to 7 pop3 accounts" +HOMEPAGE="http://wmpop3lb.jourdain.org" +SRC_URI="http://lbj.free.fr/wmpop3/wmpop3lb${VERSION}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND="virtual/glibc + virtual/x11 + x11-wm/WindowMaker" +RDEPEND="${DEPEND}" + +src_unpack() { + + unpack ${A} + cd ${S}/wmpop3 + + mv Makefile Makefile.orig + sed -e "s:-g2 -D_DEBUG:${CFLAGS}:" Makefile.orig > Makefile + +} + +src_compile() { + + emake -C wmpop3 || die "parallel make failed" + +} + +src_install() { + + dobin wmpop3/wmpop3lb + + dodoc CHANGE_LOG README + +} |