Magellan Linux

Annotation of /trunk/core/autoconf/autoconf-10.3-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 33401 - (hide annotations) (download)
Fri Jul 14 22:30:05 2023 UTC (10 months, 2 weeks ago) by niro
File size: 708 byte(s)
-get rid of bogus libdir handling
1 niro 33401 # $Id$
2    
3     PNAME="autoconf"
4     PVER="10.3"
5     PBUILD="r1"
6    
7     PCAT="sys-dev"
8    
9     DESCRIPTION="Wrapper for autoconf to utilize serveral versions."
10     HOMEPAGE="http://gentoo.org"
11    
12     DEPEND=">= sys-dev/autoconf21-2.13
13     >= sys-dev/autoconf26-2.69
14     >= sys-dev/autoconf27-2.71"
15    
16     SRCFILE="ac-wrapper-${PVER}.tar.bz2"
17     SRCDIR="${BUILDDIR}/ac-wrapper-${PVER}"
18    
19     sminclude mbuild
20    
21     SRC_URI=( mirror://${PNAME}/${SRCFILE})
22    
23     src_compile()
24     {
25     cd ${SRCDIR}
26     mmake || die
27     }
28    
29     preinstall()
30     {
31     # remove these to make sure symlinks install properly if
32     # old versions were binaries
33     for x in autoconf autoheader autoreconf autoscan autoupdate ifnames autom4te
34     do
35     if [ -e ${MROOT}/usr/bin/${x} ]
36     then
37     rm -f ${MROOT}/usr/bin/${x}
38     fi
39     done
40     }