mirror of
https://github.com/gryf/gryf-overlay.git
synced 2026-03-11 05:25:47 +01:00
initial import
This commit is contained in:
4
x11-wm/windowmaker/Manifest
Normal file
4
x11-wm/windowmaker/Manifest
Normal file
@@ -0,0 +1,4 @@
|
||||
AUX windowmaker-gcc4.patch 210579 RMD160 74b204421aa25c0fc2a7b6bf1f0d03e792a22601 SHA1 a42e82d778dfe9400d777bf0ed7d127240a54e1c SHA256 df6563ef7fc518a3ae042a049658cb153d6ceb1e982e89a9fd313a68510dad87
|
||||
DIST WindowMaker-0.92.0.tar.gz 2758524 RMD160 b8bebed6a34696625ae0ae7c0ebcfdfc0ba09cdd SHA1 6f545356acde7e9bf4c11345ac1359b451a9d1bc SHA256 9edaa8d9ee6e6beb06f4c391c0aec5cd0e5b5494456cae2cdcfd49656177afc6
|
||||
DIST WindowMaker-extra-0.1.tar.gz 238018 RMD160 94334c2c12d20a8fd0cd2a70e54cd3689f043038 SHA1 80f34cb3af705ec0f79d727b82cef28ee50fc4e7 SHA256 acd6e1fb790485b107daf2b710da372367b41383c55d9c8bdfdac521d850edc4
|
||||
EBUILD windowmaker-0.92.0-r10.ebuild 3653 RMD160 f64b3c05ab2dde8429c97112453f24812056c45e SHA1 1e60bfdd3beddf2b9caf97cb7e7a7a0acb8c92e9 SHA256 de3de3adf1a3f437bb8c96305fc43c91f95566909e4aff6566ee81d9bc357a4b
|
||||
6536
x11-wm/windowmaker/files/windowmaker-gcc4.patch
Normal file
6536
x11-wm/windowmaker/files/windowmaker-gcc4.patch
Normal file
File diff suppressed because it is too large
Load Diff
123
x11-wm/windowmaker/windowmaker-0.92.0-r10.ebuild
Normal file
123
x11-wm/windowmaker/windowmaker-0.92.0-r10.ebuild
Normal file
@@ -0,0 +1,123 @@
|
||||
# Copyright 1999-2007 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild,v 1.5 2007/10/03 14:19:26 armin76 Exp $
|
||||
# Arch linux version of windomaker - only patch against gcc4
|
||||
#
|
||||
inherit autotools eutils gnustep-base flag-o-matic
|
||||
|
||||
S=${WORKDIR}/${P/windowm/WindowM}
|
||||
|
||||
DESCRIPTION="The fast and light GNUstep window manager"
|
||||
SRC_URI="ftp://ftp.windowmaker.info/pub/source/release/${P/windowm/WindowM}.tar.gz
|
||||
http://www.windowmaker.info/pub/source/release/WindowMaker-extra-0.1.tar.gz"
|
||||
HOMEPAGE="http://www.windowmaker.info/"
|
||||
|
||||
IUSE="gif gnustep jpeg nls png tiff modelock xinerama"
|
||||
DEPEND="x11-libs/libXv
|
||||
x11-libs/libXft
|
||||
x11-libs/libXt
|
||||
media-libs/fontconfig
|
||||
gif? ( >=media-libs/giflib-4.1.0-r3 )
|
||||
png? ( >=media-libs/libpng-1.2.1 )
|
||||
jpeg? ( >=media-libs/jpeg-6b-r2 )
|
||||
tiff? ( >=media-libs/tiff-3.6.1-r2 )
|
||||
gnustep? ( >=gnustep-base/gnustep-make-2.0 )"
|
||||
RDEPEND="${DEPEND}
|
||||
nls? ( >=sys-devel/gettext-0.10.39 )"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
||||
|
||||
src_unpack() {
|
||||
is-flag -fstack-protector && filter-flags -fstack-protector \
|
||||
&& ewarn "CFLAG -fstack-protector has been disabled, as it is known to cause bugs with WindowMaker (bug #78051)" && ebeep 2
|
||||
replace-flags "-Os" "-O2"
|
||||
replace-flags "-O3" "-O2"
|
||||
|
||||
unpack ${A}
|
||||
cd "${S}"
|
||||
epatch ${FILESDIR}/windowmaker-gcc4.patch
|
||||
|
||||
# Fix some paths
|
||||
if use gnustep; then
|
||||
egnustep_env
|
||||
fi
|
||||
for file in ${S}/WindowMaker/*menu*; do
|
||||
if [ -r $file ]; then
|
||||
if use gnustep ; then
|
||||
sed -i "s:/usr/local/GNUstep/Applications:${GNUSTEP_SYSTEM_APPS}:g" $file
|
||||
else
|
||||
sed -i "s:/usr/local/GNUstep/Applications/WPrefs.app:/usr/bin/:g;" $file
|
||||
fi
|
||||
|
||||
sed -i 's:/usr/local/share/WindowMaker:/usr/share/WindowMaker:g;' $file
|
||||
sed -i 's:/opt/share/WindowMaker:/usr/share/WindowMaker:g;' $file
|
||||
fi;
|
||||
done;
|
||||
|
||||
eautoreconf || die "eautoreconf failed"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
local myconf
|
||||
|
||||
# image format types
|
||||
# xpm is provided by X itself
|
||||
myconf="--enable-xpm $(use_enable png) $(use_enable jpeg) $(use_enable gif) $(use_enable tiff)"
|
||||
|
||||
# non required X capabilities
|
||||
myconf="${myconf} $(use_enable modelock) $(use_enable xinerama)"
|
||||
|
||||
if use gnustep ; then
|
||||
egnustep_env
|
||||
# Gentoo installs everything in System, make sure configure honors that
|
||||
export GNUSTEP_LOCAL_ROOT=${GNUSTEP_SYSTEM_ROOT}
|
||||
myconf="${myconf} --with-gnustepdir=${GNUSTEP_SYSTEM_ROOT}"
|
||||
fi
|
||||
|
||||
if use nls; then
|
||||
[ -z "$LINGUAS" ] && export LINGUAS="`ls po/*.po | sed 's:po/\(.*\)\.po$:\1:'`"
|
||||
else
|
||||
myconf="${myconf} --disable-locale"
|
||||
fi
|
||||
|
||||
# default settings with $myconf appended
|
||||
econf \
|
||||
--sysconfdir=/etc/X11 \
|
||||
--with-x \
|
||||
--enable-usermenu \
|
||||
--with-pixmapdir=/usr/share/pixmaps \
|
||||
--with-nlsdir=/usr/share/locale \
|
||||
${myconf} || die
|
||||
|
||||
emake || die "windowmaker: make has failed"
|
||||
|
||||
# WindowMaker Extra Package (themes and icons)
|
||||
cd ../WindowMaker-extra-0.1
|
||||
econf || die "windowmaker-extra: configure has failed"
|
||||
emake || die "windowmaker-extra: make has failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install || die "windowmaker: install has failed."
|
||||
|
||||
dodoc AUTHORS BUGFORM BUGS ChangeLog COPYING* INSTALL* FAQ* \
|
||||
MIRRORS README* NEWS TODO
|
||||
|
||||
# WindowMaker Extra
|
||||
cd ../WindowMaker-extra-0.1
|
||||
emake DESTDIR="${D}" install || die "windowmaker-extra: install failed"
|
||||
|
||||
newdoc README README.extra
|
||||
|
||||
# create wmaker session shell script
|
||||
echo "#!/bin/bash" > wmaker
|
||||
echo "/usr/bin/wmaker" >> wmaker
|
||||
exeinto /etc/X11/Sessions/
|
||||
doexe wmaker
|
||||
|
||||
insinto /etc/X11/dm/Sessions
|
||||
doins ${FILESDIR}/wmaker.desktop
|
||||
make_desktop_entry /usr/bin/wmaker
|
||||
}
|
||||
Reference in New Issue
Block a user