summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago M. Mola <coldwind@gentoo.org>2008-03-23 00:16:35 +0000
committerSantiago M. Mola <coldwind@gentoo.org>2008-03-23 00:16:35 +0000
commit04fc2ed3b2138c67a6c2c51c7dbece5f84fbac95 (patch)
tree5510aefdb47b312427c59adcfede7dc62d6f5442 /x11-misc/apwal
parentbump to 1.3.4, introduce asyncns USE flag (diff)
downloadgentoo-2-04fc2ed3b2138c67a6c2c51c7dbece5f84fbac95.tar.gz
gentoo-2-04fc2ed3b2138c67a6c2c51c7dbece5f84fbac95.tar.bz2
gentoo-2-04fc2ed3b2138c67a6c2c51c7dbece5f84fbac95.zip
Big clean up and amd64 stable.
(Portage version: 2.1.4.4)
Diffstat (limited to 'x11-misc/apwal')
-rw-r--r--x11-misc/apwal/ChangeLog7
-rw-r--r--x11-misc/apwal/apwal-0.4.5.ebuild22
2 files changed, 15 insertions, 14 deletions
diff --git a/x11-misc/apwal/ChangeLog b/x11-misc/apwal/ChangeLog
index 3a3c40c45c07..fb73930798e6 100644
--- a/x11-misc/apwal/ChangeLog
+++ b/x11-misc/apwal/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-misc/apwal
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/apwal/ChangeLog,v 1.9 2007/08/02 12:40:10 uberlord Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/apwal/ChangeLog,v 1.10 2008/03/23 00:16:35 coldwind Exp $
+
+ 23 Mar 2008; Santiago M. Mola <coldwind@gentoo.org> apwal-0.4.5.ebuild:
+ Big clean up and amd64 stable.
02 Aug 2007; Roy Marples <uberlord@gentoo.org> apwal-0.4.5.ebuild:
Keyworded ~x86-fbsd, #156902 thanks to Marc Kowarsky.
diff --git a/x11-misc/apwal/apwal-0.4.5.ebuild b/x11-misc/apwal/apwal-0.4.5.ebuild
index a5b92c526db9..9997171a5765 100644
--- a/x11-misc/apwal/apwal-0.4.5.ebuild
+++ b/x11-misc/apwal/apwal-0.4.5.ebuild
@@ -1,30 +1,32 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/apwal/apwal-0.4.5.ebuild,v 1.4 2007/08/02 12:40:10 uberlord Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/apwal/apwal-0.4.5.ebuild,v 1.5 2008/03/23 00:16:35 coldwind Exp $
-S="${WORKDIR}/${PN}"
DESCRIPTION="A simple application launcher and combined editor"
HOMEPAGE="http://apwal.free.fr/"
SRC_URI="http://apwal.free.fr/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ppc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=x11-libs/gtk+-2.0
dev-libs/libxml2"
DEPEND="${RDEPEND}
- >=sys-apps/sed-4
dev-util/pkgconfig"
+S=${WORKDIR}/${PN}
+
src_unpack() {
unpack ${A}
- cd ${S}
+ cd "${S}"
# ugly hardcoded cflags
+ # and prevent strip
sed -i \
- -e "s:-O2:${CFLAGS}:" src/Makefile \
+ -e "s:-O2:${CFLAGS}:" \
+ -e "/strip/d" src/Makefile \
|| die "sed src/Makefile failed"
# make parallel make happy
sed -i \
@@ -32,12 +34,8 @@ src_unpack() {
|| die "sed Makefile failed"
}
-src_compile() {
- emake || die "emake failed"
-}
-
src_install() {
- dobin src/apwal || die "dobin failed"
+ dobin src/apwal || die "dobin failed"
dosym apwal /usr/bin/apwal-editor || die "dosym failed"
dodoc ABOUT Changelog FAQ README || die "dodoc failed"
}