wok annotate e2fsprogs/receipt @ rev 15002

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 21:12:16 2013 +0000 (2013-08-10)
parents cc7c36a61435
children 80975bced006
rev   line source
pankso@5 1 # SliTaz package receipt.
pankso@5 2
pankso@5 3 PACKAGE="e2fsprogs"
pankso@13202 4 VERSION="1.42.5"
pankso@271 5 CATEGORY="base-system"
pankso@269 6 SHORT_DESC="Filesystem utilities for use with ext2 and ext3 (without fsck*)."
pankso@5 7 MAINTAINER="pankso@slitaz.org"
pascal@15002 8 LICENSE="GPL2"
pankso@5 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@5 10 WEB_SITE="http://e2fsprogs.sourceforge.net/"
pankso@5 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pankso@12854 12 HOST_ARCH="i486 arm"
pankso@12854 13
pascal@12634 14 DEPENDS="libcomerr util-linux-blkid util-linux-uuid"
pankso@5 15
pankso@5 16 # Rules to configure and make the package.
pankso@5 17 compile_rules()
pankso@5 18 {
pankso@5 19 cd $src
pankso@12854 20 mkdir ../build && cd ../build
pankso@12854 21 $src/configure \
pankso@12 22 --prefix=/usr \
pankso@12 23 --with-root-prefix="" \
pankso@12 24 --enable-elf-shlibs \
slaxemulator@10301 25 --sysconfdir=/etc \
slaxemulator@10301 26 $CONFIGURE_ARGS
pankso@10304 27 make && make install &&
slaxemulator@9684 28 make install-libs
pankso@5 29 }
pankso@5 30
pankso@5 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@5 32 genpkg_rules()
pankso@5 33 {
pankso@12854 34 mkdir -p $fs/usr/lib
pankso@12854 35 cp -a $install/sbin $fs
pankso@12854 36 cp -a $install/lib $fs
pankso@12854 37 cp -a $install/etc $fs
pankso@12854 38 cp -a $install/usr/bin $fs/usr
pankso@12854 39 cp -a $install/usr/sbin $fs/usr
pankso@12854 40 cp -a $install/usr/lib/*.so $fs/usr/lib
pankso@10304 41 cat $stuff/*.files-list | while read file; do
pankso@12854 42 rm -f ${fs}$file
pascal@1163 43 done
pankso@12854 44 # Remove fsck provided by Busybox.
pankso@3105 45 rm $fs/sbin/fsck* $fs/sbin/blkid
pankso@12854 46 # Remove blkid provided by util-linux.
pankso@3105 47 rm $fs/lib/libblkid* $fs/usr/lib/libblkid*
pankso@12481 48 # Remove uuid files provided by util-linux.
pankso@4051 49 rm $fs/usr/sbin/uuidd $fs/usr/bin/uuidgen
pankso@4051 50 rm $fs/lib/libuuid* $fs/usr/lib/libuuid*
pankso@5 51 }
pascal@8876 52
pascal@8876 53 # Overlap busybox
pascal@8876 54 pre_install()
pascal@8876 55 {
pankso@12854 56 rm -f $root/sbin/findfs
pankso@12854 57 rm -f $root/sbin/tune2fs
pascal@8876 58 }
pascal@8876 59
pascal@8876 60 post_remove()
pascal@8876 61 {
pankso@12854 62 ln -s /bin/busybox $root/sbin/findfs
pankso@12854 63 ln -s /bin/busybox $root/sbin/tune2fs
pascal@8876 64 }