| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xcave/xcave-2.3.2.ebuild,v 1.2 2010/06/21 15:54:25 ssuominen Exp $
|
| 4 |
|
| 5 |
EAPI=2
|
| 6 |
inherit autotools
|
| 7 |
|
| 8 |
DESCRIPTION="View and manage contents of your wine cellar"
|
| 9 |
HOMEPAGE="http://xcave.free.fr/index-en.php"
|
| 10 |
SRC_URI="http://${PN}.free.fr/backbone.php?what=download/${P}.tar.gz"
|
| 11 |
|
| 12 |
LICENSE="GPL-2"
|
| 13 |
SLOT="0"
|
| 14 |
KEYWORDS="~amd64 ~x86"
|
| 15 |
IUSE=""
|
| 16 |
|
| 17 |
RDEPEND=">=x11-libs/gtk+-2.8:2
|
| 18 |
>=gnome-base/libglade-2.6
|
| 19 |
dev-libs/libxml2"
|
| 20 |
DEPEND="${RDEPEND}
|
| 21 |
virtual/pkgconfig
|
| 22 |
sys-devel/gettext
|
| 23 |
dev-util/intltool"
|
| 24 |
|
| 25 |
src_prepare() {
|
| 26 |
echo src/xcave_supp.c > po/POTFILES.skip
|
| 27 |
# intltoolize --force --copy --automake || die
|
| 28 |
eautoreconf
|
| 29 |
}
|
| 30 |
|
| 31 |
src_install() {
|
| 32 |
emake DESTDIR="${D}" install || die
|
| 33 |
dodoc ChangeLog TODO
|
| 34 |
rm -rf "${D}"/usr/doc
|
| 35 |
}
|