Portage is a package management system used by Gentoo Linux
# ChangeLog for net-mail/mess822
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/mess822/ChangeLog,v 1.10 2006/09/02 18:14:34 blubb Exp $
02 Sep 2006;
make the build system respect $(get_libdir)
01 May 2005; Michael Hanselmann
mess822-0.58-r1.ebuild:
Stable on ppc.
03 Sep 2004; David Holm
Added to ~ppc.
01 Jul 2004; Jeremy Huddleston
mess822-0.58-r1.ebuild:
virtual/glibc -> virtual/libc
15 Apr 2004; Danny van Dyk
marked ~amd64
*mess822-0.58-r1 (07 Aug 2003)
07 Aug 2003; Rajiv Aaron Manglani
fix errno.h problem; bug #26165.
09 Jun 2003;
update SRC_URI; DEPEND on sed >=4; use emake (seems to work fine); change sed
hier.c slightly to work around repoman bug.
*mess822-0.58 (19 May 2003)
19 May 2003; Arcady Genkin
Initial version.
DIST mess822-0.58.tar.gz 64287 RMD160 40fbcb5af92882e133ab3653c6119022180caedb SHA1 ef3380c793c852d40688c108d164234ecf8a5362 SHA256 23d37a783474ad5cd9bda0a1309deaea27e570a0d5db0ed8cc2cb46da1c413e0
EBUILD mess822-0.58-r1.ebuild 1278 RMD160 97950a135e5fa49ab2ae8a2906ec12d6b26566d3 SHA1 f1c8bf7ef93842feea730147d0ba9a2181764c35 SHA256 5b52ee70ed2564fa6b9a013b2f7d3056aafe2e5cc4f1dce8960b6d038d577650
MISC ChangeLog 1114 RMD160 c0388c8e959273a7d455476a2d4d018d28591203 SHA1 1f9806a9b64244173d6ca4b820e19ebc9dc41235 SHA256 bfc1fe11254ca3c8de2365e0392aaacb3631dfd72202047a74d611ca9b853bcf
MISC metadata.xml 161 RMD160 273e570423fa3cd9d3f15f7967a43307c8ee9661 SHA1 a1fecd2f7b169d621b88c6ccab9d758209fc8f19 SHA256 4ebf9a8f60040bfb95f13790c1d146a49c69f791f9c421e02a5d96fd6fcb2b32
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/mess822/mess822-0.58-r1.ebuild,v 1.10 2007/06/26 02:30:06 mr_bones_ Exp $
inherit multilib
DESCRIPTION="Collection of utilities for parsing Internet mail messages."
SRC_URI="http://cr.yp.to/software/${P}.tar.gz"
HOMEPAGE="http://cr.yp.to/mess822.html"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
LICENSE="as-is"
DEPEND="virtual/libc
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
echo "gcc ${CFLAGS}" > conf-cc
echo "gcc" > conf-ld
echo "/usr/" > conf-home
# fix errno.h problem; bug #26165
sed -i 's/^extern int errno;/#include
}
src_compile() {
emake || die
}
src_install() {
dodir /etc
dodir /usr/share
# Now that the commands are compiled, update the conf-home file to point
# to the installation image directory.
echo "${D}/usr/" > conf-home
sed -i -e "s:\"/etc\":\"${D}/etc\":" hier.c || die "sed hier.c failed"
make setup
# Move the man pages into /usr/share/man
mv "${D}/usr/man" "${D}/usr/share/"
dodir /usr/$(get_libdir)
mv "${D}/usr/lib/${PN}.a" "${D}/usr/$(get_libdir)/${PN}.a"
rmdir "${D}/usr/lib"
dodoc BLURB CHANGES INSTALL README THANKS TODO VERSION
}