blob: 7b9fe3163766451274f908d3be0bb8575ce0fd29 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/gwine/gwine-0.7.1.ebuild,v 1.6 2005/03/13 11:34:53 vapier Exp $
inherit perl-module
DESCRIPTION="Gnome application to manage your wine cellar"
HOMEPAGE="http://home.gna.org/gwine/"
SRC_URI="http://download.gna.org/gwine/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=dev-lang/perl-5.8.0
>=dev-perl/glib-perl-0.90
>=dev-perl/gtk2-perl-0.90
>=dev-perl/gnome2-perl-0.28
dev-perl/DateTime"
src_compile() {
cp Makefile.PL Makefile.PL.old
sed -e 's#. "$path" .#. "/usr/share/pixmaps" .#' Makefile.PL.old >Makefile.PL
perl Makefile.PL ${myconf} \
PREFIX=${D}/usr INSTALLDIRS=vendor
}
|