diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2004-03-05 07:19:37 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2004-03-05 07:19:37 +0000 |
commit | 407833c2508003dd13997a839f03d738eef8c1c7 (patch) | |
tree | 1d26b933884335545fc5ebd88eadd17f9fe63ba3 /net-mail/libdbx/libdbx-1.0.3.ebuild | |
parent | Azureus is a Java based bittorrent client. Initial ebuild provided by me and... (diff) | |
download | historical-407833c2508003dd13997a839f03d738eef8c1c7.tar.gz historical-407833c2508003dd13997a839f03d738eef8c1c7.tar.bz2 historical-407833c2508003dd13997a839f03d738eef8c1c7.zip |
Initial import
Diffstat (limited to 'net-mail/libdbx/libdbx-1.0.3.ebuild')
-rw-r--r-- | net-mail/libdbx/libdbx-1.0.3.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/net-mail/libdbx/libdbx-1.0.3.ebuild b/net-mail/libdbx/libdbx-1.0.3.ebuild new file mode 100644 index 000000000000..c38a3598d7a2 --- /dev/null +++ b/net-mail/libdbx/libdbx-1.0.3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/libdbx/libdbx-1.0.3.ebuild,v 1.1 2004/03/05 07:19:37 phosphan Exp $ + +DESCRIPTION="Tools and library for reading Outlook Express mailboxes (.dbx format)" +HOMEPAGE="http://sourceforge.net/projects/ol2mbox" +MY_PN="libdbx" +MYFILE="${MY_PN}_${PV}.tgz" +SRC_URI="mirror://sourceforge/ol2mbox/${MYFILE}" + +LICENSE="GPL-2" + +SLOT="0" + +KEYWORDS="~x86" + +IUSE="" + +DEPEND=">=sys-apps/sed-4" + +S="${WORKDIR}/${MY_PN}_${PV}" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i -e 's/-g/$(CFLAGS)/' Makefile +} + +src_compile() { + emake || die +} + +src_install() { + exeinto /usr/bin + doexe readoe readdbx + dodoc README* AUTHORS FILE-FORMAT + insinto /usr/include + doins libdbx.h libdbx++.h + insinto /usr/lib + doins libdbx.o +} |