1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 18:45:10 +00:00

fixing cvs ebuild

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@372 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Brenden Matthews 2005-11-02 05:29:14 +00:00
parent a8095f83c6
commit 8ae39dfecd

View File

@ -38,17 +38,15 @@ src_unpack() {
}
src_compile() {
econf \
$(use_enable truetype xft) \
$(use_enable seti) \
$(use_enable X x11) \
--enable-double-buffer \
--enable-own-window \
--enable-proc-uptime \
--enable-mpd \
--enable-mldonkey \
|| die "econf failed"
emake || die "compile failed"
local myconf
myconf="--enable-double-buffer --enable-own-window --enable-proc-uptime --enable-mpd --enable-mldonkey"
econf \
${myconf} \
$(use_enable truetype xft) \
$(use_enable X x11) \
$(use_enable !ipv6 portmon) \
$(use_enable seti) || die "econf failed"
emake || die "compile failed"
}
src_install() {