mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 10:47:14 +08:00
qt rebuild to remove debug from regular version, loudmouth update openssl stack, enlightenmnet packages removed
This commit is contained in:
parent
3b285816bd
commit
a3e1539246
@ -1,52 +0,0 @@
|
||||
#
|
||||
# Chakra Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=eet-svn
|
||||
pkgver=69753
|
||||
pkgrel=2
|
||||
pkgdesc="A data storage and compression library"
|
||||
arch=('x86_64')
|
||||
url="http://www.enlightenment.org"
|
||||
license=('BSD')
|
||||
depends=('gnutls' 'libjpeg-turbo' 'openssl' 'eina-svn')
|
||||
makedepends=('subversion')
|
||||
options=(!libtool)
|
||||
|
||||
# Undash when updating
|
||||
_svntrunk="http://svn.enlightenment.org/svn/e/trunk/eet"
|
||||
_svnmod="eet"
|
||||
|
||||
build() {
|
||||
cd $srcdir
|
||||
|
||||
msg "Connecting to $_svntrunk SVN server...."
|
||||
if [ -d $_svnmod/.svn ]; then
|
||||
(cd $_svnmod && svn up -r $pkgver)
|
||||
else
|
||||
svn co http://svn.enlightenment.org/svn/e/trunk/eet --config-dir ./ -r $pkgver $_svnmod
|
||||
fi
|
||||
|
||||
msg "SVN checkout done or server timeout"
|
||||
msg "Starting make..."
|
||||
|
||||
cp -r $_svnmod $_svnmod-build
|
||||
cd $_svnmod-build
|
||||
|
||||
./autogen.sh --prefix=/usr --enable-openssl --disable-gnutls \
|
||||
--enable-amalgamation
|
||||
make
|
||||
}
|
||||
|
||||
package(){
|
||||
cd $srcdir/$_svnmod-build
|
||||
make DESTDIR=$pkgdir install
|
||||
|
||||
# install license files
|
||||
install -Dm644 $srcdir/$_svnmod-build/COPYING \
|
||||
$pkgdir/usr/share/licenses/$pkgname/COPYING
|
||||
|
||||
rm -r $srcdir/$_svnmod-build
|
||||
|
||||
}
|
@ -1,47 +0,0 @@
|
||||
#
|
||||
# Chakra Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname=eina-svn
|
||||
pkgver=69763
|
||||
pkgrel=1
|
||||
pkgdesc="E17 file chunk reading/writing library"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.enlightenment.org"
|
||||
license=('LGPL2')
|
||||
depends=('glibc')
|
||||
makedepends=('subversion')
|
||||
options=('!libtool' '!emptydirs')
|
||||
|
||||
# Undash when updating
|
||||
_svntrunk="http://svn.enlightenment.org/svn/e/trunk/eina"
|
||||
_svnmod="eina"
|
||||
|
||||
build() {
|
||||
cd $srcdir
|
||||
|
||||
msg "Connecting to $_svntrunk SVN server...."
|
||||
if [ -d $_svnmod/.svn ]; then
|
||||
(cd $_svnmod && svn up -r $pkgver)
|
||||
else
|
||||
svn co http://svn.enlightenment.org/svn/e/trunk/eina --config-dir ./ -r $pkgver $_svnmod
|
||||
fi
|
||||
|
||||
msg "SVN checkout done or server timeout"
|
||||
msg "Starting make..."
|
||||
|
||||
cp -r $_svnmod $_svnmod-build
|
||||
cd $_svnmod-build
|
||||
|
||||
./autogen.sh --prefix=/usr --enable-amalgamation
|
||||
make
|
||||
}
|
||||
|
||||
package(){
|
||||
cd $srcdir/$_svnmod-build
|
||||
make DESTDIR=$pkgdir install
|
||||
|
||||
rm -r $srcdir/$_svnmod-build
|
||||
|
||||
}
|
@ -1,43 +0,0 @@
|
||||
pkgname=esound
|
||||
pkgver=0.2.41
|
||||
pkgrel=3
|
||||
pkgdesc="Enlightened Sound Daemon"
|
||||
arch=(i686 x86_64)
|
||||
url="http://www.tux.org/~ricdude/EsounD.html"
|
||||
license=('LGPL')
|
||||
depends=('audiofile')
|
||||
provides=("esd=$pkgver")
|
||||
replaces=('esd')
|
||||
conflicts=('esd')
|
||||
backup=('etc/esd.conf')
|
||||
options=('!libtool')
|
||||
source=("http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2"
|
||||
esd)
|
||||
md5sums=('8d9aad3d94d15e0d59ba9dc0ea990c6c'
|
||||
'a4c76e7c7f75b201ea7ab6fb15b47472')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
# alsa drain fix
|
||||
sed -i 's/drain/drop/' audio_alsa09.c
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--disable-static \
|
||||
--with-audiofile \
|
||||
--without-libwrap \
|
||||
--enable-alsa \
|
||||
--disable-artstest
|
||||
make CFLAGS="$CFLAGS -lm"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
make DESTDIR="$pkgdir/" install
|
||||
|
||||
# daemon
|
||||
install -Dm755 ../esd "$pkgdir/etc/rc.d/esd"
|
||||
}
|
37
esound/esd
37
esound/esd
@ -1,37 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
. /etc/rc.conf
|
||||
. /etc/rc.d/functions
|
||||
|
||||
PID=`pidof -o %PPID /usr/bin/esd`
|
||||
case "$1" in
|
||||
start)
|
||||
stat_busy "Starting Esound Daemon"
|
||||
if [ -z "$PID" ]; then
|
||||
/usr/bin/esd -nobeeps &
|
||||
fi
|
||||
if [ ! -z "$PID" -o $? -gt 0 ]; then
|
||||
stat_fail
|
||||
else
|
||||
add_daemon esd
|
||||
stat_done
|
||||
fi
|
||||
;;
|
||||
stop)
|
||||
stat_busy "Stopping Esound Daemon"
|
||||
[ ! -z "$PID" ] && kill $PID &> /dev/null
|
||||
if [ $? -gt 0 ]; then
|
||||
stat_fail
|
||||
else
|
||||
rm_daemon esd
|
||||
stat_done
|
||||
fi
|
||||
;;
|
||||
restart)
|
||||
$0 stop
|
||||
sleep 1
|
||||
$0 start
|
||||
;;
|
||||
*)
|
||||
echo "usage: $0 {start|stop|restart}"
|
||||
esac
|
@ -1,11 +0,0 @@
|
||||
--- esound-0.2.38/audio_alsa09.c.old 2007-06-11 12:22:24.000000000 +0200
|
||||
+++ esound-0.2.38/audio_alsa09.c 2007-06-11 12:22:49.000000000 +0200
|
||||
@@ -486,7 +486,7 @@ void esd_audio_flush(void)
|
||||
}
|
||||
|
||||
if (alsa_playback_handle != NULL)
|
||||
- snd_pcm_drain( alsa_playback_handle );
|
||||
+ snd_pcm_drop( alsa_playback_handle );
|
||||
|
||||
if (alsadbg)
|
||||
print_state();
|
@ -1,22 +0,0 @@
|
||||
# $Id: PKGBUILD 63448 2010-01-17 14:53:27Z jgc $
|
||||
# Maintainer: damir <damir@archlinux.org>
|
||||
|
||||
pkgname=libvisual-plugins
|
||||
pkgver=0.4.0
|
||||
pkgrel=4
|
||||
pkgdesc="plugins for libvisual"
|
||||
arch=("i686" "x86_64")
|
||||
license=('GPL')
|
||||
url="http://www.localhost.nl/~synap/libvisual/"
|
||||
depends=('libvisual>=0.4.0' 'gtk2>=2.18.6' 'mesa>=7.7' 'alsa-lib' 'esound' 'jack-audio-connection-kit')
|
||||
makedepends=(pkgconfig)
|
||||
source=("http://downloads.sourceforge.net/sourceforge/libvisual/libvisual-plugins-${pkgver}.tar.gz")
|
||||
md5sums=('4330e9287f9d6fae02f482f428a1e77b')
|
||||
options=(!libtool)
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
./configure --prefix=/usr --enable-alsa --disable-gstreamer-plugin || return 1
|
||||
make || return 1
|
||||
make DESTDIR="${pkgdir}" install || return 1
|
||||
}
|
@ -4,41 +4,34 @@
|
||||
# maintainer abveritas[at]chakra-project[dot]org
|
||||
|
||||
pkgname=loudmouth
|
||||
pkgver=1.4.3
|
||||
pkgrel=2
|
||||
pkgver=1.5.0
|
||||
_pkgver=1.5.0-20121201
|
||||
pkgrel=1
|
||||
pkgdesc="A lightweight Jabber client library written in C/Glib"
|
||||
arch=('x86_64')
|
||||
license=('LGPL')
|
||||
url="http://developer.imendio.com/wiki/Loudmouth"
|
||||
url="http://mcabber.com/"
|
||||
depends=('glib2>=2.18.3' 'openssl' 'gnutls')
|
||||
options=('!libtool')
|
||||
makedepends=('perlxml' 'pkg-config')
|
||||
source=("http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.4/${pkgname}-${pkgver}.tar.bz2"
|
||||
'01-fix-sasl-md5-digest-uri.patch'
|
||||
'03-drop-stanzas-on-fail.patch'
|
||||
'04-use-pkg-config-for-gnutls.patch')
|
||||
md5sums=('55339ca42494690c3942ee1465a96937'
|
||||
'dc799cea18b24847b1e008c7424010a3'
|
||||
'b7b2d81b01a5eee5fd5e21cae67b4af7'
|
||||
'bffb25b9551df43255fe1706588582f3')
|
||||
source=("http://mcabber.com/files/loudmouth-${_pkgver}.tar.bz2")
|
||||
md5sums=('c03025069d376049eee8af4fbaf4d9cf')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
cd "${srcdir}/${pkgname}-${_pkgver}"
|
||||
|
||||
patch -p1 -i "${srcdir}/01-fix-sasl-md5-digest-uri.patch"
|
||||
patch -p1 -i "${srcdir}/03-drop-stanzas-on-fail.patch"
|
||||
patch -p1 -i "${srcdir}/04-use-pkg-config-for-gnutls.patch"
|
||||
|
||||
./autogen.sh -n disable gtk-doc
|
||||
./configure --prefix=/usr \
|
||||
--disable-debug \
|
||||
--disable-gtk-doc \
|
||||
--with-ssl=openssl \
|
||||
--libdir=/usr/lib \
|
||||
--disable-static
|
||||
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
cd "${srcdir}/${pkgname}-${_pkgver}"
|
||||
|
||||
make DESTDIR="${pkgdir}" install
|
||||
}
|
||||
|
@ -6,7 +6,7 @@
|
||||
pkgbase=qt
|
||||
pkgname=('qt' 'qt-private-headers')
|
||||
pkgver=4.8.4
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
arch=('x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
@ -88,7 +88,6 @@ build() {
|
||||
-reduce-relocations \
|
||||
-dbus-linked \
|
||||
-no-openvg \
|
||||
-separate-debug-info \
|
||||
-xcursor
|
||||
make
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user