blob: 344486c5c40212afbe9e1946c4ff5ebf9d53319b (
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
35
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/matew/matew-1.9.ebuild,v 1.8 2010/01/01 18:11:35 ssuominen Exp $
DESCRIPTION="Make Album The Easy Way"
HOMEPAGE="http://matew.sourceforge.net/"
SRC_URI="mirror://sourceforge/matew/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}
media-gfx/imagemagick
app-shells/bash
sys-apps/coreutils
"
src_install() {
dobin "${S}"/src/matew "${S}"/src/matew-cleanup "${S}"/src/matew-wizard
insinto /etc/matew/styles
doins "${S}"/src/styles/*
insinto /etc/matew/languages
doins "${S}"/src/languages/*
dodoc "${S}"/doc/AUTHOR "${S}"/doc/ChangeLog "${S}"/doc/README \
"${S}"/doc/THANKS "${S}"/doc/TODO
doman "${S}"/doc/man/matew.1.gz
}
pkg_postinst() {
elog "Matew files installed successfully!"
elog "Run matew-wizard and read instructions."
}
|