diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-04-02 21:52:30 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-04-02 21:52:30 +0000 |
commit | 1ba53fb4e10e3c53502c4a6598b999ae051b20c3 (patch) | |
tree | 0022f0ba96c977d112c8934a72ec9267b43fdb66 /x11-misc/xosview | |
parent | Remove pointless compiler version check (bug #464118 by SN (Enlik)). (diff) | |
download | gentoo-2-1ba53fb4e10e3c53502c4a6598b999ae051b20c3.tar.gz gentoo-2-1ba53fb4e10e3c53502c4a6598b999ae051b20c3.tar.bz2 gentoo-2-1ba53fb4e10e3c53502c4a6598b999ae051b20c3.zip |
Version bump thanks to Lars Wendler.
(Portage version: 2.2.0_alpha171/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'x11-misc/xosview')
-rw-r--r-- | x11-misc/xosview/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xosview/xosview-1.14.ebuild | 50 |
2 files changed, 56 insertions, 1 deletions
diff --git a/x11-misc/xosview/ChangeLog b/x11-misc/xosview/ChangeLog index df7020da4428..77fa6be967c7 100644 --- a/x11-misc/xosview/ChangeLog +++ b/x11-misc/xosview/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xosview # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xosview/ChangeLog,v 1.70 2013/03/11 12:18:53 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xosview/ChangeLog,v 1.71 2013/04/02 21:52:30 jer Exp $ + +*xosview-1.14 (02 Apr 2013) + + 02 Apr 2013; Jeroen Roovers <jer@gentoo.org> +xosview-1.14.ebuild: + Version bump thanks to Lars Wendler. *xosview-1.13 (11 Mar 2013) diff --git a/x11-misc/xosview/xosview-1.14.ebuild b/x11-misc/xosview/xosview-1.14.ebuild new file mode 100644 index 000000000000..99087b871a1a --- /dev/null +++ b/x11-misc/xosview/xosview-1.14.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xosview/xosview-1.14.ebuild,v 1.1 2013/04/02 21:52:30 jer Exp $ + +EAPI=4 + +inherit eutils toolchain-funcs + +DESCRIPTION="X11 operating system viewer" +HOMEPAGE="http://www.pogo.org.uk/~mark/xosview/" +SRC_URI="http://www.pogo.org.uk/~mark/${PN}/releases/${P}.tar.gz" + +LICENSE="GPL-2 BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="suid" + +COMMON_DEPS="x11-libs/libX11 + x11-libs/libXpm + x11-libs/libXt" +RDEPEND="${COMMON_DEPS} + media-fonts/font-misc-misc" +DEPEND="${COMMON_DEPS} + x11-proto/xproto" + +src_prepare() { + sed -e 's:lib/X11/app:share/X11/app:g' \ + -i xosview.1 || die + tc-export CXX +} + +src_compile() { + emake OPTFLAGS="${CXXFLAGS}" +} + +src_install() { + dobin ${PN} + use suid && fperms 4755 /usr/bin/${PN} + insinto /usr/share/X11/app-defaults + newins Xdefaults XOsview + doman *.1 + dodoc CHANGES README.linux TODO +} + +pkg_postinst() { + if ! use suid ; then + ewarn "If you want to use serial meters ${PN} needs to be executed as root." + ewarn "Please see ${EPREFIX}/usr/share/doc/${PF}/README.linux for details." + fi +} |