blob: ccd2881c3003e7e5297c53cf4a9840becdd5ce0c (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/shared-mime-info/shared-mime-info-0.9.ebuild,v 1.5 2003/01/26 23:32:26 nall Exp $
DESCRIPTION="The Shared MIME-info Database specification."
HOMEPAGE="http://www.freedesktop.org"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc ~ppc"
DEPEND=">=sys-apps/gawk-3.1.0
>=dev-libs/glib-2.0.4
>=dev-libs/libxml2-2.4.23"
SRC_URI="http://www.freedesktop.org/standards/shared-mime-info/${P}.tar.gz"
S=${WORKDIR}/${P}
src_compile() {
./configure \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
}
src_install () {
einstall
}
|