36 lines
770 B
Bash
36 lines
770 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/x11-wm/dwm/dwm-6.0.ebuild,v 1.13 2014/11/20 11:47:14 jer Exp $
|
|
|
|
EAPI=5
|
|
inherit eutils toolchain-funcs git-2
|
|
|
|
DESCRIPTION="manage digitech products like xedit"
|
|
HOMEPAGE="http://desowin.org/gdigi/"
|
|
SRC_URI=""
|
|
EGIT_REPO_URI=${EGIT_REPO_URI:="https://github.com/desowin/gdigi.git"}
|
|
EGIT_BRANCH="master"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd"
|
|
IUSE=""
|
|
|
|
RDEPEND="
|
|
x11-libs/gtk+
|
|
dev-libs/libxml2
|
|
dev-libs/expat
|
|
media-libs/alsa-lib
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|
|
|
|
src_install() {
|
|
mkdir -p "${D}/usr/bin"
|
|
mkdir -p "${D}/usr/share/applications"
|
|
mkdir -p "${D}/usr/share/icons"
|
|
|
|
einstall DESTDIR=${D} install
|
|
}
|