diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
commit | b6af1e02efe594039707cd882517663d5370f375 (patch) | |
tree | ff9c2d55873e051e82972ba64c017352d3a75d34 /unmaintained/lxde-common | |
parent | a71346b7acebc600960a98c84fb32cfd72fe864b (diff) | |
download | aports-b6af1e02efe594039707cd882517663d5370f375.tar.bz2 aports-b6af1e02efe594039707cd882517663d5370f375.tar.xz |
testing/[multiple]: move unmaintained packages
This moves all packages from testing to unmaintained which have not been
updated for atleast 6 months. If you are affected by this commit please follow
this proceddure:
* make sure your packages build on all architectures
* move your pacakge(s) back to testing
* if you want to keep this package and can maintain it (or find somebody to
maintain it for you) for a minimum of 6 months ask it to be moved to community
Diffstat (limited to 'unmaintained/lxde-common')
-rw-r--r-- | unmaintained/lxde-common/APKBUILD | 36 | ||||
-rw-r--r-- | unmaintained/lxde-common/startlxde.patch | 11 |
2 files changed, 47 insertions, 0 deletions
diff --git a/unmaintained/lxde-common/APKBUILD b/unmaintained/lxde-common/APKBUILD new file mode 100644 index 0000000000..b18dbf86cf --- /dev/null +++ b/unmaintained/lxde-common/APKBUILD @@ -0,0 +1,36 @@ +# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> + +pkgname=lxde-common +pkgver=0.5.5 +pkgrel=0 +pkgdesc='Common files of the LXDE Desktop' +arch='noarch' +url='http://lxde.org/' +license='GPL2' +depends='lxsession' +source="http://downloads.sourceforge.net/lxde/${pkgname}-${pkgver}.tar.gz + startlxde.patch" + +prepare() { + cd "$srcdir"/$pkgname-$pkgver + patch -Np0 -i $srcdir/startlxde.patch || return 1 +} + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure --sysconfdir=/etc --prefix=/usr || return 1 + make || return 1 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install || return 1 + install -Dm644 lxde-logout.desktop \ + "$pkgdir"/usr/share/applications/lxde-logout.desktop || return 1 +} +md5sums="e51a6b2a815a89fda1f497b509465a97 lxde-common-0.5.5.tar.gz +11aca3bcc2ea8fa2c03e72056a52d1fc startlxde.patch" +sha256sums="ee18a09b64a442b33c1b54f0269649a1b4d9490460c400a07ed785d41bf6dde6 lxde-common-0.5.5.tar.gz +0b4192c52142369677d02474133a1da733a250a0e2ed9a4b55275428b90e38aa startlxde.patch" +sha512sums="44848286ccf3aa269df1680e14a8d3c41be1c2af956bd5121fc05d97a892fdc13d1e74191a2a11a40e96a8f31f8be37b1cfb9afeac4474fcab88d07508647c7f lxde-common-0.5.5.tar.gz +dd25e91d9b350784b3434390c68ffaa763a966e0977c0a8ee57fe920c5793f2ecc42446ca332f294cc2e840f951099ab348f052f54ae9aac22d8e77d19f30919 startlxde.patch" diff --git a/unmaintained/lxde-common/startlxde.patch b/unmaintained/lxde-common/startlxde.patch new file mode 100644 index 0000000000..27315d4f05 --- /dev/null +++ b/unmaintained/lxde-common/startlxde.patch @@ -0,0 +1,11 @@ +--- startlxde.in.orig 2011-08-03 21:59:05.000000000 +0200 ++++ startlxde.in 2012-07-02 19:40:19.982368074 +0200 +@@ -8,7 +8,7 @@ fi + PCMANFM_CONF_DIR="$XDG_CONFIG_HOME/pcmanfm/LXDE" + if [ ! -f "$PCMANFM_CONF_DIR/pcmanfm.conf" ]; then + mkdir -p "$PCMANFM_CONF_DIR" +- cp @prefix@/share/lxde/pcmanfm/pcmanfm.conf "$PCMANFM_CONF_DIR/pcmanfm.conf" ++ cp @sysconfdir@/xdg/pcmanfm/LXDE/pcmanfm.conf "$PCMANFM_CONF_DIR/pcmanfm.conf" + fi + + # Ensure the existance of openbox config file |