diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-12 03:34:54 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-12 03:34:54 +0000 |
commit | 2bc5b75560dc7a48183e8dbd743cf199e5960083 (patch) | |
tree | 1698e67485f7243de7455958fd5d983c09014606 /net-mail/mailman | |
parent | Fix use invocation (Manifest recommit) (diff) | |
download | gentoo-2-2bc5b75560dc7a48183e8dbd743cf199e5960083.tar.gz gentoo-2-2bc5b75560dc7a48183e8dbd743cf199e5960083.tar.bz2 gentoo-2-2bc5b75560dc7a48183e8dbd743cf199e5960083.zip |
Fix use invocation
Diffstat (limited to 'net-mail/mailman')
-rw-r--r-- | net-mail/mailman/ChangeLog | 6 | ||||
-rw-r--r-- | net-mail/mailman/mailman-2.1.4.ebuild | 8 | ||||
-rw-r--r-- | net-mail/mailman/mailman-2.1.5.ebuild | 8 |
3 files changed, 13 insertions, 9 deletions
diff --git a/net-mail/mailman/ChangeLog b/net-mail/mailman/ChangeLog index d5df53249fd6..a6f1564aeac6 100644 --- a/net-mail/mailman/ChangeLog +++ b/net-mail/mailman/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-mail/mailman # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v 1.36 2004/06/08 22:03:27 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v 1.37 2004/06/12 03:33:39 agriffis Exp $ + + 11 Jun 2004; Aron Griffis <agriffis@gentoo.org> mailman-2.1.4.ebuild, + mailman-2.1.5.ebuild: + Fix use invocation 09 Jun 2004; Martin Holzer <mholzer@gentoo.org> mailman-2.1.5.ebuild: marking x86 stable. diff --git a/net-mail/mailman/mailman-2.1.4.ebuild b/net-mail/mailman/mailman-2.1.4.ebuild index 7a27766e3ab5..f85f194e78e2 100644 --- a/net-mail/mailman/mailman-2.1.4.ebuild +++ b/net-mail/mailman/mailman-2.1.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.4.ebuild,v 1.10 2004/05/31 22:30:35 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.4.ebuild,v 1.11 2004/06/12 03:33:39 agriffis Exp $ IUSE="apache2" @@ -59,7 +59,7 @@ src_install () { chown -R mailman:mailman ${ID} chmod 2775 ${ID} - if [ "`use apache2`" ]; then + if use apache2; then dodir /etc/apache2/conf/modules.d insinto /etc/apache2/conf/modules.d newins ${FILESDIR}/mailman.conf 50_mailman.conf @@ -111,7 +111,7 @@ pkg_postinst() { einfo "Setup information, mailman will NOT run unless you follow" einfo "those instructions!" einfo "" - if [ ! "`use apache2`" ]; then + if ! use apache2; then einfo "It appears that you aren't running apache2..." einfo "ebuild /var/db/pkg/net-mail/${PN}/${PF}.ebuild config" einfo "to add the mailman hooks to your config" @@ -119,7 +119,7 @@ pkg_postinst() { } pkg_config() { - if [ ! "`use apache2`" ]; then + if ! use apache2; then einfo "Updating apache config" einfo "added: \"Include conf/addon-modules/mailman.conf\"" einfo "to ${ROOT}etc/apache/conf/apache.conf" diff --git a/net-mail/mailman/mailman-2.1.5.ebuild b/net-mail/mailman/mailman-2.1.5.ebuild index 85b43bb05f48..43c58f9cabb8 100644 --- a/net-mail/mailman/mailman-2.1.5.ebuild +++ b/net-mail/mailman/mailman-2.1.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.5.ebuild,v 1.4 2004/06/08 22:03:27 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.5.ebuild,v 1.5 2004/06/12 03:33:39 agriffis Exp $ IUSE="apache2" @@ -59,7 +59,7 @@ src_install () { chown -R mailman:mailman ${ID} chmod 2775 ${ID} - if [ "`use apache2`" ]; then + if use apache2; then dodir /etc/apache2/conf/modules.d insinto /etc/apache2/conf/modules.d newins ${FILESDIR}/mailman.conf 50_mailman.conf @@ -111,7 +111,7 @@ pkg_postinst() { einfo "Setup information, mailman will NOT run unless you follow" einfo "those instructions!" einfo "" - if [ ! "`use apache2`" ]; then + if ! use apache2; then einfo "It appears that you aren't running apache2..." einfo "ebuild /var/db/pkg/net-mail/${PN}/${PF}.ebuild config" einfo "to add the mailman hooks to your config" @@ -119,7 +119,7 @@ pkg_postinst() { } pkg_config() { - if [ ! "`use apache2`" ]; then + if ! use apache2; then einfo "Updating apache config" einfo "added: \"Include conf/addon-modules/mailman.conf\"" einfo "to ${ROOT}etc/apache/conf/apache.conf" |