gsmartcontrol: initial import

This commit is contained in:
Danny Rawlins 2017-03-22 17:38:08 +11:00
parent 3037e25ae5
commit 8f6c8be2a4
4 changed files with 70 additions and 0 deletions

43
gsmartcontrol/.footprint Normal file
View File

@ -0,0 +1,43 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/gsmartcontrol
-rwxr-xr-x root/root usr/bin/gsmartcontrol-root
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/gsmartcontrol.desktop
drwxr-xr-x root/root usr/share/gsmartcontrol/
-rw-r--r-- root/root usr/share/gsmartcontrol/icon_cddvd.png
-rw-r--r-- root/root usr/share/gsmartcontrol/icon_hdd.png
drwxr-xr-x root/root usr/share/icons/
drwxr-xr-x root/root usr/share/icons/hicolor/
drwxr-xr-x root/root usr/share/icons/hicolor/128x128/
drwxr-xr-x root/root usr/share/icons/hicolor/128x128/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/128x128/apps/gsmartcontrol.png
drwxr-xr-x root/root usr/share/icons/hicolor/16x16/
drwxr-xr-x root/root usr/share/icons/hicolor/16x16/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/16x16/apps/gsmartcontrol.png
drwxr-xr-x root/root usr/share/icons/hicolor/22x22/
drwxr-xr-x root/root usr/share/icons/hicolor/22x22/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/22x22/apps/gsmartcontrol.png
drwxr-xr-x root/root usr/share/icons/hicolor/24x24/
drwxr-xr-x root/root usr/share/icons/hicolor/24x24/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/24x24/apps/gsmartcontrol.png
drwxr-xr-x root/root usr/share/icons/hicolor/256x256/
drwxr-xr-x root/root usr/share/icons/hicolor/256x256/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/256x256/apps/gsmartcontrol.png
drwxr-xr-x root/root usr/share/icons/hicolor/32x32/
drwxr-xr-x root/root usr/share/icons/hicolor/32x32/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/32x32/apps/gsmartcontrol.png
drwxr-xr-x root/root usr/share/icons/hicolor/48x48/
drwxr-xr-x root/root usr/share/icons/hicolor/48x48/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/gsmartcontrol.png
drwxr-xr-x root/root usr/share/icons/hicolor/64x64/
drwxr-xr-x root/root usr/share/icons/hicolor/64x64/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/64x64/apps/gsmartcontrol.png
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
lrwxrwxrwx root/root usr/share/man/man1/gsmartcontrol-root.1.gz -> gsmartcontrol.1.gz
-rw-r--r-- root/root usr/share/man/man1/gsmartcontrol.1.gz
drwxr-xr-x root/root usr/share/pixmaps/
-rw-r--r-- root/root usr/share/pixmaps/gsmartcontrol.png
-rw-r--r-- root/root usr/share/pixmaps/gsmartcontrol.xpm

1
gsmartcontrol/.md5sum Normal file
View File

@ -0,0 +1 @@
6d104c2ffc1e693cd1a8052a6d7e3b30 gsmartcontrol-0.8.7.tar.bz2

5
gsmartcontrol/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3++LCQaZY3wK1+wg7xcXxa5lsFbfzKL2jNxwpd4SM+Pi0oTlqwUnig21l5lB7iKlXYy0AVDxJaSShYVBWNTCnQY=
SHA256 (Pkgfile) = 2fb11665325385bccd0661cde83dc47a1d5d6fec601092575f69f608bfc3d6a8
SHA256 (.footprint) = 230cb7bd4e6ff6c35a7ec7634122bbc2f821c615af2af103cae1079b403e4392
SHA256 (gsmartcontrol-0.8.7.tar.bz2) = 708fa803243abb852ed52050fc82cd3592a798c02743342441996e77f19ffec6

21
gsmartcontrol/Pkgfile Normal file
View File

@ -0,0 +1,21 @@
# Description: A graphical user interface for the smartctl hard disk drive health inspection tool.
# URL: http://gsmartcontrol.sourceforge.net/home/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: gtkmm smartmontools xmessage
name=gsmartcontrol
version=0.8.7
release=1
source=(https://sourceforge.net/projects/$name/files/$version/$name-$version.tar.bz2)
build() {
cd $name-$version
CXXFLAGS+=' -std=c++11' \
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}