diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-04-05 12:11:38 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-04-05 12:15:21 +0200 |
commit | fc1d0e5bfb486929498ef7ff8a22758da5a4379c (patch) | |
tree | 375cf5ad7b52b4be9a67011ac9189a58e7b6fa80 /x11-misc | |
parent | dev-ruby/ruby-webkit-gtk: Remove last-rited pkg, #608608 (diff) | |
download | gentoo-fc1d0e5bfb486929498ef7ff8a22758da5a4379c.tar.gz gentoo-fc1d0e5bfb486929498ef7ff8a22758da5a4379c.tar.bz2 gentoo-fc1d0e5bfb486929498ef7ff8a22758da5a4379c.zip |
x11-misc/oroborus-desklaunch: Remove last-rited pkg, #611406
Diffstat (limited to 'x11-misc')
4 files changed, 0 insertions, 84 deletions
diff --git a/x11-misc/oroborus-desklaunch/Manifest b/x11-misc/oroborus-desklaunch/Manifest deleted file mode 100644 index c2e0dc76bdc4..000000000000 --- a/x11-misc/oroborus-desklaunch/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST desklaunch_1.1.8.tar.gz 14258 SHA256 8cb14b959f80ab119d9a420494c36d6fa80108d3a5febd98cdd76713a1b73dd3 SHA512 297da9b7a1cc02f29ee8e8646cb4413b90975e6aa9affa4c54ac0427491284ea7dfb4e0be30f9126629f1e765b47beb5f4f214415fcc42472a6e2fda72e47270 WHIRLPOOL 415128a5165202b681d01844f71eebf92340851a948fe6af90a663d793b1ce7065a866df3a8569d08dc89848484ac481caeaeabc47bdc36745f2d05fbad3883c diff --git a/x11-misc/oroborus-desklaunch/files/oroborus-desklaunch-1.1.7-gentoo.diff b/x11-misc/oroborus-desklaunch/files/oroborus-desklaunch-1.1.7-gentoo.diff deleted file mode 100644 index a6d833bcfd3d..000000000000 --- a/x11-misc/oroborus-desklaunch/files/oroborus-desklaunch-1.1.7-gentoo.diff +++ /dev/null @@ -1,39 +0,0 @@ ---- Makefile -+++ Makefile -@@ -1,29 +1,26 @@ --CC = gcc --CFLAGS = -g -O2 -Wall --XROOT = /usr/X11R6 --INCLUDES = -I$(XROOT)/include --LIBS = -lX11 -lXext -lXpm --LDPATH = -L$(XROOT)/lib -+INCLUDES = `pkg-config --cflags x11 xext xpm` -+LIBS = `pkg-config --libs x11 xext xpm` - --DESTDIR = - PROG = desklaunch - PREFIX = $(DESTDIR)/usr -+MANDIR = $(PREFIX)/share/man - RCFILE = .$(PROG)rc - DEFINES = -DRCFILE=\"$(RCFILE)\" #-DDEBUG - - OBJS = $(PROG).o -+MAN = debian/$(PROG).1 - - all: $(PROG) - - $(PROG): $(OBJS) -- $(CC) $(OBJS) $(LDPATH) $(LIBS) -o $@ -+ $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) -o $@ - - $(OBJS): %.o: %.c $(HEADERS) - $(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -c $< -o $@ - - install: all -- install $(PROG) $(PREFIX)/bin -- install -d $(PREFIX)/share/$(PROG) -+ install -D -m 755 $(PROG) $(PREFIX)/bin/$(PROG) -+ install -D -m 644 $(MAN) $(MANDIR)/man1/$(PROG).1 - - uninstall: - rm -f $(PREFIX)/bin/$(PROG) diff --git a/x11-misc/oroborus-desklaunch/metadata.xml b/x11-misc/oroborus-desklaunch/metadata.xml deleted file mode 100644 index 74e09639abce..000000000000 --- a/x11-misc/oroborus-desklaunch/metadata.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<!-- maintainer-needed --> -<longdescription> - DeskLaunch is a small utility for creating desktop icons using pixmaps. - A simple click will launch the desired application. - </longdescription> -</pkgmetadata> diff --git a/x11-misc/oroborus-desklaunch/oroborus-desklaunch-1.1.8.ebuild b/x11-misc/oroborus-desklaunch/oroborus-desklaunch-1.1.8.ebuild deleted file mode 100644 index 55fa59ad47e6..000000000000 --- a/x11-misc/oroborus-desklaunch/oroborus-desklaunch-1.1.8.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils toolchain-funcs - -MY_PN=${PN/oroborus-//} - -DESCRIPTION="utility for creating desktop icons for Oroborus" -HOMEPAGE="http://www.oroborus.org" -SRC_URI="mirror://debian/pool/main/d/${MY_PN}/${MY_PN}_${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="x11-libs/libX11 - x11-libs/libXext - x11-libs/libXpm - !x11-wm/oroborus-extras" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S=${WORKDIR}/${MY_PN}-${PV} -DOCS=( README debian/changelog debian/example_rc ) - -pkg_setup() { - tc-export CC -} - -src_prepare() { - epatch "${FILESDIR}"/${PN}-1.1.7-gentoo.diff -} |