mirror of
https://github.com/gryf/gryf-overlay.git
synced 2026-03-10 04:55:47 +01:00
Added grafx2 DeluxePaint alike bitmap editor
This commit is contained in:
1
media-gfx/grafx2/Manifest
Normal file
1
media-gfx/grafx2/Manifest
Normal file
@@ -0,0 +1 @@
|
|||||||
|
EBUILD grafx2-9999.ebuild 1298 RMD160 618ce2c1b30338b86102526791e1482de975c4a3 SHA1 24e0a39db67a146a8c59e5d23f754d03a8408481 SHA256 6ae22d1b0f53228f5a2e9fd6c4bb52ea74becadaf6e5a0a639908a81865cd8c9
|
||||||
56
media-gfx/grafx2/grafx2-9999.ebuild
Normal file
56
media-gfx/grafx2/grafx2-9999.ebuild
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
# Copyright 1999-2012 Gentoo Foundation
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
# $Header: $
|
||||||
|
|
||||||
|
EAPI=4
|
||||||
|
|
||||||
|
inherit subversion
|
||||||
|
|
||||||
|
DESCRIPTION="Bitmap paint program inspired by Deluxe Paint and Brilliance"
|
||||||
|
HOMEPAGE="https://code.google.com/p/grafx2/"
|
||||||
|
ESVN_REPO_URI="http://${PN}.googlecode.com/svn/trunk"
|
||||||
|
|
||||||
|
LICENSE="GNU GPL v2"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~x86 ~amd64"
|
||||||
|
IUSE="lua truetype"
|
||||||
|
|
||||||
|
DEPEND=">=media-libs/libsdl-1.2
|
||||||
|
>=sys-devel/make-3.80
|
||||||
|
>=media-libs/sdl-image-1.2
|
||||||
|
>=media-libs/libpng-1.4
|
||||||
|
truetype? ( media-libs/sdl-ttf )
|
||||||
|
lua? ( >=dev-lang/lua-5.1 )"
|
||||||
|
RDEPEND="${DEPEND}"
|
||||||
|
|
||||||
|
src_compile() {
|
||||||
|
cd src
|
||||||
|
make || die
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
make DESTDIR="${D}" install || die
|
||||||
|
dodoc doc/*
|
||||||
|
dobin bin/grafx2
|
||||||
|
|
||||||
|
insinto /usr/share/${PN}/fonts
|
||||||
|
doins share/grafx2/fonts/*.{png,gif,ttf}
|
||||||
|
|
||||||
|
if use lua; then
|
||||||
|
insinto /usr/share/${PN}/scripts
|
||||||
|
doins share/grafx2/scripts/*.lua
|
||||||
|
for dn in brush demo libs palette picture; do
|
||||||
|
insinto /usr/share/${PN}/scripts/samples_2.4/${dn}
|
||||||
|
doins share/grafx2/scripts/samples_2.4/${dn}/*.lua
|
||||||
|
done
|
||||||
|
insinto /usr/share/${PN}/scripts/samples_2.4/demo/brush
|
||||||
|
doins share/grafx2/scripts/samples_2.4/demo/brush/*.lua
|
||||||
|
fi
|
||||||
|
|
||||||
|
insinto /usr/share/${PN}/skins
|
||||||
|
doins share/grafx2/skins/*.{png,gif}
|
||||||
|
insinto /usr/share/${PN}
|
||||||
|
doins share/grafx2/*.{png,gif,ini}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user