Added libindicator, gtk2 version

This commit is contained in:
jolupa 2019-08-01 11:20:05 +02:00
parent c5541691e0
commit 66a047aeec
3 changed files with 24 additions and 21 deletions

View File

@ -25,6 +25,10 @@ drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libindicator.so -> libindicator.so.7.0.0
lrwxrwxrwx root/root usr/lib/libindicator.so.7 -> libindicator.so.7.0.0
-rwxr-xr-x root/root usr/lib/libindicator.so.7.0.0
drwxr-xr-x root/root usr/lib/libindicator/
-rwxr-xr-x root/root usr/lib/libindicator/indicator-loader
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/indicator-0.4.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/libindicator/
-rw-r--r-- root/root usr/share/libindicator/80indicator-debugging

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/jolupalabs.pub
RWRdPtfuMX7+XJoOCEFJQfDKWHFOh8SG2a6EOWSpRhna8/lvMYZ0qmytqYIoVB9/0rCh00egUVoJ+AagpxUi7qotaqh+ATKb5Qk=
SHA256 (Pkgfile) = 02ce839bc9f2b7df7e1001f7818a9271faa88b6a472857f31442bd502c5a3d6c
SHA256 (.footprint) = 2dbb0df555ec73e057ff4cb2fcb59d84839b9c227f8d9e24b8fdb522929b83a5
SHA256 (libindicator-16.10.tar.gz) = 03bb0f6aa4c0eeefd53f040f641e42bdccb8f7b791685bbdefd2cee50d95ca51
RWRdPtfuMX7+XOLE4yoJVYAR6OROTCSSLPQ+15tdD4A+Mr9l1qfTbz4+y3WjupeDnh/E6AbRivHRBgbFE6yoqEZ1dSuGiyVlFAk=
SHA256 (Pkgfile) = 6c7d321a97f95261200f52080bed3f90e759d54f5c4d507158ae8f0fca98f9e1
SHA256 (.footprint) = 357d0072bebab77435ece420939d065ea3d4548cfec6fb5d3b267a8c18076dc1
SHA256 (libindicator-12.10.1.tar.gz) = b2d2e44c10313d5c9cd60db455d520f80b36dc39562df079a3f29495e8f9447f

View File

@ -1,28 +1,27 @@
# Description: Set of symbols and convenience functions for Ayatana indicators (GTK+ 2 library)
# Description: A set of symbols and convience functions that all indicators would like to use
# URL: https://launchpad.net/libindicator
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: graphite2 gtk xorg-libxdamage
# Maintainer: jolupa, jlpavon at me dot com
# Depends on: gtk glib ido
name=libindicator-gtk2
version=16.10
rname=libindicator
version=12.10.1
release=1
source=(http://unrealize.co.uk/source/libindicator-$version.tar.gz)
source=(https://launchpad.net/$rname/12.10/$version/+download/$rname-$version.tar.gz)
build() {
cd libindicator-$version
sed -e 's/-Werror -Wno-error=deprecated-declarations//g' -i libindicator/Makefile.am
sed -e 's/--enable-gtk-doc//g' -i autogen.sh
NOCONFIGURE=1 ./autogen.sh
CFLAGS="-Wno-deprecated -Wno-deprecated-declarations -fPIC" \
CXXFLAGS="-Wno-deprecated -Wno-deprecated-declarations -fPIC" \
cd $rname-$version
export CFLAGS="$CFLAGS -Wno-deprecated-declarations"
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/libindicator \
--sysconfdir=/etc \
--libexecdir=/usr/lib/$rname \
--disable-static \
--with-gtk=2
make -j1
make -j1 DESTDIR=$PKG install
#rm -fr $PKG/usr/lib/libdummy*
rm -fr $PKG/usr/share/libindicator
make
make DESTDIR=$PKG install
}