1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-05 21:07:52 +00:00

autogen hardcoding is better

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@136 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Brenden Matthews 2005-08-21 23:40:48 +00:00
parent 16bc1e5bc3
commit bc9067aa77
2 changed files with 6 additions and 34 deletions

View File

@ -21,8 +21,8 @@ RDEPEND="virtual/libc
DEPEND="truetype? ( >=media-libs/freetype-2 )
X? ( virtual/x11 )
>=sys-devel/automake-1.4
sys-devel/autoconf
>=sys-devel/automake-1.9
>=sys-devel/autoconf-2.59
sys-apps/grep
sys-apps/sed
sys-devel/gcc

View File

@ -1,35 +1,7 @@
#!/bin/sh
# $Id$
alocver=1.9
aheadver=2.59
amakever=1.9
aconfver=2.59
if [ -x aclocal-$alocver ]
then
aclocal-$alocver
else
aclocal
fi
if [ -x autoheader-$aheadver ]
then
autoheader-$aheadver
else
autoheader
fi
if [ -x automake-$amakever ]
then
automake-$amakever -a
else
automake -a
fi
if [ -x autoconf-$aconfver ]
then
autoconf-$aconfver
else
autoconf
fi
aclocal-1.9
autoheader-2.59
automake-1.9 -a
autoconf-2.59