]> Pileus Git - ~andy/sunrise/commitdiff
x11-plugins/gaim-plugin_pack: Fix DEPEND, cosmetics
authorJakub Moc <jakub@gentoo.org>
Wed, 7 Mar 2007 14:25:27 +0000 (14:25 +0000)
committerJakub Moc <jakub@gentoo.org>
Wed, 7 Mar 2007 14:25:27 +0000 (14:25 +0000)
svn path=/sunrise/; revision=3160

x11-plugins/gaim-plugin_pack/ChangeLog
x11-plugins/gaim-plugin_pack/Manifest
x11-plugins/gaim-plugin_pack/gaim-plugin_pack-1.0_beta6.ebuild

index d10193a55f3a614117877516c78ee3bbc30eb07a..174857c6d8f45680deabc2a75f4a74ac75f7a3b7 100644 (file)
@@ -2,6 +2,10 @@
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  07 Mar 2007; Jakub Moc <jakub@gentoo.org>
+  gaim-plugin_pack-1.0_beta6.ebuild:
+  Fix DEPEND, cosmetics
+
   06 Mar 2007; Jürgen Geuter (tante) <tante@emptiness.de> ChangeLog:
   New Ebuild for bug 134430
 
index b44ce0e8c81452692d430f6b5a9b21587b91ccdf..9a7de0d9714a3617c259cf87010fb219b75b5911 100644 (file)
@@ -1,4 +1,4 @@
 DIST gaim-plugin_pack-1.0beta6.tar.bz2 408780 RMD160 f0c793dfb55eebad139e43150794b95187fae963 SHA1 11da2e2e0d731dae32bda11196ea09a846b650e0 SHA256 8fc911fd2908b465bcbe8b64bda557d4196aa941d21ca3ffed9c42ad1d6b32ab
-EBUILD gaim-plugin_pack-1.0_beta6.ebuild 1888 RMD160 326dc9c52361795e5a1bf69523a31a1f7cd1e143 SHA1 b03aa09d73e45bf1fabec20ca20411583ede6974 SHA256 9bc581a71498aad48023dc53a922d859a08408f76f94d0c9d548a361e9bad28e
-MISC ChangeLog 228 RMD160 ac80ab843cff66d7713c51a2ff355c1ff217490f SHA1 b0ddaf1a087da6b0f03b6d3082acf28ce78a383f SHA256 b7962cd762ee41f4d60d9ef8d72c2be985e330048f1dbfeedcb13eeb1f0c025c
+EBUILD gaim-plugin_pack-1.0_beta6.ebuild 1892 RMD160 2d8b9a644d751b9ca1e8915ac60af95643ba8609 SHA1 00faa1f7bcb3b3a0971952a770434a0d7524107f SHA256 627d40743fa641ff6fcc9cf3ddba6f8a02ee3e538d934e0ab8d0d8e6d5ff6203
+MISC ChangeLog 334 RMD160 6ab47139bed19fe80e1f930291ca3ab71535cf5c SHA1 d80a291d469268b9ce0335c291bae0eeb15c9102 SHA256 6024506af11fe5139a8f374a9f4f48cbdf73633b528bf1752c8b5f981488955e
 MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42
index a05645226958ad2b117f6831e2c4da3603769634..71bddc5ee1d82b92761839bf35d440de4985ba81 100644 (file)
@@ -17,16 +17,16 @@ gRIM groupmsg irssi lastseen listhandler mystatusbox nicksaid oldlogger \
 plonkers sepandtab showoffline simfix slashexec sslinfo talkfilters xchat-chats"
 IUSE="${FLAGS} bashorg debug"
 
-DEPEND="=net-im/gaim-2.0.0_beta6
+DEPEND="~net-im/gaim-2.0.0_beta6
        talkfilters? ( app-text/talkfilters )"
 
 S="${WORKDIR}/${MY_P}"
 
 src_compile() {
-       local myconf
        einfo "The plugins that are to be built are configured via use flags."
        einfo "If none of the optional use flags is set _ALL_ plugins are built,"
        einfo "so adjusting /etc/portage/package.use might be a good idea before merging."
+
        # XMMS Remote is disabled due to XMMS being masked
        #
        # Disabled due to non-working status:
@@ -44,25 +44,22 @@ src_compile() {
        # New Line
        # Offline Message
 
-       myconf="--with-plugins="
+       local myconf="--with-plugins="
 
        # bashorg has to add "bash" to the configure
-       if use bashorg ; then
-               myconf="${myconf}bash,"
-       fi
+       use bashorg && myconf="${myconf}bash,"
 
        for flag in $FLAGS ; do
-               if use $flag ; then
+               if use ${flag} ; then
                        myconf="${myconf}${flag},"
                fi
        done
 
-       econf ${myconf} $(use_enable debug)|| die "Configuration failed with the configuration $myconf"
-       emake -j1 || die "Make failed"
-
+       econf "${myconf}" $(use_enable debug) || die "Configuration failed with the configuration $myconf"
+       emake -j1 || die "emake failed"
 }
 
 src_install() {
-       make DESTDIR=${D} install || die
+       make DESTDIR="${D}" install || die "install failed"
        dodoc AUTHORS ChangeLog NEWS README TODO VERSION
 }