blob: 0159c45e52f4c5bbd574de2f7f276f0b24e882d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-thinice/gtk-engines-thinice-2.0.2-r1.ebuild,v 1.14 2004/10/04 20:23:21 pvdabeel Exp $
inherit gtk-engines2
GTK1_VER="1.0.4"
GTK2_VER="${PV}"
GTK1_PN=${PN/gtk-engines-thinice/gtk-thinice-theme}
GTK2_PN=${PN/gtk-engines-thinice/gtk-thinice-engine}
IUSE=""
DESCRIPTION="GTK+1 and GTK+2 ThinIce Theme Engine"
SRC_URI="mirror://sourceforge/thinice/${GTK1_PN}-${GTK1_VER}.tar.gz
mirror://sourceforge/thinice/${GTK2_PN}-${GTK2_VER}.tar.gz"
HOMEPAGE="http://thinice.sourceforge.net/"
KEYWORDS="x86 amd64 hppa sparc alpha ia64 mips ppc"
LICENSE="GPL-2"
SLOT="2"
GTK1_S=${WORKDIR}/${GTK1_PN}-${GTK1_VER}
GTK2_S=${WORKDIR}/${GTK2_PN}-${GTK2_VER}
src_unpack() {
unpack ${A}
if [ -d "${GTK1_S}" -a "${ARCH}" = "amd64" ]; then
cd ${GTK1_S}
aclocal
autoheader
WANT_AUTOMAKE=1.4 automake -a -c
autoconf
libtoolize -c -f
fi
}
|