Magellan Linux

Contents of /smage/trunk/core/e2fsprogs/alx/e2fsprogs.custom

Parent Directory Parent Directory | Revision Log Revision Log


Revision 61 - (show annotations) (download)
Mon Jan 4 17:30:05 2010 UTC (14 years, 4 months ago) by niro
File size: 666 byte(s)
auto added: ver bump to 1.41.9-r2
1 # $Header: /alx-cvs/smage-eglibc/e2fsprogs/alx/e2fsprogs.custom,v 1.2 2008/06/27 23:06:30 niro Exp $
2
3 # fix dependencies:
4 DEPEND=$(echo "${DEPEND}" | sed '/sys-apps\/texinfo/d')
5
6 # rename old functions
7 if [[ ! -z $(typeset -f alx_pkgbuild) ]]
8 then
9 old_alx_pkgbuild=old_$(typeset -f alx_pkgbuild)
10 eval ${old_alx_pkgbuild}
11 fi
12
13 alx_pkgbuild() {
14 echo -e ${COLGREEN}" Using custom alx_pkgbuild"${COLDEFAULT}
15 old_alx_pkgbuild
16
17 echo -e ${COLGREEN}" Creating fsck symlinks -> ext2"${COLDEFAULT}
18 ln -snf e2fsck ${BINDIR}/sbin/fsck.ext2 || die
19 echo -e ${COLGREEN}" Creating fsck symlinks -> ext3"${COLDEFAULT}
20 ln -snf e2fsck ${BINDIR}/sbin/fsck.ext3 || die
21 }