diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-10 16:58:24 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-10 16:58:24 +0000 |
commit | 2cb841adb046873e8a8d4ada2b7e50f93e859e80 (patch) | |
tree | 14ed974e3abc3411ccb6bf2ab06e672162c935dd /net-im/amsn | |
parent | Fix use invocation (diff) | |
download | historical-2cb841adb046873e8a8d4ada2b7e50f93e859e80.tar.gz historical-2cb841adb046873e8a8d4ada2b7e50f93e859e80.tar.bz2 historical-2cb841adb046873e8a8d4ada2b7e50f93e859e80.zip |
Fix use invocation
Diffstat (limited to 'net-im/amsn')
-rw-r--r-- | net-im/amsn/ChangeLog | 6 | ||||
-rw-r--r-- | net-im/amsn/amsn-0.83.ebuild | 8 | ||||
-rw-r--r-- | net-im/amsn/amsn-0.90.ebuild | 12 |
3 files changed, 15 insertions, 11 deletions
diff --git a/net-im/amsn/ChangeLog b/net-im/amsn/ChangeLog index 6ee6dd2a33fc..925ff13ad80f 100644 --- a/net-im/amsn/ChangeLog +++ b/net-im/amsn/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-im/amsn # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.31 2004/05/31 00:14:14 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.32 2004/06/10 16:54:52 agriffis Exp $ + + 10 Jun 2004; Aron Griffis <agriffis@gentoo.org> amsn-0.83.ebuild, + amsn-0.90.ebuild: + Fix use invocation *amsn-0.92 (31 May 2004) diff --git a/net-im/amsn/amsn-0.83.ebuild b/net-im/amsn/amsn-0.83.ebuild index e985218a048d..c4fc57a70178 100644 --- a/net-im/amsn/amsn-0.83.ebuild +++ b/net-im/amsn/amsn-0.83.ebuild @@ -21,7 +21,7 @@ DEPEND=">=dev-lang/tcl-8.3.3 src_compile() { - if [ -n "`use imlib`" ] + if use imlib then einfo "Compiling the freedesktop notification plugin" cd ${S}/plugins/traydock @@ -37,7 +37,7 @@ src_install() { # Remove all CVS crap find ${D} -type d -name CVS -exec rm -rf {} \; - if [ -n "`use gnome`" ] + if use gnome then dodir /usr/share/applications cp ${FILESDIR}/amsn.desktop ${D}/usr/share/applications @@ -47,7 +47,7 @@ src_install() { fi - if [ -n "`use kde`" ] + if use kde then dodir ${D}/usr/share/applnk cp ${FILESDIR}/amsn.desktop ${D}/usr/share/applnk/ @@ -56,7 +56,7 @@ src_install() { cp -a ${S}/icons/* ${D}/${KDEDIR}/share/icons/default.kde fi - if [ -n "`use imlib`" ] + if use imlib then einfo "Installing the freedesktop notification plugin" dodir /usr/lib/amsn/plugins/traydock diff --git a/net-im/amsn/amsn-0.90.ebuild b/net-im/amsn/amsn-0.90.ebuild index 52ae60ac17b4..2e3c430a7aac 100644 --- a/net-im/amsn/amsn-0.90.ebuild +++ b/net-im/amsn/amsn-0.90.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-im/amsn/amsn-0.90.ebuild,v 1.10 2004/04/27 19:44:07 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.90.ebuild,v 1.11 2004/06/10 16:54:52 agriffis Exp $ S="${WORKDIR}/msn" DESCRIPTION="Alvaro's Messenger client for MSN" @@ -31,7 +31,7 @@ src_unpack() { src_compile() { - if [ -n "`use imlib`" ] + if use imlib then einfo "Compiling the freedesktop notification plugin" cd ${S}/plugins/traydock @@ -47,7 +47,7 @@ src_install() { # Remove all CVS extra stuff find ${D} -type d -name CVS -exec rm -rf {} \; - if [ -n "`use gnome`" ] + if use gnome then dodir /usr/share/applications cp ${D}/usr/share/amsn/amsn.desktop ${D}/usr/share/applications @@ -57,7 +57,7 @@ src_install() { fi - if [ -n "`use kde`" ] + if use kde then dodir /usr/share/applnk/Internet cp ${D}/usr/share/amsn/amsn.desktop ${D}/usr/share/applnk/Internet/ @@ -66,7 +66,7 @@ src_install() { cp -a ${S}/icons/* ${D}/${KDEDIR}/share/icons/default.kde fi - if [ -n "`use imlib`" ] + if use imlib then einfo "Installing the freedesktop notification plugin" dodir /usr/lib/amsn/plugins/traydock @@ -83,7 +83,7 @@ src_install() { dodoc TODO README FAQ } pkg_postinst() { - if [ -n "`use xmms`" ] + if use xmms then einfo "For XMMS use in amsn, make sure the xmms-infopipe plugin is enabled." fi |