blob: 9e4aa8720d255a26fe8ee0fcf2d3f27ab7665b54 (
plain)
1 # Packager: Johannes Winkelmann, jw at tks6 dot net
2 # Maintainer: Johannes Winkelmann, jw at tks6 dot net
3 # Description: Port of KDE's Plastik style to pure Qt
4 # URL: http://static.int.pl/~mig21/dev/releases/polymer
5 # Deoends on: qt3
6
7 name=polymer
8 version=0.3.2
9 release=1
10 source=(http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/$name-$version.tar.bz2)
11
12 build() {
13 export QTDIR=/usr/share/qt
14 cd $name-$version
15 ./configure --prefix=/usr --disable-nls
16 make
17
18 mkdir -p $PKG/usr/bin
19 cp config/polymer-config $PKG/usr/bin
20 mkdir -p $PKG/$QTDIR/plugins/styles
21 cp style/libpolymer* $PKG/$QTDIR/plugins/styles
22
23 }
|