mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
graphics/tripod: Removed from 13.0 repository
This commit is contained in:
parent
61cdd5be0b
commit
0ba4d962e7
5 changed files with 0 additions and 118 deletions
|
@ -1,4 +0,0 @@
|
||||||
Tripod (manage photos on Apple's iPod)
|
|
||||||
|
|
||||||
Tripod is a QT application allowing you to display, create, remove
|
|
||||||
and rename your iPod photo album.
|
|
|
@ -1,11 +0,0 @@
|
||||||
--- tripod/src/ipodexportdialog.cpp~ 2007-02-01 10:36:04.000000000 +0100
|
|
||||||
+++ tripod/src/ipodexportdialog.cpp 2007-05-29 15:27:19.000000000 +0200
|
|
||||||
@@ -494,7 +494,7 @@
|
|
||||||
|
|
||||||
// get last album. we don't use lastItem() because it returns children. FIXME?? O(n)
|
|
||||||
QListViewItem *last = m_ipodAlbumList->firstChild();
|
|
||||||
- while( last->nextSibling() )
|
|
||||||
+ while( last && last->nextSibling() )
|
|
||||||
last = last->nextSibling();
|
|
||||||
|
|
||||||
Itdb_PhotoAlbum *photoAlbum = itdb_photodb_photoalbum_create( m_itdb, QFile::encodeName( newAlbum ), -1/*end*/ );
|
|
|
@ -1,19 +0,0 @@
|
||||||
# HOW TO EDIT THIS FILE:
|
|
||||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
|
||||||
# up the first '|' above the ':' following the base package name, and the '|'
|
|
||||||
# on the right side marks the last column you can put a character in. You must
|
|
||||||
# make exactly 11 lines for the formatting to be correct. It's also
|
|
||||||
# customary to leave one space after the ':'.
|
|
||||||
|
|
||||||
|-----handy-ruler------------------------------------------------------|
|
|
||||||
tripod: Tripod (manage photos on Apple's iPod)
|
|
||||||
tripod:
|
|
||||||
tripod: Tripod is a QT application allowing you to display, create, remove
|
|
||||||
tripod: and rename your iPod photo album.
|
|
||||||
tripod:
|
|
||||||
tripod: Homepage: http://sebruiz.net/tripod
|
|
||||||
tripod:
|
|
||||||
tripod:
|
|
||||||
tripod:
|
|
||||||
tripod:
|
|
||||||
tripod:
|
|
|
@ -1,76 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Slackware build script for tripod
|
|
||||||
# (C) 2007 Michael Wagner <lapinours@web.de>
|
|
||||||
#
|
|
||||||
# This program is free software; you can redistribute it and/or modify it
|
|
||||||
# under the terms of the GNU General Public License as published by the
|
|
||||||
# Free Software Foundation; either version 2 of the License, or (at your
|
|
||||||
# option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
||||||
# Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License along
|
|
||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
||||||
#
|
|
||||||
|
|
||||||
PRGNAM=tripod
|
|
||||||
VERSION=0.7.0
|
|
||||||
ARCH=${ARCH:-i486}
|
|
||||||
BUILD=${BUILD:-1}
|
|
||||||
TAG=${TAG:-_SBo}
|
|
||||||
CWD=$(pwd)
|
|
||||||
TMP=${TMP:-/tmp/SBo}
|
|
||||||
PKG=$TMP/package-$PRGNAM
|
|
||||||
OUTPUT=${OUTPUT:-/tmp}
|
|
||||||
|
|
||||||
DOCS="AUTHORS COPYING ChangeLog INSTALL README TODO"
|
|
||||||
|
|
||||||
if [ "$ARCH" = "i486" ]; then
|
|
||||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
|
||||||
elif [ "$ARCH" = "i686" ]; then
|
|
||||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -rf $PKG
|
|
||||||
mkdir -p $TMP $PKG $OUTPUT
|
|
||||||
cd $TMP || exit 1
|
|
||||||
rm -rf $PRGNAM-$VERSION
|
|
||||||
tar -xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1
|
|
||||||
cd $PRGNAM-$VERSION || exit 1
|
|
||||||
chown -R root:root .
|
|
||||||
chmod -R u+w,go+r-w,a-s .
|
|
||||||
|
|
||||||
# Use patch from svn to prevent from crashing
|
|
||||||
# when the first photo album is created
|
|
||||||
patch -p0 < $CWD/ipodexport.cpp.diff || exit 1
|
|
||||||
|
|
||||||
CFLAGS="$SLKCFLAGS" \
|
|
||||||
CXXFLAGS="$SLKCFLAGS" \
|
|
||||||
./configure \
|
|
||||||
--disable-debug \
|
|
||||||
build=$ARCH-slackware-linux \
|
|
||||||
|| exit 1
|
|
||||||
|
|
||||||
make || exit 1
|
|
||||||
make install DESTDIR=$PKG || exit 1
|
|
||||||
|
|
||||||
( cd $PKG
|
|
||||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
||||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
||||||
)
|
|
||||||
|
|
||||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
||||||
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
|
|
||||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
||||||
chmod 644 $PKG/usr/doc/$PRGNAM-$VERSION/*
|
|
||||||
|
|
||||||
mkdir -p $PKG/install
|
|
||||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
||||||
|
|
||||||
cd $PKG
|
|
||||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
|
|
@ -1,8 +0,0 @@
|
||||||
PRGNAM="tripod"
|
|
||||||
VERSION="0.7.0"
|
|
||||||
HOMEPAGE="http://www.sebruiz.net/tripod/"
|
|
||||||
DOWNLOAD="http://tripod.googlecode.com/files/tripod-0.7.0.tar.bz2"
|
|
||||||
MD5SUM="e1f42c0d6587c4aca0372d325b0686c2"
|
|
||||||
MAINTAINER="Michael Wagner"
|
|
||||||
EMAIL="lapinours@web.de"
|
|
||||||
APPROVED="BP{k},rworkman"
|
|
Loading…
Reference in a new issue