diff options
author | obache <obache@pkgsrc.org> | 2011-05-21 08:35:25 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2011-05-21 08:35:25 +0000 |
commit | 9bed02d42e1b6c1d98809e62f8deede03370937a (patch) | |
tree | 14089c642bbd8973ddf990ff03c21904e7ca9a39 /x11/ede | |
parent | 0ec7ed272ea694e7194f15d0ff96e05ade369d69 (diff) | |
download | pkgsrc-9bed02d42e1b6c1d98809e62f8deede03370937a.tar.gz |
* set LICENSE=gnu-gpl-v2
* add user-destdir installation support.
Diffstat (limited to 'x11/ede')
-rw-r--r-- | x11/ede/Makefile | 7 | ||||
-rw-r--r-- | x11/ede/distinfo | 3 | ||||
-rw-r--r-- | x11/ede/patches/patch-makeinclude.in | 31 |
3 files changed, 39 insertions, 2 deletions
diff --git a/x11/ede/Makefile b/x11/ede/Makefile index eafd7da4f5e..5836a997998 100644 --- a/x11/ede/Makefile +++ b/x11/ede/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2011/04/22 13:45:02 obache Exp $ +# $NetBSD: Makefile,v 1.14 2011/05/21 08:35:25 obache Exp $ # DISTNAME= ede-1.0.4 @@ -10,6 +10,9 @@ EXTRACT_SUFX= .tar.bz2 MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://ede.sourceforge.net/ COMMENT= Equinox Desktop Environment +LICENSE= gnu-gpl-v2 + +PKG_DESTDIR_SUPPORT= user-destdir WRKSRC= ${WRKDIR}/ede USE_LANGUAGES= c c++ @@ -17,6 +20,8 @@ USE_PKGLOCALEDIR= yes USE_TOOLS+= gmake msgfmt GNU_CONFIGURE= yes +INSTALLATION_DIRS+= bin + .include "../../x11/efltk/buildlink3.mk" .include "../../x11/libXext/buildlink3.mk" .include "../../x11/xextproto/buildlink3.mk" diff --git a/x11/ede/distinfo b/x11/ede/distinfo index c11bc4a961a..e13221d62e8 100644 --- a/x11/ede/distinfo +++ b/x11/ede/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.1.1.1 2005/09/02 14:42:52 xtraeme Exp $ +$NetBSD: distinfo,v 1.2 2011/05/21 08:35:25 obache Exp $ SHA1 (ede-1.0.4.tar.bz2) = 22dfcb972ceef00fa4c79b971708b317095c612c RMD160 (ede-1.0.4.tar.bz2) = 1165f448a4ee0d385cc0372c9b18d0f18ec669fe Size (ede-1.0.4.tar.bz2) = 1372589 bytes SHA1 (patch-aa) = 53580cfa4d25730fb7cc8cd417c293978e130c95 +SHA1 (patch-makeinclude.in) = 88dd36a2aee3069a99245fd77a2fcf87f816c6b1 diff --git a/x11/ede/patches/patch-makeinclude.in b/x11/ede/patches/patch-makeinclude.in new file mode 100644 index 00000000000..e00428082b1 --- /dev/null +++ b/x11/ede/patches/patch-makeinclude.in @@ -0,0 +1,31 @@ +$NetBSD: patch-makeinclude.in,v 1.1 2011/05/21 08:35:25 obache Exp $ + +* destdir installation support. + +--- makeinclude.in.orig 2005-08-29 10:46:47.000000000 +0000 ++++ makeinclude.in +@@ -4,18 +4,18 @@ + # directories + prefix = @prefix@ + exec_prefix = @exec_prefix@ +-bindir = @bindir@ +-datadir = @datadir@ +-includedir = @includedir@ +-libdir = @libdir@ +-mandir = @mandir@ ++bindir = $(DESTDIR)@bindir@ ++datadir = $(DESTDIR)@datadir@ ++includedir = $(DESTDIR)@includedir@ ++libdir = $(DESTDIR)@libdir@ ++mandir = $(DESTDIR)@mandir@ + srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + VPATH = @srcdir@ + EVOLUME = @EVOLUME@ + + #locale directory +-LOCALEDIR = @prefix@/share/locale ++LOCALEDIR = $(DESTDIR)@prefix@/share/locale + + # programs + CXX = @CXX@ |