Files
@ 475bd1a361e8
Branch filter:
Location: ohnobinki_overlay/mail-filter/spamass-milter/spamass-milter-0.3.1-r2.ebuild - annotation
475bd1a361e8
1.1 KiB
application/vnd.gentoo.ebuild
bumped to dev-embedded/phidget-2.1.5.20090105, created new files/phidget21-crosscompile.patch for this version, updated logic in dev-embedded/phidget's ebuilds
logic was changed in the all of the ebuilds - they are all identical except for which patches are referenced. Fixed references to things like make=>emake and calling java stuff when the java use-flag was disabled. The new files/phidget21-crosscompile.patch (files/phidget21-2.1.5.20090105.patch) was needed because the context of the diff against the Makefile changed.
logic was changed in the all of the ebuilds - they are all identical except for which patches are referenced. Fixed references to things like make=>emake and calling java stuff when the java use-flag was disabled. The new files/phidget21-crosscompile.patch (files/phidget21-2.1.5.20090105.patch) was needed because the context of the diff against the Makefile changed.
5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 | # Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: Exp $
inherit eutils
IUSE=""
DESCRIPTION="A milter for SpamAssassin"
HOMEPAGE="http://savannah.nongnu.org/projects/spamass-milt/"
SRC_URI="http://savannah.nongnu.org/download/spamass-milt/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc sparc x86"
DEPEND=">=sys-devel/autoconf-2.57
>=sys-devel/automake-1.7.2"
RDEPEND="mail-filter/libmilter
>=mail-filter/spamassassin-3.1.0"
pkg_setup() {
enewgroup milter
enewuser milter -1 -1 /var/milter milter
}
src_install() {
make DESTDIR=${D} install || die
newinitd ${FILESDIR}/spamass-milter.rc3 spamass-milter
newconfd ${FILESDIR}/spamass-milter.conf3 spamass-milter
dodir /var/run/milter
keepdir /var/run/milter
fowners milter:milter /var/run/milter
dodir /var/milter
keepdir /var/milter
fowners milter:milter /var/milter
dodoc AUTHORS NEWS README ChangeLog ${FILESDIR}/README.gentoo
}
pkg_postinst() {
elog
elog "Documentation is in /usr/share/doc/${P}"
elog "Check README.gentoo.gz there for some basic gentoo installation instructions"
elog
}
|