wok annotate gparted/receipt @ rev 21088

updated jwm (2.2.0 -> 2.3.7)
author Hans-G?nter Theisgen
date Fri Mar 15 16:26:21 2019 +0100 (2019-03-15)
parents c1cf33a04d62
children 7e911016a644
rev   line source
pankso@137 1 # SliTaz package receipt.
pankso@137 2
pankso@137 3 PACKAGE="gparted"
pascal@20581 4 VERSION="0.33.0"
pankso@190 5 CATEGORY="system-tools"
al@19490 6 SHORT_DESC="A partition editor to graphically manage disk partitions"
pankso@137 7 MAINTAINER="pankso@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
pankso@3822 9 SUGGESTED="e2fsprogs dosfstools mtools ntfs-3g ntfsprogs jfsutils xfsprogs \
pascal@20429 10 reiserfsprogs reiser4progs btrfs-progs f2fs-tools hfsutils hfsprogs mdadm \
pascal@20620 11 cryptsetup dmsetup lvm2 nilfs-utils udftools util-linux-minix exfat-utils \
pascal@20620 12 util-linux-mkfs"
pascal@18838 13 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@137 14 WEB_SITE="http://gparted.sourceforge.net/"
pankso@137 15 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pankso@10392 16 CROSS="error: cannot run test program while cross compiling"
pankso@137 17
pankso@12489 18 DEPENDS="gtk+ libsigc++ glibmm gtkmm pangomm parted util-linux-uuid \
pankso@12489 19 xorg-libXdamage libgiomm cairomm"
pankso@12489 20 BUILD_DEPENDS="gtk+-dev libsigc++-dev glibmm-dev gtkmm-dev parted-dev \
pankso@12490 21 cairomm-dev pangomm-dev libgiomm-dev intltool util-linux-uuid-dev"
slaxemulator@11190 22
pankso@137 23 # Rules to configure and make the package.
pankso@137 24 compile_rules()
pankso@137 25 {
pascal@13138 26 find . -name '*.h' -o -name '*.c*' | xargs sed -i 's|glibmm/i18n|glib/gi18n|'
samuel_trassare@13529 27 # Remove the "-v" option from the swapon/off commands. This will allow
samuel_trassare@13529 28 # gparted to play nicely with busybox.
samuel_trassare@13529 29 sed -i 's/swapoff -v/swapoff/' src/Win_GParted.cc
samuel_trassare@13529 30 sed -i 's/swapon -v/swapon/' src/Win_GParted.cc
mojo@15757 31 # Process test busybox compatible
mojo@15757 32 sed -i 's/ps -e | grep/pgrep/' gparted.in
pankso@137 33 ./configure \
pankso@137 34 --prefix=/usr \
erjo@1446 35 --disable-scrollkeeper \
erjo@1815 36 --disable-doc \
pankso@10392 37 --build=$HOST_SYSTEM \
pankso@10392 38 --host=$HOST_SYSTEM &&
pankso@10392 39 make && make install
al@19490 40
al@19490 41 cp -f $stuff/*.desktop $install/usr/share/applications/
pankso@137 42 }
pankso@137 43
pankso@137 44 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@137 45 genpkg_rules()
pankso@137 46 {
al@19490 47 cook_copy_files gparted gpartedbin
al@19490 48 cook_copy_icons
pankso@137 49 }