This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
# Copyright 2009, 2010, 2011 Hong Hao <oahong@gmail.com> |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
|
| 4 |
MY_PNV=${PNV/-pre/~pre} |
| 5 |
|
| 6 |
SUMMARY="A highly customizable vte-based terminal emulator" |
| 7 |
HOMEPAGE="http://www.calno.com/${PN}" |
| 8 |
DOWNLOADS="${HOMEPAGE}/${MY_PNV}.tar.gz" |
| 9 |
|
| 10 |
LICENCES="GPL-2" |
| 11 |
SLOT="0" |
| 12 |
PLATFORMS="~amd64 ~x86" |
| 13 |
MYOPTIONS="( gtk gtk3 ) [[ number-selected = exactly-one ]]" |
| 14 |
|
| 15 |
DEPENDENCIES=" |
| 16 |
build: |
| 17 |
dev-util/pkg-config |
| 18 |
build+run: |
| 19 |
dev-libs/glib:2 |
| 20 |
gtk? ( dev-libs/vte:0 x11-libs/gtk+:2 ) |
| 21 |
gtk3? ( dev-libs/vte:3.0 x11-libs/gtk+:3 ) |
| 22 |
" |
| 23 |
|
| 24 |
BUGS_TO="oahong@gmail.com" |
| 25 |
REMOTE_IDS="freshmeat:evilvte" |
| 26 |
UPSTREAM_CHANGELOG="${HOMEPAGE}/ChangeLog" |
| 27 |
|
| 28 |
WORK=${WORKBASE}/${MY_PNV} |
| 29 |
|
| 30 |
DEFAULT_SRC_COMPILE_PARAMS=( -j1 ) |
| 31 |
|
| 32 |
src_configure() { |
| 33 |
local gtk_version |
| 34 |
option gtk && gtk_version="2.0" |
| 35 |
option gtk3 && gtk_version="3.0" |
| 36 |
edo ./configure --prefix=/usr \ |
| 37 |
--with-gtk=${gtk_version} |
| 38 |
} |