diff --git a/legacy/elementary/debian/changelog b/legacy/elementary/debian/changelog new file mode 100644 index 0000000000..473ed8322a --- /dev/null +++ b/legacy/elementary/debian/changelog @@ -0,0 +1,5 @@ +elementary (0.1.0-1) unstable; urgency=low + + * a SVN release. + + -- quaker Fri, 03 Jan 2008 10:06:13 +0100 diff --git a/legacy/elementary/debian/compat b/legacy/elementary/debian/compat new file mode 100644 index 0000000000..1e8b314962 --- /dev/null +++ b/legacy/elementary/debian/compat @@ -0,0 +1 @@ +6 diff --git a/legacy/elementary/debian/control b/legacy/elementary/debian/control new file mode 100644 index 0000000000..a4f446e8c0 --- /dev/null +++ b/legacy/elementary/debian/control @@ -0,0 +1,26 @@ +Source: elementary +Section: x11 +Priority: optional +Maintainer: quaker +Build-Depends: debhelper (>= 6), cdbs, libecore-dev, libevas-dev, libeet-dev, libedje-dev +Standards-Version: 3.7.3 +Homepage: http://www.enlightenment.org + +Package: libelm-dev +Section: libdevel +Architecture: any +Depends: libelm0 (= ${binary:Version}), libecore-dev, libevas-dev, libeet-dev, libedje-dev +Description: Elementary - a basic widget set that is easy to use based on EFL for mobile + This package contains devel content. + +Package: libelm0 +Architecture: any +Depends: ${shlibs:Depends}, libelm-bin +Description: Elementary - a basic widget set that is easy to use based on EFL for mobile + This package contains a widget toolkit. + +Package: libelm-bin +Architecture: any +Depends: ${shlibs:Depends} +Description: Elementary - a basic widget set that is easy to use based on EFL for mobile + This package contains elementary_test diff --git a/legacy/elementary/debian/copyright b/legacy/elementary/debian/copyright new file mode 100644 index 0000000000..67cec8a069 --- /dev/null +++ b/legacy/elementary/debian/copyright @@ -0,0 +1,12 @@ +This package was debianized by quaker on +Fri, 03 Jan 2008 10:03:48 +0100. + +Author: The Rasterman (Carsten Haitzler) + +Copyright: + + Copyright (C) 2008 The Rasterman (Carsten Haitzler) + +License: + + TBD (LGPL) diff --git a/legacy/elementary/debian/libelm-bin.install b/legacy/elementary/debian/libelm-bin.install new file mode 100644 index 0000000000..30b643e5ea --- /dev/null +++ b/legacy/elementary/debian/libelm-bin.install @@ -0,0 +1 @@ +debian/tmp/usr/bin/elementary_test diff --git a/legacy/elementary/debian/libelm-dev.install b/legacy/elementary/debian/libelm-dev.install new file mode 100644 index 0000000000..cc6968829b --- /dev/null +++ b/legacy/elementary/debian/libelm-dev.install @@ -0,0 +1,3 @@ +debian/tmp/usr/lib/*.a +debian/tmp/usr/include/* +debian/tmp/usr/lib/pkgconfig/*.pc diff --git a/legacy/elementary/debian/libelm0.install b/legacy/elementary/debian/libelm0.install new file mode 100644 index 0000000000..60d0439c23 --- /dev/null +++ b/legacy/elementary/debian/libelm0.install @@ -0,0 +1,6 @@ +debian/tmp/usr/lib/*.so.* +debian/tmp/usr/lib/*.so +debian/tmp/usr/share/elementary/images/* +debian/tmp/usr/share/elementary/objects/* +debian/tmp/usr/share/elementary/themes/* +debian/tmp/usr/share/icons/elementary.png diff --git a/legacy/elementary/debian/rules b/legacy/elementary/debian/rules new file mode 100755 index 0000000000..813b4636e9 --- /dev/null +++ b/legacy/elementary/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk + +DEB_MAKE_CLEAN_TARGET := clean +DEB_CONFIGURE_EXTRA_FLAGS := --disable-rpath + +clean:: + ./autogen.sh --prefix=/usr $(DEB_CONFIGURE_EXTRA_FLAGS)